/* === R7 Casino — Dark Theme with Golden-Yellow Accents === */
:root {
  --primary: #f59e0b;
  --primary-light: #fbbf24;
  --primary-dark: #d97706;
  --accent: #fde68a;
  --accent-light: #fef3c7;
  --gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f97316 100%);
  --gradient-soft: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(251,191,36,0.06) 100%);
  --gradient-hero: linear-gradient(160deg, #0f0c1a 0%, #1a1333 40%, #0d1117 100%);
  --glow: 0 0 30px rgba(245,158,11,0.15);
  --glow-strong: 0 0 50px rgba(245,158,11,0.25);
  --bg: #0d0b14;
  --bg-card: #16132a;
  --bg-card-hover: #1e1a38;
  --bg-alt: #110f1f;
  --bg-elevated: #1c1835;
  --text: #f1f0f5;
  --text-secondary: #a09bb5;
  --text-muted: #6b6580;
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(245,158,11,0.2);
  --shadow: 0 2px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
  --shadow-glow: 0 4px 24px rgba(245,158,11,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --max-w: 1160px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }

img { max-width: 100%; height: auto; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(13,11,20,0.82);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.55rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.nav-menu { display: flex; gap: 4px; list-style: none; align-items: center; }

.nav-menu a {
  display: block;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.nav-menu a:hover {
  background: rgba(245,158,11,0.08);
  color: var(--primary-light);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
}

.btn-primary {
  background: var(--gradient);
  color: #1a1333;
  box-shadow: 0 4px 24px rgba(245,158,11,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.45);
  color: #1a1333;
}

.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid rgba(245,158,11,0.35);
}
.btn-outline:hover {
  background: rgba(245,158,11,0.08);
  border-color: var(--primary);
  color: var(--primary-light);
}

.btn-sm { padding: 9px 22px; font-size: 0.84rem; }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: var(--text);
}

/* === HERO === */
.hero {
  padding: 90px 0 70px;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.3), transparent);
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(245,158,11,0.1);
  color: var(--primary-light);
  border: 1px solid rgba(245,158,11,0.2);
  margin-bottom: 24px;
}

.hero-emoji { font-size: 3.2rem; margin-bottom: 16px; display: block; filter: drop-shadow(0 0 20px rgba(245,158,11,0.3)); }

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === HERO STATS === */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* === RATING STRIP === */
.rating-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}

.rating-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.rating-item span.val {
  font-weight: 700;
  color: var(--primary-light);
}

/* === INFO TABLE === */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.info-table th,
.info-table td {
  padding: 15px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.info-table th {
  background: var(--bg-elevated);
  font-weight: 600;
  color: var(--text);
  width: 40%;
}
.info-table td { color: var(--text-secondary); }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:hover td { color: var(--text); }

/* === SECTIONS === */
.section {
  padding: 72px 0;
  position: relative;
}
.section:nth-child(even) {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .section-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(245,158,11,0.1);
  color: var(--primary);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }

.card-emoji {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(245,158,11,0.2));
}

.card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px 24px;
  counter-increment: step;
  transition: all var(--transition);
}
.step:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient);
  color: #1a1333;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.2);
}

.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 0.9rem; }

/* === SCORE BLOCK === */
.score-block {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  margin: 32px 0;
}

.score-circle {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0% 87%, var(--border) 87% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(245,158,11,0.15);
}

.score-circle-inner {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.score-number {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.score-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.score-details { flex: 1; }
.score-details h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.score-details p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 12px; }

.score-bars { display: flex; flex-direction: column; gap: 8px; }
.score-bar-item { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; }
.score-bar-label { width: 120px; color: var(--text-secondary); flex-shrink: 0; }
.score-bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.score-bar-fill { height: 100%; background: var(--gradient); border-radius: 3px; }
.score-bar-val { width: 30px; text-align: right; color: var(--primary-light); font-weight: 600; }

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.review-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-stars { color: #facc15; font-size: 1rem; letter-spacing: 2px; }

.review-date { font-size: 0.78rem; color: var(--text-muted); }

.review-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.65;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1333;
}

.review-author-info span {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}
.review-author-info small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === FAQ === */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--border-accent); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: background var(--transition);
  font-family: inherit;
}
.faq-q:hover { background: rgba(245,158,11,0.04); }

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-a p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* === ARTICLE === */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 10px;
  color: var(--text);
}

.article-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.article-content ul, .article-content ol {
  margin: 0 0 16px 24px;
  color: var(--text-secondary);
}
.article-content li { margin-bottom: 8px; }

/* === CTA BANNER === */
.cta-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 52px 44px;
  text-align: center;
  color: var(--text);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* === FOOTER === */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 12px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary-light); }
.breadcrumbs span { color: var(--text-secondary); }

/* === PAGE HERO === */
.page-hero {
  padding: 52px 0 40px;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}
.page-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* === PAGE CONTENT === */
.page-content {
  padding: 48px 0 72px;
}
.page-content .content-block {
  max-width: 800px;
  margin: 0 auto;
}
.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--text);
}
.page-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text);
}
.page-content p {
  margin-bottom: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.page-content ul, .page-content ol {
  margin: 0 0 14px 24px;
  color: var(--text-secondary);
}
.page-content li { margin-bottom: 8px; }

/* === HAMBURGER === */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 60px 0 50px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-value { font-size: 1.5rem; }
  .section { padding: 48px 0; }
  .section-header h2 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .header-inner { height: 58px; }
  .score-block { flex-direction: column; text-align: center; }
  .score-bars { width: 100%; }
  .score-bar-label { width: 100px; }
  .rating-strip-inner { gap: 20px; }

  .hamburger { display: block; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 20px;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.active { display: flex; }

  .cta-banner { padding: 36px 24px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .page-hero h1 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-sub { font-size: 0.98rem; }
  .btn { padding: 11px 24px; font-size: 0.88rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .rating-strip-inner { gap: 12px; font-size: 0.8rem; }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* === BADGE === */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 600;
  background: rgba(245,158,11,0.1);
  color: var(--primary);
  border: 1px solid rgba(245,158,11,0.15);
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: rgba(245,158,11,0.06);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px 26px;
  margin: 24px 0;
}
.highlight-box p { color: var(--text-secondary); margin: 0; }
.highlight-box strong { color: var(--primary-light); }

/* === PROS CONS === */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

.pros, .cons {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.pros:hover, .cons:hover { border-color: var(--border-accent); }
.pros h3, .cons h3 { font-size: 1.05rem; margin-bottom: 14px; color: var(--text); }
.pros ul, .cons ul { list-style: none; margin: 0; }
.pros li::before { content: '✅ '; }
.cons li::before { content: '⚠️ '; }
.pros li, .cons li { margin-bottom: 10px; font-size: 0.9rem; color: var(--text-secondary); }

/* === FEATURES SHOWCASE === */
.features-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .features-showcase { grid-template-columns: 1fr; } }

.feature-big {
  grid-column: 1 / -1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: all var(--transition);
}
.feature-big:hover { border-color: var(--border-accent); background: var(--bg-card-hover); }

.feature-big-emoji { font-size: 3.5rem; flex-shrink: 0; filter: drop-shadow(0 0 12px rgba(245,158,11,0.2)); }
.feature-big h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.feature-big p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.65; }

@media (max-width: 600px) {
  .feature-big { flex-direction: column; text-align: center; padding: 28px; }
}

/* === PAYMENT METHODS === */
.payment-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.payment-item:hover { border-color: var(--border-accent); color: var(--text); }

/* === DIVIDER === */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  margin: 0;
  border: none;
}

/* Last updated */
.last-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}
