﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');



:root {

  --primary: #001A4D;

  --secondary: #002A7A;

  --accent: #8CC63F;

  --accent-dark: #6BA02E;

  --accent-light: #A8D95A;

  --gold: #FFB800;

  --white: #FFFFFF;

  --light: #F0F4F8;

  --gray: #6B7280;

  --dark-card: #0A1F54;

  --border: rgba(140,198,63,0.2);

  --text: #E8EDF5;

  --text-muted: #94A3B8;

  --radius: 12px;

  --radius-lg: 20px;

  --shadow: 0 4px 24px rgba(0,26,77,0.4);

  --shadow-green: 0 4px 24px rgba(140,198,63,0.3);

  --transition: 0.3s ease;

}



* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; }

body { font-family:'Inter',sans-serif; background:var(--primary); color:var(--text); line-height:1.7; overflow-x:hidden; }

a { color:var(--accent); text-decoration:none; transition:color var(--transition); }

a:hover { color:var(--accent-light); }

img { max-width:100%; height:auto; display:block; }

ul { list-style:none; }



/* HEADER */

.site-header { background:var(--secondary); border-bottom:2px solid var(--border); position:sticky; top:0; z-index:1000; }

.header-top { background:var(--primary); padding:8px 0; display:flex; justify-content:center; }

.header-top .tracker-btn { background:var(--accent); color:var(--primary); font-weight:700; font-size:0.85rem; padding:6px 20px; border-radius:50px; letter-spacing:0.5px; transition:all var(--transition); }

.header-top .tracker-btn:hover { background:var(--accent-light); transform:scale(1.03); }

.header-inner { max-width:1280px; margin:0 auto; padding:0 20px; display:flex; align-items:center; justify-content:space-between; height:68px; }

.logo-wrap { display:flex; align-items:center; gap:12px; }

.logo-wrap img { height:40px; width:auto; }

.logo-wrap .brand-name { font-size:1.4rem; font-weight:800; color:var(--white); letter-spacing:-0.5px; }

.logo-wrap .brand-name span { color:var(--accent); }



/* NAV */

.main-nav { display:flex; align-items:center; gap:4px; }

.main-nav a { color:var(--text); font-weight:500; font-size:0.9rem; padding:8px 14px; border-radius:8px; transition:all var(--transition); white-space:nowrap; }

.main-nav a:hover, .main-nav a.active { background:rgba(140,198,63,0.15); color:var(--accent); }

.nav-cta { background:var(--accent)!important; color:var(--primary)!important; font-weight:700!important; padding:9px 22px!important; border-radius:50px!important; }

.nav-cta:hover { background:var(--accent-light)!important; transform:translateY(-1px); box-shadow:var(--shadow-green); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; background:none; border:none; }

.hamburger span { display:block; width:24px; height:2px; background:var(--text); border-radius:2px; transition:all var(--transition); }

.mobile-header-cta { display:none; }



/* HERO */

.hero { position:relative; min-height:560px; display:flex; align-items:center; overflow:hidden; }

.hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }

.hero-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(100deg, var(--primary) 40%, rgba(0,26,77,0.5) 100%); }

.hero-content { position:relative; z-index:2; max-width:1280px; margin:0 auto; padding:80px 20px; width:100%; }

.hero h1 { font-size:clamp(2rem,4vw,3.5rem); font-weight:900; line-height:1.15; color:var(--white); max-width:680px; margin-bottom:20px; }

.hero h1 span { color:var(--accent); }

.hero p.subtitle { font-size:1.15rem; color:var(--text-muted); max-width:550px; margin-bottom:32px; }

.hero-badges { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px; }

.hero-badge { background:rgba(140,198,63,0.15); border:1px solid var(--border); padding:6px 16px; border-radius:50px; font-size:0.85rem; font-weight:600; color:var(--accent); }

.btn-primary { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(135deg,var(--accent),var(--accent-light)); color:var(--primary); font-weight:800; font-size:1.05rem; padding:14px 32px; border-radius:50px; transition:all var(--transition); border:none; cursor:pointer; }

.btn-primary:hover { transform:translateY(-2px); box-shadow:var(--shadow-green); color:var(--primary); }

.btn-secondary { display:inline-flex; align-items:center; gap:8px; background:transparent; color:var(--accent); font-weight:700; font-size:1rem; padding:13px 28px; border-radius:50px; border:2px solid var(--accent); transition:all var(--transition); }

.btn-secondary:hover { background:rgba(140,198,63,0.1); }

.hero-btns { display:flex; flex-wrap:wrap; gap:14px; }



/* CONTAINER */

.container { max-width:1280px; margin:0 auto; padding:0 20px; }

.section { padding:80px 0; }

.section-alt { background:var(--dark-card); }



/* SECTION HEADINGS */

.section-head { text-align:center; margin-bottom:56px; }

.section-head h2 { font-size:clamp(1.6rem,3vw,2.5rem); font-weight:800; color:var(--white); margin-bottom:12px; }

.section-head h2 span { color:var(--accent); }

.section-head p { color:var(--text-muted); font-size:1.05rem; max-width:580px; margin:0 auto; }

.section-label { display:inline-block; background:rgba(140,198,63,0.15); color:var(--accent); font-size:0.8rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:5px 14px; border-radius:50px; margin-bottom:12px; }



/* CARDS GRID */

.cards-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }

.card { background:var(--dark-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; transition:all var(--transition); }

.card:hover { transform:translateY(-4px); border-color:var(--accent); box-shadow:var(--shadow-green); }

.card-icon { width:52px; height:52px; background:linear-gradient(135deg,var(--accent),var(--accent-light)); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:18px; }

.card h3 { font-size:1.1rem; font-weight:700; color:var(--white); margin-bottom:10px; }

.card p { color:var(--text-muted); font-size:0.9rem; line-height:1.6; }



/* STATS BAR */

.stats-bar { background:linear-gradient(135deg,var(--accent) 0%,var(--accent-dark) 100%); padding:48px 0; }

.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }

.stat-item h3 { font-size:2.2rem; font-weight:900; color:var(--primary); }

.stat-item p { font-size:0.9rem; font-weight:600; color:rgba(0,26,77,0.8); }



/* TABLE */

.data-table { width:100%; border-collapse:collapse; border-radius:var(--radius); overflow:hidden; }

.data-table th { background:var(--accent); color:var(--primary); font-weight:700; padding:14px 18px; text-align:left; font-size:0.9rem; }

.data-table td { padding:14px 18px; border-bottom:1px solid var(--border); color:var(--text); font-size:0.92rem; }

.data-table tr:hover td { background:rgba(140,198,63,0.07); }

.data-table tr:last-child td { border-bottom:none; }

.table-wrap { overflow-x:auto; border-radius:var(--radius); border:1px solid var(--border); }



/* BONUS CARDS */

.bonus-card { background:var(--dark-card); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:all var(--transition); }

.bonus-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-green); }

.bonus-card-top { background:linear-gradient(135deg,var(--secondary),var(--primary)); padding:24px; text-align:center; border-bottom:2px solid var(--accent); }

.bonus-amount { font-size:2rem; font-weight:900; color:var(--accent); }

.bonus-label { font-size:0.85rem; color:var(--text-muted); margin-top:4px; }

.bonus-card-body { padding:20px 24px; }

.bonus-card-body ul li { padding:8px 0; border-bottom:1px solid var(--border); color:var(--text-muted); font-size:0.9rem; display:flex; align-items:center; gap:8px; }

.bonus-card-body ul li:last-child { border-bottom:none; }

.bonus-card-body ul li::before { content:'\2713'; color:var(--accent); font-weight:700; }

.bonus-card-footer { padding:16px 24px; background:rgba(0,0,0,0.15); text-align:center; }



/* CHART BAR */

.chart-bars { display:flex; align-items:flex-end; gap:8px; height:200px; }

.chart-bar-wrap { flex:1; position:relative; height:100%; padding-bottom:44px; }

.chart-bar { position:absolute; bottom:44px; left:0; width:100%; background:linear-gradient(180deg,var(--accent),var(--accent-dark)); border-radius:6px 6px 0 0; transition:height 1.2s ease; height:0; }

.chart-bar-label { position:absolute; bottom:20px; left:0; width:100%; font-size:0.75rem; color:var(--text-muted); text-align:center; }

.chart-bar-val { position:absolute; bottom:0; left:0; width:100%; font-size:0.8rem; font-weight:700; color:var(--accent); text-align:center; }

.chart-container { background:var(--dark-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; }

.chart-title { font-size:1rem; font-weight:700; color:var(--white); margin-bottom:20px; }



/* PROGRESS BARS */

.progress-list { display:flex; flex-direction:column; gap:16px; }

.progress-item label { display:flex; justify-content:space-between; font-size:0.88rem; color:var(--text-muted); margin-bottom:6px; }

.progress-item label span { color:var(--accent); font-weight:700; }

.progress-track { height:8px; background:rgba(255,255,255,0.1); border-radius:50px; overflow:hidden; }

.progress-fill { height:100%; background:linear-gradient(90deg,var(--accent),var(--accent-light)); border-radius:50px; transition:width 1.2s ease; }



/* STEPS */

.steps-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; counter-reset:step; }

.step-item { background:var(--dark-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px 24px; position:relative; }

.step-num { width:44px; height:44px; border-radius:50%; background:var(--accent); color:var(--primary); font-weight:900; font-size:1.1rem; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }

.step-item h3 { font-size:1rem; font-weight:700; color:var(--white); margin-bottom:8px; }

.step-item p { color:var(--text-muted); font-size:0.88rem; }



/* FAQ */

.faq-list { display:flex; flex-direction:column; gap:12px; max-width:860px; margin:0 auto; }

.faq-item { background:var(--dark-card); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }

.faq-question { padding:18px 22px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; color:var(--white); font-weight:600; font-size:0.95rem; }

.faq-question::after { content:'+'; color:var(--accent); font-size:1.3rem; flex-shrink:0; transition:transform var(--transition); }

.faq-item.open .faq-question::after { transform:rotate(45deg); }

.faq-answer { padding:0 22px; max-height:0; overflow:hidden; transition:max-height 0.4s ease, padding 0.3s; }

.faq-item.open .faq-answer { max-height:400px; padding:0 22px 18px; }

.faq-answer p { color:var(--text-muted); font-size:0.9rem; line-height:1.7; }



/* AUTHOR BOX */

.author-box { background:var(--dark-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px 32px; display:flex; gap:24px; align-items:flex-start; max-width:860px; margin:60px auto 0; }

.author-box img { width:80px; height:80px; border-radius:50%; border:3px solid var(--accent); object-fit:cover; flex-shrink:0; }

.author-box-content h4 { font-size:1.05rem; font-weight:700; color:var(--white); margin-bottom:4px; }

.author-box-content h4 a { color:var(--accent); }

.author-box-content .author-role { font-size:0.82rem; color:var(--accent); font-weight:600; margin-bottom:10px; letter-spacing:0.5px; }

.author-box-content p { color:var(--text-muted); font-size:0.88rem; line-height:1.6; }



/* POPUP BANNER */

.bonus-popup { position:fixed; bottom:24px; right:24px; z-index:9999; width:280px; border-radius:var(--radius-lg); overflow:hidden; box-shadow:0 8px 40px rgba(0,0,0,0.5); transform:translateY(120%); transition:transform 0.5s cubic-bezier(0.34,1.56,0.64,1); }

.bonus-popup.show { transform:translateY(0); }

.bonus-popup-img { height:130px; background-image:url('/images/hero-bonasi.jpg'); background-size:cover; background-position:center; position:relative; }

.bonus-popup-img::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom,transparent,rgba(0,26,77,0.85)); }

.bonus-popup-badge { position:absolute; top:10px; left:10px; background:var(--gold); color:var(--primary); font-size:0.72rem; font-weight:800; padding:4px 10px; border-radius:50px; z-index:1; }

.bonus-popup-body { background:var(--dark-card); padding:16px; border:1px solid var(--border); border-top:2px solid var(--accent); }

.bonus-popup-body h3 { font-size:0.95rem; font-weight:800; color:var(--white); margin-bottom:4px; }

.bonus-popup-body p { font-size:0.8rem; color:var(--text-muted); margin-bottom:12px; }

.bonus-popup-close { position:absolute; top:8px; right:8px; background:rgba(0,0,0,0.5); border:none; color:var(--white); width:26px; height:26px; border-radius:50%; cursor:pointer; font-size:1rem; display:flex; align-items:center; justify-content:center; z-index:10; }



/* FOOTER */

.site-footer { background:var(--secondary); border-top:2px solid var(--border); padding:60px 0 0; }

.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; }

.footer-brand .logo-wrap img { height:38px; }

.footer-brand p { color:var(--text-muted); font-size:0.88rem; margin-top:14px; line-height:1.7; max-width:300px; }

.footer-col h4 { font-size:0.9rem; font-weight:700; color:var(--white); margin-bottom:16px; letter-spacing:0.5px; text-transform:uppercase; }

.footer-col ul li { margin-bottom:10px; }

.footer-col ul li a { color:var(--text-muted); font-size:0.88rem; transition:color var(--transition); }

.footer-col ul li a:hover { color:var(--accent); }

.footer-bottom { margin-top:40px; border-top:1px solid var(--border); padding:20px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }

.footer-bottom p { color:var(--text-muted); font-size:0.82rem; }

.footer-badges { display:flex; gap:10px; flex-wrap:wrap; align-items:center; }

.footer-badge { background:rgba(255,255,255,0.06); border:1px solid var(--border); padding:5px 12px; border-radius:6px; font-size:0.78rem; color:var(--text-muted); font-weight:600; }

.responsible { background:rgba(255,184,0,0.1); border:1px solid rgba(255,184,0,0.3); border-radius:var(--radius); padding:14px 18px; margin-top:20px; font-size:0.8rem; color:rgba(255,184,0,0.9); }




/* PAGE HERO */

.page-hero { background-size:cover; background-position:center; position:relative; padding:80px 0; }

.page-hero::after { content:''; position:absolute; inset:0; background:linear-gradient(100deg,rgba(0,26,77,0.93) 50%, rgba(0,26,77,0.6) 100%); }

.page-hero-content { position:relative; z-index:2; }

.page-hero h1 { font-size:clamp(1.8rem,3.5vw,3rem); font-weight:900; color:var(--white); margin-bottom:14px; }

.page-hero p { color:var(--text-muted); font-size:1.05rem; max-width:620px; }



/* ARTICLE */

.article-body { max-width:100%; }

.article-body h2 { font-size:1.5rem; font-weight:800; color:var(--white); margin:36px 0 14px; }

.article-body h3 { font-size:1.15rem; font-weight:700; color:var(--accent); margin:24px 0 10px; }

.article-body p { color:var(--text-muted); font-size:0.95rem; line-height:1.8; margin-bottom:16px; }

.article-body ul { margin:12px 0 18px 0; }

.article-body ul li { color:var(--text-muted); font-size:0.93rem; padding:5px 0 5px 20px; position:relative; }

.article-body ul li::before { content:'\2192'; position:absolute; left:0; color:var(--accent); font-weight:700; }



/* RATING STARS */

.stars { color:var(--gold); font-size:1.1rem; letter-spacing:2px; }

.rating-num { font-size:2.5rem; font-weight:900; color:var(--white); }

.rating-num span { font-size:1rem; color:var(--text-muted); }



/* ICON GRID */

.icon-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:16px; }

.icon-item { background:var(--dark-card); border:1px solid var(--border); border-radius:var(--radius); padding:20px 16px; text-align:center; transition:all var(--transition); }

.icon-item:hover { border-color:var(--accent); transform:translateY(-3px); }

.icon-item .emoji { font-size:2rem; margin-bottom:8px; }

.icon-item span { display:block; font-size:0.85rem; font-weight:600; color:var(--text-muted); }



/* TABS */

.tabs-nav { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; }

.tab-btn { padding:10px 22px; border-radius:50px; border:1px solid var(--border); background:transparent; color:var(--text-muted); font-weight:600; font-size:0.88rem; cursor:pointer; transition:all var(--transition); }

.tab-btn.active { background:var(--accent); color:var(--primary); border-color:var(--accent); }

.tab-content { display:none; }

.tab-content.active { display:block; }



/* REVIEW SCORE */

.review-score { background:var(--dark-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; display:flex; gap:28px; align-items:center; flex-wrap:wrap; }

.score-circle { width:110px; height:110px; border-radius:50%; border:5px solid var(--accent); display:flex; flex-direction:column; align-items:center; justify-content:center; flex-shrink:0; }

.score-circle .score-val { font-size:2.2rem; font-weight:900; color:var(--accent); line-height:1; }

.score-circle .score-max { font-size:0.8rem; color:var(--text-muted); }



/* PAYMENT ICONS */

.payment-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:14px; }

.payment-item { background:var(--dark-card); border:1px solid var(--border); border-radius:var(--radius); padding:16px; text-align:center; }

.payment-item .pay-icon { font-size:2rem; margin-bottom:8px; }

.payment-item .pay-name { font-size:0.83rem; font-weight:600; color:var(--white); margin-bottom:2px; }

.payment-item .pay-time { font-size:0.75rem; color:var(--accent); }



/* DONUT CHART */

.donut-wrap { display:flex; align-items:center; gap:28px; flex-wrap:wrap; }

.donut-svg { flex-shrink:0; }

.donut-legend { display:flex; flex-direction:column; gap:10px; }

.donut-legend-item { display:flex; align-items:center; gap:10px; }

.donut-dot { width:12px; height:12px; border-radius:50%; flex-shrink:0; }

.donut-legend-item span { font-size:0.87rem; color:var(--text-muted); }



/* COMPARISON TABLE */

.compare-table { width:100%; border-collapse:collapse; }

.compare-table th { background:var(--secondary); color:var(--white); padding:14px 18px; font-size:0.88rem; font-weight:700; }

.compare-table th:first-child { text-align:left; }

.compare-table td { padding:12px 18px; border-bottom:1px solid var(--border); text-align:center; font-size:0.9rem; }

.compare-table tr:first-child th:nth-child(2) { background:var(--accent); color:var(--primary); }

.compare-table td.feature { text-align:left; color:var(--text-muted); }

.compare-table td.highlight { color:var(--accent); font-weight:700; }

.yes { color:var(--accent); font-size:1.1rem; }

.no { color:#EF4444; font-size:1.1rem; }



/* CHIPS / TAGS */

.tags { display:flex; flex-wrap:wrap; gap:8px; }

.tag { background:rgba(140,198,63,0.1); border:1px solid var(--border); color:var(--accent); font-size:0.8rem; padding:5px 14px; border-radius:50px; font-weight:600; }



/* ALERT BOXES */

.alert { border-radius:var(--radius); padding:16px 20px; margin:20px 0; border-left:4px solid; }

.alert-info { background:rgba(140,198,63,0.08); border-color:var(--accent); color:var(--text); }

.alert-warn { background:rgba(255,184,0,0.08); border-color:var(--gold); color:var(--text); }

.alert strong { display:block; margin-bottom:4px; }



/* MOBILE */

@media(max-width:1024px) {

  .footer-grid { grid-template-columns:1fr 1fr; }

  .stats-grid { grid-template-columns:repeat(2,1fr); }

}

@media(max-width:768px) {

  .main-nav { display:none; position:fixed; inset:0; top:0; background:var(--secondary); flex-direction:column; align-items:flex-start; padding:80px 24px 40px; gap:8px; z-index:999; overflow-y:auto; }

  .main-nav.open { display:flex; }

  .main-nav a { width:100%; padding:14px 18px; font-size:1rem; border-radius:10px; }

  .hamburger { display:flex; z-index:1001; position:relative; }

  .mobile-header-cta { display:flex; }

  .header-top { display:none; }

  .hero { min-height:480px; }

  .hero-content { padding:60px 20px; }

  .footer-grid { grid-template-columns:1fr; gap:28px; }

  .stats-grid { grid-template-columns:repeat(2,1fr); }

  .author-box { flex-direction:column; align-items:center; text-align:center; }

  .review-score { flex-direction:column; align-items:flex-start; }

  .bonus-popup { width:260px; right:16px; bottom:16px; }

  .donut-wrap { flex-direction:column; }

}

@media(max-width:480px) {

  .stats-grid { grid-template-columns:1fr 1fr; }

  .hero h1 { font-size:1.7rem; }

  .btn-primary, .btn-secondary { width:100%; justify-content:center; }

  .hero-btns { flex-direction:column; }

}



/* ANIMATIONS */

.fade-in { opacity:0; transform:translateY(24px); transition:opacity 0.6s ease, transform 0.6s ease; }

.fade-in.visible { opacity:1; transform:translateY(0); }


/* ARTICLE FLOAT IMAGES */
.article-img-float {
  float: right;
  width: 340px;
  max-width: 45%;
  margin: 0 0 24px 32px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,26,77,0.5);
  display: block;
  object-fit: cover;
  height: 220px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-img-float:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(140,198,63,0.25);
}
.article-img-float figcaption {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}
.article-figure {
  float: right;
  width: 340px;
  max-width: 45%;
  margin: 0 0 24px 32px;
  clear: right;
}
.article-figure img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,26,77,0.5);
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-figure img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(140,198,63,0.25);
}
.article-figure figcaption {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
  line-height: 1.4;
}
.article-body::after {
  content: '';
  display: table;
  clear: both;
}
@media(max-width:768px) {
  .article-figure {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
  }
  .article-figure img {
    height: 220px;
  }
}

/* RESPONSIVE GRID HELPERS */
.grid-2col { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.grid-2col-wide { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.grid-2col-bonus { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; }

/* MOBILE RESPONSIVE FIXES — 600px */
@media(max-width:600px) {

  /* Grid stacking — all 2-col grids become 1 col */
  .grid-2col,
  .grid-2col-wide { grid-template-columns:1fr !important; }
  .grid-2col-bonus { grid-template-columns:1fr !important; }

  /* Steps stack to single column */
  .steps-grid { grid-template-columns:1fr !important; }

  /* Stats stay 2-col (icons are small enough) */
  .stats-grid { grid-template-columns:1fr 1fr !important; }

  /* Float images reset on mobile */
  .article-figure {
    float:none !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 0 20px 0 !important;
  }
  .article-figure img { height:200px !important; }
  .article-img-float {
    float:none !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 0 20px 0 !important;
  }

  /* Popup banner — fixed bottom full-width, not overlapping content */
  .bonus-popup {
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    width:auto !important;
    max-width:none !important;
    transform:translateY(calc(100% + 24px)) !important;
  }
  .bonus-popup.show {
    transform:translateY(0) !important;
  }

  /* Charts horizontal scroll if too wide */
  .chart-container { overflow-x:auto; min-height:260px; }
}


/* 18+ Notice */
.gambling-notice {
  background: rgba(255,80,80,0.12);
  border-left: 3px solid #ff5050;
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 8px 14px;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}
/* Skip link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--accent);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }
