/* =============================================
   Roostino Australia — style.css
   Brand: Dark Wood + Red/Orange + Gold + Green CTA
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ---- TOKENS ---- */
:root {
  --bg-dark:       #0F0500;
  --bg-wood:       #1C0900;
  --bg-mid:        #271206;
  --bg-card:       #2E1608;
  --bg-card2:      #391C0A;
  --red:           #C0392B;
  --red-light:     #E74C3C;
  --orange:        #E07020;
  --orange-light:  #FF8C42;
  --gold:          #D4A017;
  --gold-light:    #F0C040;
  --green:         #27AE60;
  --green-light:   #2ECC71;
  --text:          #F5E6D0;
  --text-muted:    #B8956A;
  --text-dim:      #8A6040;
  --border:        rgba(212,160,23,0.2);
  --border-red:    rgba(192,57,43,0.3);
  --shadow:        0 8px 32px rgba(0,0,0,0.6);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.3s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: 1.3rem; }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { color: var(--text); margin-bottom: 12px; }
.section-title p { color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.title-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 14px auto;
  border-radius: 2px;
}

/* ---- BADGE ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; border-radius: 20px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.04em;
}
.badge-red { background: rgba(192,57,43,0.2); border: 1px solid var(--border-red); color: #E74C3C; }
.badge-gold { background: rgba(212,160,23,0.15); border: 1px solid var(--border); color: var(--gold-light); }
.badge-green { background: rgba(39,174,96,0.15); border: 1px solid rgba(39,174,96,0.3); color: var(--green-light); }
.badge-orange { background: rgba(224,112,32,0.15); border: 1px solid rgba(224,112,32,0.3); color: var(--orange-light); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-weight: 700;
  font-size: 1rem; cursor: pointer; border: none; transition: var(--transition);
  font-family: 'Outfit', sans-serif; text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, #1A9950 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(39,174,96,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(39,174,96,0.6);
  color: #fff;
}
.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, #A93226 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(192,57,43,0.5); color:#fff; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--bg-dark); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ---- HEADER ---- */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(12,4,0,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-red);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.7);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.header-logo img { height: 60px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  color: var(--text-muted); font-weight: 600; font-size: 0.9rem;
  padding: 8px 14px; border-radius: 8px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text); background: rgba(212,160,23,0.12);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--green); color: #fff; padding: 10px 20px;
  border-radius: 8px; font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ---- BURGER ---- */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10,3,0,0.97); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 80px 20px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); font-size: 1.2rem; font-weight: 700;
  padding: 14px 40px; border-radius: var(--radius);
  width: 100%; max-width: 320px; text-align: center;
  border: 1px solid var(--border);
}
.mobile-menu a:hover { background: rgba(212,160,23,0.1); color: var(--gold); }
.mobile-menu .btn { width: 100%; max-width: 320px; margin-top: 12px; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--bg-wood);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  margin-top: 68px;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  white-space: nowrap;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 20px 0 0;
  min-height: 100vh;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 32px;
  align-items: start;
  width: 100%;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-banner.png') center/cover no-repeat,
              linear-gradient(135deg, #0F0500 0%, #1C0900 50%, #2D1200 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,5,0,0.92) 0%, rgba(28,9,0,0.85) 50%, rgba(45,18,0,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 28px;
  text-align: left;
  min-width: 0;
}
.hero-eyebrow { margin-bottom: 12px; }
.hero h1 {
  color: var(--text);
  margin-bottom: 12px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--red), var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 20px; line-height: 1.75;
}
.hero-bonus-card {
  background: rgba(46,22,8,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero-bonus-label { color: var(--text-dim); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-bonus-amount { font-size: 2.2rem; font-weight: 900; color: var(--gold-light); margin: 8px 0 4px; font-family: 'Playfair Display', serif; }
.hero-bonus-sub { color: var(--text-muted); font-size: 0.9rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-note { font-size: 0.78rem; color: var(--text-dim); }
.hero-note a { color: var(--text-dim); text-decoration: underline; }

/* ---- STAT CHIPS ---- */
.hero-stats {
  position: relative; top: auto; right: auto;
  display: flex; flex-direction: column; gap: 16px; z-index: 2;
  padding-top: 28px;
}
.stat-chip {
  background: rgba(46,22,8,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  min-width: 160px;
}
.stat-chip .stat-icon { font-size: 1.4rem; margin-bottom: 6px; }
.stat-chip .stat-label { font-size: 0.75rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-chip .stat-value { font-size: 1.3rem; font-weight: 800; color: var(--gold-light); }

/* ---- CARDS / GRID ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,160,23,0.4);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.card-icon {
  font-size: 2.4rem; margin-bottom: 16px;
  width: 60px; height: 60px;
  background: rgba(212,160,23,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.card h3 { margin-bottom: 12px; color: var(--text); }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ---- BONUS CARD ---- */
.bonus-banner {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.bonus-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--orange-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.bonus-steps { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.bonus-step {
  display: flex; align-items: center; gap: 12px;
  background: rgba(212,160,23,0.08);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
}
.bonus-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.8rem; color: #fff; flex-shrink: 0;
}
.bonus-step-text { font-size: 0.9rem; color: var(--text-muted); }
.bonus-step-text strong { color: var(--text); }

/* ---- TABLE ---- */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th {
  background: rgba(192,57,43,0.2);
  color: var(--text); font-weight: 700; font-size: 0.9rem;
  padding: 14px 18px; text-align: left;
  border-bottom: 2px solid var(--border-red);
}
.info-table td {
  padding: 14px 18px; color: var(--text-muted); font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.info-table tr:hover td { background: rgba(212,160,23,0.04); }
.info-table td:first-child { color: var(--text); font-weight: 600; }
.table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ---- RATING BARS ---- */
.rating-wrap { display: flex; flex-direction: column; gap: 14px; }
.rating-row { display: flex; align-items: center; gap: 14px; }
.rating-label { flex: 0 0 160px; font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }
.rating-bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.rating-bar-fill {
  height: 100%; border-radius: 4px; width: 0; transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
  background: linear-gradient(90deg, var(--red), var(--orange), var(--gold));
}
.rating-score { flex: 0 0 44px; text-align: right; font-weight: 800; color: var(--gold-light); }

/* ---- PROGRESS DONUT (CSS) ---- */
.donut-wrap { display: flex; justify-content: center; }
.donut {
  position: relative; width: 160px; height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.donut svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.donut-track { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 12; }
.donut-fill { fill: none; stroke-width: 12; stroke-linecap: round; stroke-dasharray: 440; stroke-dashoffset: 440; transition: stroke-dashoffset 1.4s ease; }
.donut-score { text-align: center; }
.donut-score .big { font-size: 2.4rem; font-weight: 900; color: var(--gold-light); font-family: 'Playfair Display', serif; }
.donut-score .sub { font-size: 0.75rem; color: var(--text-dim); font-weight: 600; }

/* ---- GAME CARD ---- */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.game-card:hover { transform: translateY(-4px); border-color: rgba(212,160,23,0.4); }
.game-thumb {
  height: 140px; background: linear-gradient(135deg,#2D1208,#3E1E0A);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative;
}
.game-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--red); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 10px;
}
.game-info { padding: 14px; }
.game-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.game-provider { font-size: 0.78rem; color: var(--text-dim); }

/* ---- PAGE HERO ---- */
.page-hero {
  background: url('../images/hero-banner.png') center 30% / cover no-repeat,
              linear-gradient(135deg, #0F0500 0%, #1C0900 50%, #2D1200 100%);
  border-bottom: 1px solid var(--border-red);
  padding: 24px 0 52px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,3,0,0.78) 0%, rgba(20,8,0,0.68) 50%, rgba(35,14,0,0.55) 100%);
}
/* Technical / author pages — no banner */
.page-hero--plain {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}
.page-hero--plain::before {
  background: radial-gradient(ellipse at 30% 50%, rgba(192,57,43,0.1) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 640px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 0.85rem; color: var(--text-dim); }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-dim); }

/* ---- PROMO CARD ---- */
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.promo-card:hover { transform: translateY(-4px); border-color: rgba(192,57,43,0.4); }
.promo-header {
  background: linear-gradient(135deg, rgba(192,57,43,0.3), rgba(224,112,32,0.2));
  padding: 24px; border-bottom: 1px solid var(--border-red);
  display: flex; align-items: center; justify-content: space-between;
}
.promo-amount { font-size: 1.8rem; font-weight: 900; color: var(--gold-light); font-family: 'Playfair Display', serif; }
.promo-body { padding: 24px; }
.promo-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
  color: var(--text-muted); font-size: 0.9rem;
  padding: 8px 12px;
  background: rgba(212,160,23,0.06);
  border-radius: 8px; border-left: 3px solid var(--gold);
}

/* ---- ALERT ---- */
.alert {
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem;
}
.alert-warning {
  background: rgba(224,112,32,0.12);
  border: 1px solid rgba(224,112,32,0.3);
  color: var(--orange-light);
}
.alert-gold {
  background: rgba(212,160,23,0.1);
  border: 1px solid var(--border);
  color: var(--gold-light);
}
.alert-success {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  color: var(--green-light);
}

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; text-align: left;
  color: var(--text); font-weight: 600; font-size: 1rem;
  font-family: 'Outfit', sans-serif; gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 20px; color: var(--text-muted); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ---- PAYMENT BADGES ---- */
.payment-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pay-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
  transition: var(--transition);
}
.pay-badge:hover { border-color: var(--gold); color: var(--gold); }

/* ---- AUTHOR BLOCK ---- */
.author-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.author-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover; flex-shrink: 0;
}
.author-name a { color: var(--text); font-weight: 800; font-size: 1.1rem; }
.author-name a:hover { color: var(--gold); }
.author-role { color: var(--orange-light); font-size: 0.85rem; font-weight: 600; margin: 4px 0 10px; }
.author-bio { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ---- STATS ROW ---- */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center;
}
.stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 800; color: var(--gold-light);
  line-height: 1;
}
.stat-box .lbl { color: var(--text-dim); font-size: 0.85rem; font-weight: 600; margin-top: 6px; }

/* ---- CHART BAR ---- */
.bar-chart { display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label { flex: 0 0 120px; font-size: 0.85rem; color: var(--text-muted); }
.bar-track { flex: 1; height: 10px; background: rgba(255,255,255,0.07); border-radius: 5px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--red), var(--orange)); transition: width 1.2s ease; width: 0; }
.bar-val { flex: 0 0 40px; text-align: right; font-weight: 700; color: var(--gold-light); font-size: 0.9rem; }

/* ---- STEP CARDS ---- */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  position: relative;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: #fff;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ---- LOGIN/REGISTER FORM ---- */
.form-page {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-mid));
  padding: 100px 20px 60px;
}
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px; width: 100%; margin: 0 auto;
}
.form-card h1 { font-size: 1.8rem; margin-bottom: 8px; }
.form-card .subtitle { color: var(--text-muted); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); color: var(--text);
  font-size: 1rem; font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}
.form-input:focus { outline: none; border-color: var(--red); background: rgba(192,57,43,0.08); }
.form-input::placeholder { color: var(--text-dim); }
.form-divider { text-align: center; color: var(--text-dim); font-size: 0.85rem; margin: 20px 0; position: relative; }
.form-divider::before, .form-divider::after {
  content:''; position: absolute; top: 50%;
  width: calc(50% - 20px); height: 1px; background: var(--border);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }
.form-link { color: var(--gold); font-size: 0.9rem; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }
.form-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--red); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, rgba(192,57,43,0.2) 0%, rgba(224,112,32,0.15) 100%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 60px 40px; text-align: center;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-disclaimer { font-size: 0.75rem; color: var(--text-dim); margin-top: 16px; }

/* ---- FOOTER ---- */
#site-footer {
  background: var(--bg-wood);
  border-top: 1px solid var(--border-red);
  padding: 60px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 80px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--text); font-weight: 700; margin-bottom: 16px; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text-dim); font-size: 0.85rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; flex-wrap: wrap;
}
.footer-disclaimer { color: var(--text-dim); font-size: 0.78rem; line-height: 1.7; max-width: 600px; }
.footer-disclaimer a { color: var(--text-dim); text-decoration: underline; }
.footer-copy { color: var(--text-dim); font-size: 0.78rem; white-space: nowrap; }

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .hero .container { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .bonus-banner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .trust-bar-inner { gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .form-card { padding: 32px 24px; }
  .rating-label { flex: 0 0 100px; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .bonus-amount { font-size: 2.4rem; }
}

/* ---- REGISTRATION STEP CARDS ---- */
.reg-steps {
  display: flex; flex-direction: column; gap: 24px;
  counter-reset: reg-step;
}
.reg-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.reg-step-card:hover {
  border-color: rgba(192,57,43,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.reg-step-card:last-child {
  border-color: rgba(39,174,96,0.4);
}
.reg-step-header {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(192,57,43,0.15) 0%, rgba(224,112,32,0.08) 100%);
  border-bottom: 1px solid var(--border);
}
.reg-step-card:last-child .reg-step-header {
  background: linear-gradient(135deg, rgba(39,174,96,0.15) 0%, rgba(39,174,96,0.06) 100%);
}
.reg-step-num {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.4rem; color: #fff;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 4px 16px rgba(192,57,43,0.4);
}
.reg-step-title { font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 0; }
.reg-step-body { padding: 28px; }
.reg-step-body p { color: var(--text-muted); line-height: 1.85; margin-bottom: 12px; }
.reg-step-tip {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(212,160,23,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  font-size: 0.88rem; color: var(--gold-light); line-height: 1.6;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .reg-step-header { flex-direction: row; gap: 14px; padding: 18px 20px; }
  .reg-step-body { padding: 20px; }
  .reg-step-num { width: 42px; height: 42px; font-size: 1.1rem; }
  .reg-step-title { font-size: 1.05rem; }
}
