/* =============================================
   LuckyLand Affiliate Site — Shared Stylesheet
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #F5C842;
  --gold-dark:  #C99A00;
  --gold-bg:    #FFF8DC;
  --navy:       #0D1B3E;
  --navy-mid:   #162554;
  --navy-light: #1E3370;
  --teal:       #00BFA5;
  --green:      #2E7D32;
  --green-bg:   #E8F5E9;
  --red:        #C62828;
  --red-bg:     #FFEBEE;
  --bg:         #F9F8F4;
  --white:      #FFFFFF;
  --text:       #1A1A2E;
  --text-mid:   #3D3D5C;
  --text-muted: #6B6B8A;
  --border:     #E2E0D5;
  --r:          12px;
  --r-sm:       8px;
}

body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.7; }
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; }
a { color: inherit; }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--text); }

/* ── NAV ── */
nav {
  background: var(--navy);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { font-family:'Syne',sans-serif; font-size:1.1rem; font-weight:800; color:var(--gold); text-decoration:none; }
.nav-logo span { color:rgba(255,255,255,0.55); font-weight:400; }
.nav-links { display:flex; gap:1.75rem; }
.nav-links a { color:rgba(255,255,255,0.65); text-decoration:none; font-size:0.85rem; font-weight:500; transition:color 0.2s; white-space:nowrap; }
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-cta { background:var(--gold); color:var(--navy); padding:8px 18px; border-radius:6px; font-weight:700; font-size:0.82rem; text-decoration:none; font-family:'Syne',sans-serif; white-space:nowrap; transition:background 0.2s; }
.nav-cta:hover { background:#ffd700; }

/* ── HERO ── */
.hero { background:var(--navy); background-image:radial-gradient(ellipse at 80% 50%,rgba(245,200,66,.08) 0%,transparent 60%),radial-gradient(ellipse at 20% 80%,rgba(0,191,165,.06) 0%,transparent 50%); padding:5rem 2rem 4rem; text-align:center; }
.hero-badge { display:inline-block; background:rgba(245,200,66,.15); border:1px solid rgba(245,200,66,.35); color:var(--gold); font-size:.75rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; padding:5px 14px; border-radius:100px; margin-bottom:1.5rem; }
.hero h1 { font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:800; color:#fff; max-width:760px; margin:0 auto 1rem; line-height:1.15; }
.hero h1 em { color:var(--gold); font-style:normal; }
.hero-sub { color:rgba(255,255,255,.62); max-width:540px; margin:0 auto 2.5rem; font-size:1rem; }
.hero-small { font-size:.75rem; color:rgba(255,255,255,.32); margin-top:1rem; }

.rating-row { display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:2rem; }
.stars { color:var(--gold); font-size:1.2rem; letter-spacing:2px; }
.rating-num { font-family:'Syne',sans-serif; font-size:1rem; font-weight:700; color:#fff; }
.rating-label { color:rgba(255,255,255,.45); font-size:0.82rem; }

.hero-bonus { display:inline-flex; flex-direction:column; align-items:center; background:rgba(255,255,255,.05); border:1px solid rgba(245,200,66,.25); border-radius:var(--r); padding:1.75rem 2.75rem; margin-bottom:2rem; }
.hero-bonus-coins { font-family:'Syne',sans-serif; font-size:2rem; font-weight:800; color:var(--gold); }
.hero-bonus-sub { color:rgba(255,255,255,.65); font-size:0.88rem; margin-top:4px; }
.hero-bonus-small { color:rgba(255,255,255,.35); font-size:.72rem; margin-top:10px; }

/* ── BUTTONS ── */
.btn-primary { display:inline-block; background:var(--gold); color:var(--navy); font-family:'Syne',sans-serif; font-weight:700; font-size:.95rem; padding:14px 36px; border-radius:8px; text-decoration:none; transition:background .2s, transform .15s; }
.btn-primary:hover { background:#ffd700; transform:translateY(-1px); }
.btn-outline { display:inline-block; background:transparent; color:rgba(255,255,255,.75); font-size:.88rem; padding:12px 26px; border-radius:8px; border:1px solid rgba(255,255,255,.2); text-decoration:none; margin-left:10px; transition:border-color .2s,color .2s; }
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }

/* ── DISCLAIMER BAR ── */
.disclaimer { background:rgba(255,255,255,.04); border-top:1px solid rgba(255,255,255,.08); padding:10px 2rem; text-align:center; color:rgba(255,255,255,.32); font-size:.73rem; }

/* ── QUICK STATS ── */
.quick-stats { background:var(--white); border-bottom:1px solid var(--border); padding:1.4rem 2rem; display:flex; justify-content:center; gap:2.5rem; flex-wrap:wrap; }
.qs-item { text-align:center; }
.qs-label { font-size:.7rem; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); font-weight:600; }
.qs-value { font-family:'Syne',sans-serif; font-size:1.2rem; font-weight:700; color:var(--text); margin-top:2px; }

/* ── LAYOUT ── */
.wrap { max-width:1100px; margin:0 auto; padding:0 2rem; }
.layout { display:grid; grid-template-columns:1fr 310px; gap:2.5rem; padding:3rem 0; }
.inner { max-width:860px; margin:0 auto; padding:3rem 2rem; }

/* ── SECTIONS ── */
section { margin-bottom:2.75rem; }
.section-title { font-size:1.45rem; font-weight:700; color:var(--text); margin-bottom:1rem; padding-bottom:.65rem; border-bottom:2px solid var(--gold); display:inline-block; }

/* ── VERDICT CARD ── */
.verdict-card { background:var(--navy); border-radius:var(--r); padding:2rem; margin-bottom:2rem; display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.verdict-half h3 { font-size:.95rem; font-weight:700; margin-bottom:.65rem; display:flex; align-items:center; gap:7px; }
.verdict-pro h3 { color:var(--teal); }
.verdict-con h3 { color:#FF7070; }
.verdict-list { list-style:none; }
.verdict-list li { font-size:.85rem; color:rgba(255,255,255,.72); padding:4px 0; padding-left:1.2rem; position:relative; line-height:1.5; }
.verdict-pro .verdict-list li::before { content:'✓'; position:absolute; left:0; color:var(--teal); font-weight:700; }
.verdict-con .verdict-list li::before { content:'✗'; position:absolute; left:0; color:#FF7070; font-weight:700; }

/* ── SCORE BARS ── */
.score-grid { display:flex; flex-direction:column; gap:11px; margin:1.5rem 0; }
.score-row { display:flex; align-items:center; gap:12px; }
.score-label { font-size:.84rem; color:var(--text-mid); min-width:145px; }
.score-bar { flex:1; height:8px; background:var(--border); border-radius:100px; overflow:hidden; }
.score-fill { height:100%; border-radius:100px; background:var(--gold); }
.score-num { font-family:'Syne',sans-serif; font-weight:700; font-size:.86rem; min-width:30px; text-align:right; color:var(--text); }

/* ── INFO TABLE ── */
.info-table { width:100%; border-collapse:collapse; margin:1rem 0; }
.info-table tr { border-bottom:1px solid var(--border); }
.info-table tr:last-child { border-bottom:none; }
.info-table td { padding:10px 0; font-size:.88rem; vertical-align:top; }
.info-table td:first-child { color:var(--text-muted); font-weight:500; width:45%; }
.info-table td:last-child { color:var(--text); font-weight:500; text-align:right; }

/* ── BADGES ── */
.badge { font-size:.75rem; font-weight:600; padding:3px 10px; border-radius:100px; display:inline-block; }
.badge-green { background:var(--green-bg); color:var(--green); }
.badge-gold  { background:var(--gold-bg); color:var(--gold-dark); }
.badge-red   { background:var(--red-bg); color:var(--red); }
.badge-navy  { background:var(--navy); color:var(--gold); }

/* ── CARDS GRID ── */
.cards-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin:1.5rem 0; }
.cards-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin:1.5rem 0; }
.card { background:var(--white); border:1px solid var(--border); border-radius:var(--r); padding:1.25rem; position:relative; }
.card.featured { border-color:var(--gold); }
.card.featured::before { content:'BEST VALUE'; position:absolute; top:-10px; left:14px; background:var(--gold); color:var(--navy); font-size:.62rem; font-weight:700; letter-spacing:1px; padding:2px 10px; border-radius:100px; }
.card-icon { font-size:1.75rem; margin-bottom:.5rem; }
.card-title { font-family:'Syne',sans-serif; font-size:1.05rem; font-weight:700; color:var(--text); margin-bottom:.4rem; }
.card-desc { font-size:.83rem; color:var(--text-muted); margin-bottom:0; }
.card-sub { font-size:.78rem; color:var(--text-muted); margin-top:.65rem; font-weight:500; }

/* ── STEPS ── */
.steps { display:flex; flex-direction:column; gap:0; margin:1.5rem 0; }
.step { display:flex; gap:1rem; padding:1.2rem 0; border-bottom:1px solid var(--border); }
.step:last-child { border-bottom:none; }
.step-num { width:34px; height:34px; min-width:34px; background:var(--navy); color:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Syne',sans-serif; font-weight:700; font-size:.9rem; }
.step-body h4 { font-size:.92rem; font-weight:700; color:var(--text); margin-bottom:3px; }
.step-body p { font-size:.84rem; color:var(--text-muted); margin:0; }

/* ── TAGS ── */
.tags { display:flex; flex-wrap:wrap; gap:6px; }
.tag { font-size:.77rem; font-weight:600; padding:4px 10px; border-radius:6px; }
.tag-green { background:var(--green-bg); color:var(--green); }
.tag-red   { background:var(--red-bg); color:var(--red); }

/* ── ALERT BOX ── */
.alert { border-radius:var(--r-sm); padding:.9rem 1.1rem; font-size:.84rem; margin-top:1rem; }
.alert-gold  { background:var(--gold-bg); border:1px solid var(--gold); color:#5A4500; }
.alert-green { background:var(--green-bg); border:1px solid #A5D6A7; color:#1B5E20; }
.alert-navy  { background:var(--navy); border:1px solid var(--navy-light); color:rgba(255,255,255,.75); }

/* ── SIDEBAR ── */
.sidebar-sticky { position:sticky; top:80px; display:flex; flex-direction:column; gap:1.25rem; }
.sc { background:var(--white); border:1px solid var(--border); border-radius:var(--r); padding:1.4rem; }
.sc.dark { background:var(--navy); border-color:var(--navy); }
.sc-label { font-size:.7rem; text-transform:uppercase; letter-spacing:1.2px; color:rgba(255,255,255,.4); font-weight:600; margin-bottom:.4rem; }
.sc-bonus { font-family:'Syne',sans-serif; font-size:1.5rem; font-weight:800; color:var(--gold); line-height:1.1; margin-bottom:3px; }
.sc-sub { font-size:.81rem; color:rgba(255,255,255,.55); margin-bottom:1.1rem; }
.sc .btn-primary { width:100%; text-align:center; display:block; font-size:.88rem; padding:12px; }
.sc-terms { font-size:.68rem; color:rgba(255,255,255,.28); text-align:center; margin-top:.7rem; }
.sc-score { text-align:center; padding:.5rem 0; }
.sc-score-num { font-family:'Syne',sans-serif; font-size:2.8rem; font-weight:800; color:var(--navy); line-height:1; }
.sc-score-denom { font-size:.95rem; color:var(--text-muted); font-weight:400; }
.sc-score-stars { color:var(--gold); font-size:1.35rem; margin:6px 0 3px; }
.sc-score-label { font-size:.78rem; color:var(--text-muted); }
.mini-table td { padding:7px 0; font-size:.82rem; }
.mini-table td:first-child { color:var(--text-muted); }
.mini-table td:last-child { font-weight:600; text-align:right; color:var(--text); }

/* ── FAQ ── */
.faq-list { margin:1.5rem 0; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { padding:.9rem 0; font-weight:600; font-size:.92rem; cursor:pointer; display:flex; justify-content:space-between; align-items:center; color:var(--text); user-select:none; }
.faq-q::after { content:'+'; font-size:1.25rem; color:var(--gold); font-weight:400; transition:transform .2s; }
.faq-item.open .faq-q::after { transform:rotate(45deg); }
.faq-a { display:none; padding-bottom:.9rem; font-size:.87rem; color:var(--text-muted); line-height:1.65; }
.faq-item.open .faq-a { display:block; }

/* ── AFF BANNER ── */
.aff-banner { background:var(--navy); border:1px solid rgba(245,200,66,.25); border-radius:var(--r); padding:1.75rem; display:flex; align-items:center; justify-content:space-between; gap:1.5rem; margin:2rem 0; flex-wrap:wrap; }
.aff-banner h3 { font-size:1.1rem; color:#fff; margin-bottom:3px; }
.aff-banner p { color:rgba(255,255,255,.55); font-size:.84rem; margin:0; }

/* ── SECTION HERO (inner pages) ── */
.page-hero { background:var(--navy); background-image:radial-gradient(ellipse at 80% 40%,rgba(245,200,66,.07) 0%,transparent 55%); padding:3.5rem 2rem; text-align:center; }
.page-hero h1 { font-size:clamp(1.6rem,3vw,2.4rem); font-weight:800; color:#fff; max-width:680px; margin:0 auto .9rem; line-height:1.18; }
.page-hero p { color:rgba(255,255,255,.58); max-width:520px; margin:.6rem auto 0; font-size:.97rem; }

/* ── FOOTER ── */
footer { background:var(--navy); padding:2.5rem 2rem 0; margin-top:3rem; }
.ft { max-width:1100px; margin:0 auto; }
.fg { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:2rem; padding-bottom:2rem; }
.fb p { font-size:.8rem; color:rgba(255,255,255,.38); margin-top:.5rem; }
.fc h5 { font-family:'Syne',sans-serif; font-size:.82rem; font-weight:700; color:rgba(255,255,255,.45); text-transform:uppercase; letter-spacing:1px; margin-bottom:.75rem; }
.fc ul { list-style:none; }
.fc ul li { margin-bottom:.4rem; }
.fc ul li a { font-size:.83rem; color:rgba(255,255,255,.5); text-decoration:none; transition:color .2s; }
.fc ul li a:hover { color:var(--gold); }
.fb-bot { border-top:1px solid rgba(255,255,255,.07); padding:1.25rem 0; display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.fb-bot p { font-size:.74rem; color:rgba(255,255,255,.28); margin:0; }
.bdgs { display:flex; gap:8px; flex-wrap:wrap; }
.bdg { border:1px solid rgba(255,255,255,.15); color:rgba(255,255,255,.4); font-size:.68rem; padding:3px 10px; border-radius:100px; }
.bdg-a { border-color:rgba(245,200,66,.3); color:rgba(245,200,66,.7); }
.footer-logo { font-family:'Syne',sans-serif; font-size:1.05rem; font-weight:800; color:var(--gold); }
.footer-logo span { color:rgba(255,255,255,.5); font-weight:400; }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .layout { grid-template-columns:1fr; }
  .fg { grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  nav { padding:0 1rem; }
  .nav-links { display:none; }
  .hero { padding:3rem 1.25rem 2.5rem; }
  .wrap { padding:0 1.25rem; }
  .cards-2, .cards-3 { grid-template-columns:1fr; }
  .verdict-card { grid-template-columns:1fr; }
  .fg { grid-template-columns:1fr; }
  .aff-banner { flex-direction:column; text-align:center; }
  .quick-stats { gap:1.25rem; }
}
