/* ========================================
   GOLDENPARK SPAIN — MAIN STYLESHEET
   Brand: Dark Navy + Gold (#ffd700 / #f0c028)
   ======================================== */

:root {
  --gold:       #f0c028;
  --gold-light: #ffd700;
  --gold-dark:  #c8940a;
  --navy:       #0a0e1a;
  --navy2:      #111827;
  --navy3:      #1a2235;
  --navy4:      #232d42;
  --text:       #e8e8f0;
  --text-muted: #8899bb;
  --white:      #ffffff;
  --red:        #e03030;
  --green:      #22c55e;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow-gold: 0 4px 24px rgba(240,192,40,0.18);
  --shadow:      0 4px 20px rgba(0,0,0,0.5);
  --font-main:  'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { overflow-x: hidden; scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- TRACKER BANNER ---- */
.tracker-banner {
  background: linear-gradient(90deg, #0a0e1a 0%, #1a2235 50%, #0a0e1a 100%);
  border-bottom: 1px solid rgba(240,192,40,0.3);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.tracker-banner a {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  margin-left: 10px;
  font-size: 12px;
  letter-spacing: .5px;
  display: inline-block;
  text-transform: uppercase;
}
.tracker-banner a:hover { background: linear-gradient(90deg, var(--gold-light), var(--gold-dark)); color: var(--navy); }

/* ---- HEADER ---- */
header {
  background: linear-gradient(180deg, #050810 0%, var(--navy2) 100%);
  border-bottom: 2px solid rgba(240,192,40,0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo a { display: flex; align-items: center; gap: 10px; }
.logo img { height: 46px; width: auto; }

/* Desktop Nav */
nav.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav.main-nav ul li a {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: .3px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
nav.main-nav ul li a:hover,
nav.main-nav ul li a.active {
  background: rgba(240,192,40,0.12);
  color: var(--gold);
}
nav.main-nav ul li a.nav-live {
  color: var(--gold);
  border: 1px solid rgba(240,192,40,0.4);
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.btn-login {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .4px;
}
.btn-login:hover { background: var(--gold); color: var(--navy); }
.btn-register {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--navy);
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.btn-register:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,192,40,0.4); }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid rgba(240,192,40,0.5);
  color: var(--gold);
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.mobile-tracker {
  display: none;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  color: var(--navy);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
}
.mobile-tracker a { color: var(--navy); text-decoration: underline; }

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #050810 0%, #0d1526 50%, #1a1000 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(240,192,40,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,100,0,0.05) 0%, transparent 60%);
}
.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 52%;
  object-fit: cover;
  object-position: center top;
  opacity: .35;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  background: rgba(240,192,40,0.15);
  border: 1px solid rgba(240,192,40,0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  max-width: 620px;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--gold); }
.hero p.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: all .25s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(240,192,40,0.45); color: var(--navy); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all .25s;
  display: inline-block;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat span { display: block; }
.hero-stat .num { font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.hero-stat .lbl { font-size: 12px; color: var(--text-muted); letter-spacing: .5px; margin-top: 2px; }

/* ---- SECTION ---- */
.section { padding: 72px 24px; }
.section-dark { background: var(--navy2); }
.section-darker { background: var(--navy3); }
.container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.section-header h2 span { color: var(--gold); }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-header .line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ---- CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--navy4);
  border: 1px solid rgba(240,192,40,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(240,192,40,0.35); box-shadow: var(--shadow-gold); }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card-img-tall { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 20px; }
.card-tag {
  display: inline-block;
  background: rgba(240,192,40,0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.35; }
.card p { color: var(--text-muted); font-size: .92rem; line-height: 1.6; margin-bottom: 14px; }
.card-rtp { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-muted); margin-top: 10px; }
.badge-rtp { background: rgba(34,197,94,0.15); color: var(--green); border-radius: 4px; padding: 2px 8px; font-size: .82rem; font-weight: 700; }
.badge-hot { background: rgba(224,48,48,0.15); color: var(--red); border-radius: 4px; padding: 2px 8px; font-size: .82rem; font-weight: 700; }
.badge-new { background: rgba(240,192,40,0.2); color: var(--gold); border-radius: 4px; padding: 2px 8px; font-size: .82rem; font-weight: 700; }

/* ---- TABLE ---- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.gp-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: .92rem;
}
.gp-table th {
  background: rgba(240,192,40,0.12);
  color: var(--gold);
  font-weight: 700;
  padding: 13px 16px;
  text-align: left;
  border-bottom: 2px solid rgba(240,192,40,0.2);
  white-space: nowrap;
}
.gp-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text);
  white-space: nowrap;
}
.gp-table tr:hover td { background: rgba(240,192,40,0.04); }
.gp-table .check { color: var(--green); font-size: 1rem; }
.gp-table .cross { color: var(--red); }

/* ---- 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 160px; font-size: .88rem; color: var(--text-muted); text-align: right; }
.bar-track { flex: 1; background: rgba(255,255,255,0.06); border-radius: 20px; height: 20px; overflow: hidden; min-width: 80px; }
.bar-fill {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transition: width .8s ease;
}
.bar-fill.green { background: linear-gradient(90deg, #16a34a, var(--green)); }
.bar-fill.blue  { background: linear-gradient(90deg, #1e40af, #3b82f6); }
.bar-val { flex: 0 0 48px; font-size: .88rem; font-weight: 700; color: var(--gold); text-align: left; }

/* ---- CHART — Donut ---- */
.donut-wrap { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center; }
.donut-chart {
  position: relative;
  width: 180px; height: 180px;
  flex-shrink: 0;
}
.donut-chart svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
.donut-center .big { font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.donut-center .sm { font-size: .75rem; color: var(--text-muted); margin-top: 3px; }
.donut-legend { display: flex; flex-direction: column; gap: 10px; }
.donut-legend li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-muted); }
.donut-legend li .dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }

/* ---- CHART — Gauge / Progress ---- */
.progress-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.progress-label { flex: 0 0 180px; font-size: .9rem; color: var(--text); }
.progress-bar { flex: 1; height: 10px; background: rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 10px; }
.progress-pct { flex: 0 0 44px; font-size: .85rem; font-weight: 700; color: var(--gold); text-align: right; }

/* ---- GRID LAYOUTS ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- INFO BLOCKS ---- */
.info-box {
  background: var(--navy4);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box h4 { color: var(--gold); font-size: 1rem; margin-bottom: 6px; }
.info-box p { font-size: .93rem; color: var(--text-muted); margin: 0; }

.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem; color: var(--text-muted);
}
.feature-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: .7rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ---- PROMO CARD ---- */
.promo-card {
  background: linear-gradient(135deg, var(--navy3), var(--navy4));
  border: 1px solid rgba(240,192,40,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.promo-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.promo-card .amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.promo-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.promo-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 18px; }

/* ---- FAQ ACCORDION ---- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--navy4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq-q::after { content: '+'; color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }
.faq-a {
  padding: 0 20px 16px;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.7;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 14px 24px;
  background: var(--navy2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.breadcrumb ul { max-width: 1280px; margin: 0 auto; display: flex; gap: 8px; align-items: center; font-size: .85rem; }
.breadcrumb li { color: var(--text-muted); }
.breadcrumb li a { color: var(--gold); }
.breadcrumb li + li::before { content: '›'; margin-right: 8px; color: var(--text-muted); }

/* ---- AUTHOR BOX ---- */
.author-box {
  display: flex;
  gap: 20px;
  background: var(--navy4);
  border: 1px solid rgba(240,192,40,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  align-items: flex-start;
}
.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.author-box h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.author-box .role { font-size: .82rem; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.author-box p { font-size: .9rem; color: var(--text-muted); }

/* ---- FOOTER ---- */
footer {
  background: #050810;
  border-top: 1px solid rgba(240,192,40,0.15);
  padding: 56px 24px 30px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-wrap img { height: 42px; margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; max-width: 300px; margin-bottom: 18px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 16px;
  transition: all .2s;
}
.social-links a:hover { background: rgba(240,192,40,0.15); border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: .5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: .88rem; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }
.responsible-logos { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.responsible-logos span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
}
.age-badge {
  background: rgba(224,48,48,0.2);
  border: 1px solid rgba(224,48,48,0.4);
  color: var(--red);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 900;
}

/* ---- MISC COMPONENTS ---- */
.highlight-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.section-cta { text-align: center; margin-top: 40px; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.fw-900 { font-weight: 900; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
p + p  { margin-top: .8em; }
h2 { font-size: 1.8rem; color: var(--white); font-weight: 800; margin-bottom: 14px; }
h3 { font-size: 1.25rem; color: var(--white); font-weight: 700; margin-bottom: 10px; }
h4 { font-size: 1.05rem; color: var(--white); font-weight: 700; margin-bottom: 8px; }
.seo-block { margin-top: 56px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.06); }
.seo-block h2 { margin-bottom: 16px; }
.seo-block p  { color: var(--text-muted); margin-bottom: 1em; }
.seo-block h3 { margin-top: 28px; }

/* ---- LIVE BADGE ---- */
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.35);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-green 1.4s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

/* ---- FORM ---- */
.form-wrap {
  max-width: 480px;
  margin: 0 auto;
  background: var(--navy3);
  border: 1px solid rgba(240,192,40,0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-wrap h2 { text-align: center; margin-bottom: 6px; }
.form-sub { text-align: center; color: var(--text-muted); font-size: .9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .88rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 600; }
.form-group input, .form-group select {
  width: 100%;
  background: var(--navy4);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text);
  padding: 12px 14px;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder { color: var(--text-muted); }
.form-divider { text-align: center; color: var(--text-muted); font-size: .85rem; margin: 16px 0; position: relative; }
.form-divider::before, .form-divider::after {
  content: '';
  position: absolute;
  top: 50%; width: calc(50% - 24px);
  height: 1px; background: rgba(255,255,255,0.08);
}
.form-divider::before { left: 0; }
.form-divider::after  { right: 0; }
.form-link { text-align: center; font-size: .88rem; color: var(--text-muted); margin-top: 14px; }
.btn-full { width: 100%; padding: 14px; font-size: 1rem; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--text-muted); }
.checkbox-row input { width: auto; margin-top: 3px; accent-color: var(--gold); }

/* ---- APP PAGE ---- */
.app-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.app-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 20px;
  color: var(--white);
  font-size: .9rem;
  transition: all .2s;
}
.app-badge:hover { border-color: var(--gold); color: var(--gold); }
.app-badge .icon { font-size: 1.6rem; }
.app-badge .txt .small { font-size: .7rem; color: var(--text-muted); display: block; }
.app-badge .txt .big  { font-size: 1rem; font-weight: 700; display: block; }

/* ---- SCREENSHOT ---- */
.phone-mockup {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}
.phone-mockup img {
  border-radius: 28px;
  border: 4px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(240,192,40,0.12);
  width: 100%;
  aspect-ratio: 9/19;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  nav.main-nav ul { gap: 2px; }
  nav.main-nav ul li a { padding: 8px 10px; font-size: 13px; }
}

@media (max-width: 768px) {
  .tracker-banner { display: none; }
  .mobile-tracker { display: block; }
  nav.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; height: 100vh; background: linear-gradient(180deg, #05080f 0%, #090e23 100%); z-index: 999; flex-direction: column; padding: 12px 0 80px; overflow-y: auto; }
  nav.main-nav.open { display: flex; }
  nav.main-nav ul { flex-direction: column; gap: 0; width: 100%; padding: 8px 16px 16px; }
  nav.main-nav ul li { width: 100%; }
  nav.main-nav ul li a { padding: 16px 20px; font-size: 1.05rem; font-weight: 600; border-radius: 10px; display: block; width: 100%; box-sizing: border-box; border-bottom: 1px solid rgba(255,255,255,0.07); }
  nav.main-nav ul li:last-child a { border-bottom: none; }
  .menu-toggle { display: block; }
  .header-cta .btn-login { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-img { width: 100%; opacity: .15; }
  .hero { min-height: auto; }
  .hero-content { padding: 56px 20px 48px; }
  .hero-stats { gap: 20px; }
  .bar-label { flex: 0 0 100px; font-size: .82rem; }
  .donut-chart { width: 150px; height: 150px; }
  .section { padding: 48px 16px; }
  .form-wrap { padding: 24px 20px; }
  .author-box { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gp-table { min-width: 520px; }
  .table-wrap { margin-left: -16px; margin-right: -16px; border-radius: 0; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { text-align: center; }
  .donut-chart { width: 130px; height: 130px; }
  .bar-label { flex: 0 0 80px; font-size: .78rem; }
  .progress-label { flex: 0 0 130px; font-size: .82rem; }
  header { position: sticky; }
  .header-inner { height: 58px; padding: 0 14px; }
  .logo img { height: 38px; }
}

/* ========================================
   NEW PAGE STYLES — Blog, Auth, Autor, Legal
   ======================================== */

/* ---- BAR CHART WRAP (alias used in all subpages) ---- */
.bar-chart-wrap { display: flex; flex-direction: column; gap: 14px; }
.bar-item { display: flex; align-items: center; gap: 12px; }
.bar-item .bar-label { flex: 0 0 200px; font-size: .88rem; color: var(--text-muted); }
.bar-item .bar-track { flex: 1; background: rgba(255,255,255,0.06); border-radius: 20px; height: 22px; overflow: hidden; min-width: 60px; }
.bar-item .bar-fill { height: 100%; border-radius: 20px; display: flex; align-items: center; justify-content: flex-end; padding-right: 10px; font-size: .82rem; font-weight: 700; color: var(--navy); transition: width .9s ease; }

/* ---- BREADCRUMB BAR ---- */
.breadcrumb-bar {
  background: var(--navy2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 10px 24px;
}
.breadcrumb-bar nav {
  max-width: 1280px;
  margin: 0 auto;
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb-bar a { color: var(--gold); }
.breadcrumb-bar span { color: var(--text-muted); margin: 0 2px; }

/* ---- STANDALONE CHECK / CROSS ---- */
.check { color: var(--green); }
.cross  { color: var(--red); }

/* ---- HERO VARIANTS ---- */
.hero-sub  { min-height: 320px; }
.hero-blog .hero-img { opacity: .22; }

/* ---- FEATURED ARTICLE (blog) ---- */
.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--navy3);
  border: 1px solid rgba(240,192,40,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: stretch;
}
.featured-img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 280px; }
.featured-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.art-meta { font-size: .82rem; color: var(--text-muted); margin-bottom: 10px; }
.art-category {
  display: inline;
  background: rgba(240,192,40,0.15);
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.art-title { font-size: 1.45rem; color: var(--white); font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.art-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.art-tags span {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: .8rem;
  padding: 3px 10px;
  border-radius: 12px;
}
.read-more { color: var(--gold); font-size: .9rem; font-weight: 600; display: inline-block; margin-top: 14px; }
.read-more:hover { color: var(--gold-light); }

/* ---- BLOG GRID ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--navy4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(240,192,40,0.3); }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-body h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: .88rem; color: var(--text-muted); margin-bottom: 12px; flex: 1; }

/* ---- AUTH PAGES ---- */
.header-auth {
  background: #050810;
  border-bottom: 1px solid rgba(240,192,40,0.15);
}
.auth-section {
  position: relative;
  min-height: calc(100vh - 68px - 80px);
  display: flex;
  align-items: flex-start;
  padding: 56px 24px;
}
.auth-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.auth-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: .06; }
.auth-container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.auth-container-wide { max-width: 1100px; }
.auth-card {
  background: var(--navy3);
  border: 1px solid rgba(240,192,40,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.auth-icon { font-size: 2.5rem; text-align: center; margin-bottom: 12px; }
.auth-title { font-size: 1.8rem; font-weight: 900; color: var(--white); text-align: center; margin-bottom: 6px; }
.auth-sub  { color: var(--text-muted); text-align: center; font-size: .95rem; margin-bottom: 28px; }
.auth-form { display: flex; flex-direction: column; }
.input-password-wrap { position: relative; }
.input-password-wrap input { padding-right: 48px !important; }
.toggle-pw {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  padding: 4px;
  line-height: 1;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.form-check a { color: var(--gold); }
.form-hint { display: block; font-size: .78rem; color: var(--text-muted); margin-top: 5px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-auth-submit {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--navy);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .5px;
  text-transform: uppercase;
  width: 100%;
  margin-top: 8px;
  transition: all .25s;
  display: block;
}
.btn-auth-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(240,192,40,0.4); color: var(--navy); }
.auth-divider {
  text-align: center;
  color: var(--text-muted);
  font-size: .85rem;
  margin: 20px 0 14px;
  position: relative;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 36px);
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }
.social-login { display: flex; gap: 12px; }
.btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
  background: var(--navy4);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--text);
}
.btn-social:hover { border-color: var(--gold); color: var(--gold); }
.auth-footer-link { text-align: center; font-size: .9rem; color: var(--text-muted); margin-top: 20px; }
.auth-footer-note { text-align: center; font-size: .78rem; color: var(--text-muted); margin-top: 10px; line-height: 1.5; }
.auth-benefits { padding: 8px 0; }
.auth-benefits > h2 { margin-bottom: 20px; }
.auth-benefits > h3 { color: var(--gold); margin-top: 0; margin-bottom: 14px; }
.auth-benefits ul { display: flex; flex-direction: column; gap: 12px; }
.auth-benefits ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--text-muted); }
.auth-benefits .check { font-size: 1.05rem; flex-shrink: 0; margin-top: 1px; }

/* Registration bonus highlight */
.bono-card-highlight {
  background: linear-gradient(135deg, rgba(200,148,10,0.18), rgba(240,192,40,0.06));
  border: 2px solid rgba(240,192,40,0.4);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin-bottom: 8px;
}
.bono-card-highlight h2 { font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.bono-amount { font-size: 3.4rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.bono-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 14px; }
.bono-extras { display: flex; flex-direction: column; gap: 8px; }
.bono-extras div { font-size: .9rem; color: var(--text); }

/* Registration steps */
.steps-mini { margin-top: 20px; }
.steps-mini h3 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
.step-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: .9rem;
  color: var(--text-muted);
}
.step-num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .85rem;
  flex-shrink: 0;
}

/* Minimal footer (auth pages) */
.footer-minimal {
  background: #050810;
  border-top: 1px solid rgba(240,192,40,0.1);
  padding: 24px;
  text-align: center;
}
.footer-minimal nav { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 12px; }
.footer-minimal nav a { font-size: .85rem; color: var(--text-muted); }
.footer-minimal nav a:hover { color: var(--gold); }
.footer-minimal p { font-size: .82rem; color: var(--text-muted); }

/* ---- AUTHOR FULL PROFILE ---- */
.author-profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.author-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(240,192,40,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  margin-bottom: 24px;
}
.author-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.author-stat {
  background: var(--navy4);
  border: 1px solid rgba(240,192,40,0.1);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
}
.author-stat-num   { font-size: 1.3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.author-stat-label { font-size: .72rem; color: var(--text-muted); margin-top: 4px; line-height: 1.3; }
.author-credentials {
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px;
}
.author-credentials h4 { color: var(--gold); font-size: .9rem; margin-bottom: 12px; }
.author-credentials ul { display: flex; flex-direction: column; gap: 8px; }
.author-credentials ul li { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.author-bio-col { min-width: 0; }
.author-role-tag {
  display: inline-block;
  background: rgba(240,192,40,0.12);
  border: 1px solid rgba(240,192,40,0.3);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.author-bio-col h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.author-bio-lead { font-size: 1.05rem; color: var(--text); line-height: 1.75; margin-bottom: 20px; }

/* ---- LEGAL PAGES ---- */
.legal-header {
  padding: 40px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.legal-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
}
.legal-meta { color: var(--text-muted); font-size: .88rem; margin-top: 8px; }
.legal-toc {
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.legal-toc h2 { font-size: 1rem; color: var(--gold); margin-bottom: 12px; }
.legal-toc ol { padding-left: 18px; }
.legal-toc ol li { margin-bottom: 8px; font-size: .9rem; }
.legal-toc ol li a { color: var(--text-muted); }
.legal-toc ol li a:hover { color: var(--gold); }
.legal-content h2 {
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.legal-content h3 { font-size: 1.05rem; color: var(--text); font-weight: 700; margin-top: 22px; margin-bottom: 10px; }
.legal-content p { color: var(--text-muted); margin-bottom: 12px; line-height: 1.8; }
.legal-content ul,
.legal-content ol { margin: 12px 0 16px 20px; }
.legal-content ul li,
.legal-content ol li { color: var(--text-muted); font-size: .93rem; margin-bottom: 8px; line-height: 1.7; }
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content code { background: rgba(240,192,40,0.1); color: var(--gold); padding: 2px 6px; border-radius: 4px; font-size: .85em; }
.legal-content a { color: var(--gold); text-decoration: underline; }

/* ---- NEW PAGE RESPONSIVE ---- */
@media (max-width: 1024px) {
  .author-profile { grid-template-columns: 260px 1fr; gap: 32px; }
  .auth-container { max-width: 100%; gap: 28px; }
  .bar-item .bar-label { flex: 0 0 160px; }
}

@media (max-width: 768px) {
  .auth-container,
  .auth-container-wide { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-body { padding: 24px; }
  .author-profile { grid-template-columns: 1fr; }
  .author-photo { max-width: 200px; margin: 0 auto 24px; display: block; }
  .author-photo-col { text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .social-login { flex-direction: column; }
  .blog-grid { grid-template-columns: 1fr; }
  .auth-section { padding: 32px 16px; align-items: flex-start; }
  .bar-item .bar-label { flex: 0 0 120px; font-size: .82rem; }
}

@media (max-width: 480px) {
  .auth-card { padding: 28px 20px; }
  .bono-amount { font-size: 2.8rem; }
  .author-stats { gap: 8px; }
  .author-stat-num { font-size: 1.1rem; }
  .legal-header h1 { font-size: 1.6rem; }
  .bar-item { flex-wrap: wrap; }
  .bar-item .bar-label { flex: 0 0 100%; margin-bottom: 4px; }
}
