/* =========================================================
   ombuverde — Deep Forest Premium template
   Deep forest green, emerald + gold, editorial serif
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg: #0a1510;
    --bg-2: #0d1b14;
    --panel: #12241a;
    --panel-2: #17301f;
    --border: rgba(226, 197, 122, 0.16);
    --border-strong: rgba(226, 197, 122, 0.34);
    --text: #f2efe2;
    --muted: #aabdae;
    --faint: #7d9184;
    --emerald: #35b97c;
    --emerald-2: #2a9a66;
    --emerald-deep: #1c6e49;
    --gold: #e2c173;
    --gold-2: #cba548;
    --grad: linear-gradient(120deg, #2a9a66 0%, #35b97c 100%);
    --grad-gold: linear-gradient(120deg, #e2c173, #cba548);
    --grad-soft: linear-gradient(140deg, rgba(53,185,124,0.16), rgba(226,193,115,0.12));
    --danger: #e2695f;
    --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', system-ui, sans-serif;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 26px 60px -24px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 44px -10px rgba(53, 185, 124, 0.4);
    --container: 1160px;
    --nav-h: 76px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
    font-family: var(--sans);
    background: var(--bg);
    background-image:
        radial-gradient(1100px 620px at 78% -6%, rgba(53,185,124,0.12), transparent 60%),
        radial-gradient(900px 560px at 8% 8%, rgba(226,193,115,0.08), transparent 55%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.14; font-weight: 600; letter-spacing: -0.01em; }

a { color: var(--emerald); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 26px; position: relative; z-index: 1; }
::selection { background: rgba(53,185,124,0.35); color: #fff; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--emerald), var(--gold)); border-radius: 20px; border: 3px solid var(--bg); }

/* =========================================================
   NAV
   ========================================================= */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 1000;
    display: flex; align-items: center;
    background: rgba(9, 20, 14, 0.6);
    backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled { background: rgba(8, 17, 12, 0.92); border-bottom-color: var(--border); box-shadow: 0 12px 40px -20px rgba(0,0,0,0.9); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; }
.nav-brand img { height: 44px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-menu a {
    color: var(--muted); font-size: 0.93rem; font-weight: 500; letter-spacing: 0.01em;
    padding: 10px 15px; border-radius: 8px; position: relative; transition: color 0.2s;
}
.nav-menu a::after {
    content: ""; position: absolute; left: 15px; right: 15px; bottom: 6px; height: 1.5px;
    background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.28s var(--ease);
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-cta {
    margin-left: 10px; padding: 11px 24px; border-radius: 999px; font-weight: 700; font-size: 0.9rem;
    color: #06180f !important; background: var(--grad);
    box-shadow: 0 10px 26px -10px rgba(53,185,124,0.7); transition: transform 0.25s var(--ease), box-shadow 0.25s; white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(226,193,115,0.6); color: #06180f !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.3s; }

/* =========================================================
   BACK BUTTON
   ========================================================= */
.back-button {
    position: fixed; left: 20px; bottom: 20px; z-index: 900;
    width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%;
    background: var(--panel-2); border: 1px solid var(--border-strong); backdrop-filter: blur(10px);
    transition: transform 0.25s, background 0.25s;
}
.back-button::before { content: "\2190"; font-size: 1.4rem; color: var(--gold); }
.back-button:hover { transform: translateY(-3px); background: var(--grad); }
.back-button:hover::before { color: #06180f; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: calc(var(--nav-h) + 78px) 0 64px; text-align: center; overflow: hidden; }
.hero .container { max-width: 860px; }
.hero h1 {
    font-family: var(--serif); font-weight: 600;
    font-size: clamp(2.1rem, 5.2vw, 3.7rem); line-height: 1.08; margin-bottom: 24px; color: var(--text);
}
.hero h1 br { display: none; }
.hero p { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 700px; margin: 0 auto; }
/* gold kicker before hero heading */
.hero .container > h1::before {
    content: "OMBÚVERDE · PROVINCIA DE BUENOS AIRES";
    display: block; font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.32em;
    color: var(--gold); margin-bottom: 20px;
}
.animated-background { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.animated-background .circle { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.4; animation: float 18s ease-in-out infinite; }
.animated-background .circle:nth-child(1){ width:300px;height:300px;top:-70px;left:6%;background:radial-gradient(circle,var(--emerald),transparent 65%);}
.animated-background .circle:nth-child(2){ width:200px;height:200px;top:26%;right:5%;background:radial-gradient(circle,var(--gold),transparent 65%);animation-delay:-4s;}
.animated-background .circle:nth-child(3){ width:150px;height:150px;bottom:6%;left:16%;background:radial-gradient(circle,var(--emerald),transparent 65%);animation-delay:-8s;}
.animated-background .circle:nth-child(n+4){ display:none; }
@keyframes float { 0%,100%{transform:translate(0,0);} 50%{transform:translate(16px,-26px);} }

.hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 999px; font-weight: 700; font-family: var(--sans); cursor: pointer; border: none; transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.btn-primary { background: var(--grad); color: #06180f; box-shadow: 0 14px 32px -12px rgba(53,185,124,0.7); }
.btn-primary:hover { transform: translateY(-3px); color: #06180f; box-shadow: 0 18px 40px -12px rgba(226,193,115,0.6); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { transform: translateY(-3px); color: var(--gold); border-color: var(--gold); }

/* section titles */
.section-eyebrow { display: block; text-align: center; text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.72rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.section-title, .faq-section h2 {
    font-family: var(--serif); text-align: center; font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 600; margin: 0 auto 44px;
}
.section-title::after { content: ""; display: block; width: 68px; height: 2px; margin: 18px auto 0; background: var(--grad-gold); }

/* =========================================================
   CASINO RANKING (editorial numbered rows)
   ========================================================= */
.casino-ranking { padding: 44px 0 34px; }
.casino-grid { display: flex; flex-direction: column; gap: 20px; }

.casino-card {
    position: relative; display: grid; grid-template-columns: 92px 122px 1fr auto; align-items: center; gap: 30px;
    padding: 26px 34px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s; overflow: hidden;
}
.casino-card::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad); opacity: 0.65; }
.casino-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow), var(--shadow-glow); }
.casino-grid .casino-card:first-child { border-color: var(--border-strong); background: linear-gradient(180deg, rgba(226,193,115,0.07), transparent), var(--panel); }
.casino-grid .casino-card:first-child::after { background: var(--grad-gold); opacity: 1; }

.ranking-number { font-family: var(--serif); font-size: 3.4rem; font-weight: 700; line-height: 1; color: var(--gold); text-align: center; }
.casino-logo-link { display: block; }
.casino-logo {
    width: 122px; height: 84px; display: grid; place-items: center; border-radius: 12px;
    background: var(--grad-soft); border: 1px solid var(--border); font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--text);
    transition: transform 0.3s var(--ease);
}
.casino-logo-link:hover .casino-logo { transform: scale(1.04); box-shadow: var(--shadow-glow); }
.casino-info { min-width: 0; }
.casino-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.verified-badge { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; color: var(--emerald); background: rgba(53,185,124,0.12); border: 1px solid rgba(53,185,124,0.38); padding: 4px 11px; border-radius: 999px; }
.offer-text { color: var(--text); font-size: 1.05rem; margin-bottom: 14px; font-weight: 500; overflow-wrap: anywhere; }
.pwr-score { margin-bottom: 14px; max-width: 340px; }
.pwr-label { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.progress-bar { height: 6px; background: rgba(255,255,255,0.07); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--grad); border-radius: 999px; transition: width 1.2s var(--ease); }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag { font-size: 0.78rem; color: var(--muted); background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 6px 13px; border-radius: 8px; }
.casino-cta {
    padding: 15px 32px; border-radius: 999px; font-weight: 700; font-family: var(--sans); color: #06180f !important; background: var(--grad);
    white-space: nowrap; box-shadow: 0 12px 30px -12px rgba(53,185,124,0.7); transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.casino-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(226,193,115,0.6); }

/* =========================================================
   CONTENT PANELS
   ========================================================= */
.regulation-section, .about-section, .responsible-section { padding: 52px 0; }
.regulation-card, .about-intro {
    background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 48px; box-shadow: var(--shadow); max-width: 920px; margin: 0 auto; position: relative;
}
.regulation-card h2, .about-intro h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 20px; color: var(--text); }
.regulation-card h2::after, .about-intro h2::after { content: ""; display: block; width: 60px; height: 2px; margin-top: 16px; background: var(--grad-gold); }
.regulation-card h3, .about-intro h3 { font-family: var(--serif); font-size: 1.32rem; margin: 28px 0 10px; color: var(--gold); }
.regulation-card p, .about-intro p { color: var(--muted); margin-bottom: 15px; }
.regulation-card ul, .about-intro ul { list-style: none; margin: 8px 0 20px; }
.regulation-card li, .about-intro li { position: relative; padding-left: 30px; margin-bottom: 13px; color: var(--muted); }
.regulation-card li::before, .about-intro li::before { content: "\2766"; position: absolute; left: 2px; top: -2px; color: var(--gold); font-size: 1rem; }
.regulation-card a, .about-intro a, .responsible-section a, .final-reminder a { color: var(--emerald) !important; text-decoration: underline; text-underline-offset: 3px; }
.regulation-card strong, .about-intro strong { color: var(--text); }
.policy-last-updated { display: inline-block; font-size: 0.85rem; color: var(--gold); background: rgba(226,193,115,0.08); border: 1px solid var(--border); padding: 8px 16px; border-radius: 999px; margin-bottom: 24px; }

/* responsible-gaming feature cards */
.responsible-intro { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.intro-icon, .feature-icon { flex-shrink: 0; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: var(--grad-soft); border: 1px solid var(--border); color: var(--gold); font-size: 1.3rem; }
.responsible-features { display: grid; gap: 22px; }
.feature-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.feature-card h3 { font-family: var(--serif); margin: 14px 0 10px; color: var(--gold); }
.warning-card { border-color: rgba(226,105,95,0.3); }
.warning-card .feature-icon { color: var(--danger); background: rgba(226,105,95,0.12); }
.warning-list li::before { content: "\26A0"; color: var(--danger); }
.help-card { border-color: rgba(53,185,124,0.32); }
.commitment-card { border-color: var(--border-strong); }
.tips-list { display: grid; gap: 12px; margin-top: 14px; }
.tip-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-left: 3px solid var(--gold); padding: 14px 18px; border-radius: 10px; color: var(--muted); }
.final-reminder { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { padding: 62px 0; }
.faq-item { max-width: 840px; margin: 0 auto 14px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s, background 0.3s; }
.faq-item.active { border-color: var(--border-strong); background: var(--panel-2); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; cursor: pointer; font-family: var(--serif); font-weight: 600; font-size: 1.08rem; color: var(--text); }
.faq-toggle { flex-shrink: 0; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--border); color: var(--gold); font-size: 1.3rem; font-weight: 700; transition: transform 0.35s var(--ease); }
.faq-item.active .faq-toggle { transform: rotate(135deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.active .faq-answer { max-height: 420px; }
.faq-answer p { padding: 0 28px 24px; color: var(--muted); }

/* =========================================================
   DISCLAIMER
   ========================================================= */
.responsible-gaming { padding: 20px 0 52px; }
.legal-disclaimer { max-width: 920px; margin: 0 auto; padding: 26px 30px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--radius); color: var(--faint); font-size: 0.9rem; text-align: center; }
.legal-disclaimer a { color: var(--emerald) !important; }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-form { margin-top: 28px; display: grid; gap: 18px; }
.contact-form label { display: block; margin-bottom: 8px; color: var(--text); font-weight: 500; font-size: 0.92rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 13px 15px; font-size: 1rem; font-family: var(--sans);
    background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; color: var(--text); transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(53,185,124,0.16); }
.contact-form select option { background: #10201a; }
.contact-consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 0.9rem; cursor: pointer; }
.contact-consent input { width: 18px; height: 18px; margin-top: 3px; }
.contact-meta { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border); }
.contact-meta h3 { font-family: var(--serif); color: var(--gold); margin-bottom: 12px; }
.contact-meta p { margin-bottom: 6px; color: var(--muted); }

/* =========================================================
   CANCEL SUBSCRIPTION
   ========================================================= */
.unsubscribe-header { text-align: center; margin-bottom: 22px; }
.cancel-icon { font-size: 2.6rem; margin-bottom: 10px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--text); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 15px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; color: var(--text); font-size: 1rem; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--emerald); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); margin-bottom: 18px; }
.button-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.btn-cancel, .btn-keep { padding: 13px 28px; border-radius: 999px; font-weight: 700; font-family: var(--sans); cursor: pointer; border: none; transition: transform 0.25s var(--ease); }
.btn-cancel { background: rgba(226,105,95,0.14); color: var(--danger); border: 1px solid rgba(226,105,95,0.4); }
.btn-keep { background: var(--grad); color: #06180f; }
.btn-cancel:hover, .btn-keep:hover { transform: translateY(-3px); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { margin-top: 64px; background: linear-gradient(180deg, transparent, rgba(226,193,115,0.05)); border-top: 1px solid var(--border); padding: 58px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 42px; }
.footer-brand-img { height: 48px; margin-bottom: 16px; }
.footer-highlight { display: inline-block; margin-top: 12px; font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--gold); }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--faint); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col ul a { color: var(--muted); font-size: 0.94rem; }
.footer-col ul a:hover { color: var(--gold); }
.partner-logos { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.partner-logo { height: 42px; width: auto; opacity: 0.55; filter: grayscale(1) brightness(1.5); transition: opacity 0.3s, filter 0.3s; }
.partner-logo:hover { opacity: 1; filter: grayscale(0); }
.trustpilot { margin-top: 18px; color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.trustpilot span { color: var(--gold); letter-spacing: 2px; }
.footer-legal { margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--border); text-align: center; }
.footer-disclaimer { color: var(--faint); font-size: 0.82rem; max-width: 900px; margin: 0 auto 18px; line-height: 1.7; }
.copyright { color: var(--faint); font-size: 0.82rem; margin-top: 6px; }

/* =========================================================
   POPUPS
   ========================================================= */
.popup-overlay, #cookieConsentPopup { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(4, 10, 7, 0.72); backdrop-filter: blur(6px); }
.popup-overlay.active, #cookieConsentPopup.active { display: flex; }
#cookieConsentPopup { align-items: flex-end; background: transparent; backdrop-filter: none; pointer-events: none; }
#cookieConsentPopup .popup-content { pointer-events: auto; max-width: 560px; margin-bottom: 22px; }
.popup-content { width: 100%; max-width: 440px; background: linear-gradient(180deg, #143024, #0f2419); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); animation: popIn 0.4s var(--ease); }
@keyframes popIn { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: none; } }
.popup-header h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 14px; color: var(--text); }
.popup-body { color: var(--muted); margin-bottom: 22px; }
.popup-body a { color: var(--emerald); }
.age-icon { width: 78px; height: 78px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: #06180f; background: var(--grad); box-shadow: var(--shadow-glow); }
.popup-footer { display: flex; gap: 12px; flex-wrap: wrap; }
.popup-btn { flex: 1; min-width: 140px; padding: 13px 18px; border-radius: 12px; font-weight: 700; font-family: var(--sans); cursor: pointer; border: none; transition: transform 0.2s; }
.popup-btn:hover { transform: translateY(-2px); }
.popup-btn.primary { background: var(--grad); color: #06180f; }
.popup-btn.secondary { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }

/* =========================================================
   SCROLL PROGRESS + REVEAL
   ========================================================= */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 1100; background: var(--grad-gold); box-shadow: 0 0 12px rgba(226,193,115,0.6); transition: width 0.08s linear; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 820px) {
    .casino-card { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 14px; padding: 30px 22px; }
    .casino-card::after { width: 100%; height: 4px; bottom: auto; }
    .ranking-number { font-size: 2.6rem; }
    .casino-title { justify-content: center; }
    .feature-tags { justify-content: center; }
    .pwr-score { max-width: 100%; width: 100%; }
    .casino-cta { width: 100%; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .nav-menu {
        position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px 22px 24px;
        background: rgba(8, 17, 12, 0.98); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border);
        transform: translateY(-120%); opacity: 0; pointer-events: none; transition: transform 0.35s var(--ease), opacity 0.3s;
    }
    .nav-menu.active { transform: none; opacity: 1; pointer-events: auto; }
    .nav-menu a { padding: 13px 16px; font-size: 1rem; }
    .nav-menu a::after { display: none; }
    .regulation-card, .about-intro { padding: 30px 22px; }
    .hero { padding: calc(var(--nav-h) + 44px) 0 48px; }
    .back-button { width: 42px; height: 42px; left: 14px; bottom: 14px; }
}
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    .reveal { opacity: 1; transform: none; }
    #scroll-progress { display: none; }
}
