/* =========================================================
   toldenza — Neo-Brutalist template
   Cream paper, black borders, hard offset shadows, red + yellow
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg: #f4efe2;
    --bg-2: #eae2cf;
    --panel: #fffdf7;
    --panel-2: #efe8d5;
    --ink: #17140d;
    --text: #17140d;
    --muted: #4f4838;
    --faint: #857c67;
    --border: #17140d;
    --accent: #ff3b30;
    --accent-2: #e02c22;
    --accent-soft: #ffe1de;
    --yellow: #ffcf33;
    --yellow-soft: #fff3c9;
    --danger: #ff3b30;
    --display: 'Syne', system-ui, sans-serif;
    --sans: 'Inter', system-ui, sans-serif;
    --radius: 8px;
    --radius-lg: 12px;
    --sh-sm: 4px 4px 0 var(--ink);
    --sh: 6px 6px 0 var(--ink);
    --sh-lg: 9px 9px 0 var(--ink);
    --container: 1160px;
    --nav-h: 74px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
    font-family: var(--sans);
    background-color: var(--bg);
    background-image: radial-gradient(rgba(23,20,13,0.055) 1.2px, transparent 1.2px);
    background-size: 22px 22px;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.08; font-weight: 800; letter-spacing: -0.01em; }

a { color: var(--accent-2); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 26px; position: relative; z-index: 1; }
::selection { background: var(--yellow); color: var(--ink); }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--accent); border: 2px solid var(--ink); }

/* =========================================================
   NAV
   ========================================================= */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 1000;
    display: flex; align-items: center;
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
    transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 6px 0 -2px rgba(23,20,13,0.14); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; }
.nav-brand img { height: 42px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-menu a { color: var(--ink); font-weight: 600; padding: 8px 14px; border: 2px solid transparent; border-radius: 6px; transition: background 0.15s, border-color 0.15s; }
.nav-menu a:hover { color: var(--ink); background: var(--yellow); border-color: var(--ink); }
.nav-cta {
    margin-left: 10px; padding: 10px 22px; border-radius: 8px; font-family: var(--display); font-weight: 700; font-size: 0.9rem;
    color: #fff !important; background: var(--accent); border: 2px solid var(--ink); box-shadow: var(--sh-sm);
    transition: transform 0.15s var(--ease), box-shadow 0.15s; white-space: nowrap;
}
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: var(--sh); color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: var(--panel); border: 2px solid var(--ink); border-radius: 6px; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* =========================================================
   BACK BUTTON
   ========================================================= */
.back-button {
    position: fixed; left: 20px; bottom: 20px; z-index: 900;
    width: 50px; height: 50px; display: grid; place-items: center; border-radius: 8px;
    background: var(--panel); border: 2px solid var(--ink); box-shadow: var(--sh-sm);
    transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.back-button::before { content: "\2190"; font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.back-button:hover { transform: translate(-2px,-2px); background: var(--accent); box-shadow: var(--sh); }
.back-button:hover::before { color: #fff; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: calc(var(--nav-h) + 72px) 0 58px; text-align: center; overflow: hidden; }
.hero .container { max-width: 900px; }
.hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 5.6vw, 4rem); line-height: 1.02; margin-bottom: 22px; color: var(--ink); }
.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; }
.hero .container > h1::before {
    content: "TOLDENZA · PROVINCIA DE BUENOS AIRES";
    display: inline-block; font-family: var(--display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
    color: var(--ink); background: var(--yellow); margin-bottom: 22px; padding: 7px 16px; border: 2px solid var(--ink); border-radius: 6px; box-shadow: var(--sh-sm);
}
.animated-background { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.animated-background .circle { position: absolute; border: 2px solid var(--ink); border-radius: 50%; opacity: 0.5; animation: float 16s ease-in-out infinite; }
.animated-background .circle:nth-child(1){ width:70px;height:70px;top:14%;left:8%;background:var(--yellow);}
.animated-background .circle:nth-child(2){ width:44px;height:44px;top:30%;right:10%;background:var(--accent);animation-delay:-4s;}
.animated-background .circle:nth-child(3){ width:30px;height:30px;bottom:18%;left:16%;background:var(--yellow);animation-delay:-8s;}
.animated-background .circle:nth-child(n+4){ display:none; }
@keyframes float { 0%,100%{transform:translate(0,0) rotate(0);} 50%{transform:translate(10px,-18px) rotate(12deg);} }

.hero-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 8px; font-family: var(--display); font-weight: 700; cursor: pointer; border: 2px solid var(--ink); box-shadow: var(--sh); transition: transform 0.15s var(--ease), box-shadow 0.15s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { transform: translate(-3px,-3px); color: #fff; box-shadow: var(--sh-lg); }
.btn-ghost { background: var(--panel); color: var(--ink); }
.btn-ghost:hover { transform: translate(-3px,-3px); color: var(--ink); background: var(--yellow); box-shadow: var(--sh-lg); }

/* section titles */
.section-eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 0.14em; font-family: var(--display); font-size: 0.74rem; font-weight: 700; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); padding: 4px 12px; border-radius: 6px; margin: 0 auto 14px; }
.casino-ranking .container, .faq-section .container { text-align: center; }
.section-title, .faq-section h2 { font-family: var(--display); text-align: center; font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 800; margin: 0 auto 40px; color: var(--ink); }
.section-title { display: inline-block; text-align: center; }
.section-title::after { content: ""; display: block; width: 100%; height: 8px; margin-top: 6px; background: var(--accent); border: 2px solid var(--ink); border-radius: 4px; }

/* =========================================================
   CASINO RANKING (brutalist rows)
   ========================================================= */
.casino-ranking { padding: 40px 0 34px; }
.casino-grid { display: flex; flex-direction: column; gap: 24px; text-align: left; }

.casino-card {
    position: relative; display: grid; grid-template-columns: 66px 120px 1fr auto; align-items: center; gap: 28px;
    padding: 26px 30px; background: var(--panel); border: 2px solid var(--ink); border-radius: var(--radius-lg);
    box-shadow: var(--sh); transition: transform 0.18s var(--ease), box-shadow 0.18s;
}
.casino-card:hover { transform: translate(-4px,-4px); box-shadow: var(--sh-lg); }
.casino-grid .casino-card:first-child { background: var(--yellow-soft); }

.ranking-number { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 8px; font-family: var(--display); font-size: 1.5rem; font-weight: 800; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); box-shadow: var(--sh-sm); }
.casino-logo-link { display: block; }
.casino-logo { width: 120px; height: 80px; display: grid; place-items: center; border-radius: 8px; background: var(--bg); border: 2px solid var(--ink); font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--ink); transition: transform 0.15s var(--ease); }
.casino-logo-link:hover .casino-logo { transform: translate(-2px,-2px); box-shadow: var(--sh-sm); }
.casino-info { min-width: 0; }
.casino-title { font-family: var(--display); font-size: 1.32rem; font-weight: 800; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; color: var(--ink); }
.verified-badge { font-family: var(--sans); font-size: 0.7rem; font-weight: 700; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); padding: 3px 10px; border-radius: 5px; }
.offer-text { color: var(--ink); font-size: 1.05rem; margin-bottom: 14px; font-weight: 600; overflow-wrap: anywhere; }
.pwr-score { margin-bottom: 14px; max-width: 340px; }
.pwr-label { font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.progress-bar { height: 12px; background: var(--panel); border: 2px solid var(--ink); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--accent); transition: width 1.2s var(--ease); }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag { font-size: 0.78rem; color: var(--ink); background: var(--panel); border: 2px solid var(--ink); padding: 5px 12px; border-radius: 5px; font-weight: 500; }
.casino-cta { padding: 14px 30px; border-radius: 8px; font-family: var(--display); font-weight: 700; color: #fff !important; background: var(--accent); border: 2px solid var(--ink); white-space: nowrap; box-shadow: var(--sh-sm); transition: transform 0.15s var(--ease), box-shadow 0.15s; }
.casino-cta:hover { transform: translate(-3px,-3px); box-shadow: var(--sh); }

/* =========================================================
   CONTENT PANELS
   ========================================================= */
.regulation-section, .about-section, .responsible-section { padding: 52px 0; }
.regulation-card, .about-intro { background: var(--panel); border: 2px solid var(--ink); border-radius: var(--radius-lg); padding: 46px; box-shadow: var(--sh); max-width: 920px; margin: 0 auto; }
.regulation-card h2, .about-intro h2 { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 20px; color: var(--ink); display: inline-block; background: var(--yellow); border: 2px solid var(--ink); padding: 4px 14px; border-radius: 6px; box-shadow: var(--sh-sm); }
.regulation-card h3, .about-intro h3 { font-family: var(--display); font-size: 1.28rem; margin: 28px 0 10px; color: var(--ink); }
.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: ""; position: absolute; left: 3px; top: 8px; width: 11px; height: 11px; background: var(--accent); border: 2px solid var(--ink); }
.regulation-card a, .about-intro a, .responsible-section a, .final-reminder a { color: var(--accent-2) !important; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.regulation-card strong, .about-intro strong { color: var(--ink); }
.policy-last-updated { display: inline-block; font-family: var(--display); font-size: 0.82rem; font-weight: 700; color: var(--ink); background: var(--panel); border: 2px solid var(--ink); padding: 7px 16px; border-radius: 6px; box-shadow: var(--sh-sm); margin-bottom: 24px; }

.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: 8px; background: var(--yellow); border: 2px solid var(--ink); color: var(--ink); font-size: 1.3rem; box-shadow: var(--sh-sm); }
.responsible-features { display: grid; gap: 22px; }
.feature-card { background: var(--bg); border: 2px solid var(--ink); border-radius: var(--radius); padding: 26px; box-shadow: var(--sh-sm); }
.feature-card h3 { font-family: var(--display); margin: 14px 0 10px; color: var(--ink); }
.warning-card .feature-icon { color: #fff; background: var(--accent); }
.warning-list li::before { background: var(--ink); }
.tips-list { display: grid; gap: 12px; margin-top: 14px; }
.tip-item { background: var(--panel); border: 2px solid var(--ink); border-left: 8px solid var(--accent); padding: 14px 18px; border-radius: 8px; color: var(--muted); box-shadow: var(--sh-sm); }
.final-reminder { margin-top: 26px; padding-top: 22px; border-top: 2px dashed var(--ink); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { padding: 60px 0; }
.faq-item { max-width: 840px; margin: 0 auto 16px; text-align: left; background: var(--panel); border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-sm); transition: box-shadow 0.2s, transform 0.2s; }
.faq-item.active { box-shadow: var(--sh); transform: translate(-2px,-2px); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.faq-toggle { flex-shrink: 0; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 6px; background: var(--yellow); border: 2px solid var(--ink); color: var(--ink); font-size: 1.3rem; font-weight: 800; transition: transform 0.3s var(--ease); }
.faq-item.active .faq-toggle { transform: rotate(135deg); background: var(--accent); color: #fff; }
.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 24px 22px; color: var(--muted); }

/* =========================================================
   DISCLAIMER
   ========================================================= */
.responsible-gaming { padding: 20px 0 52px; }
.legal-disclaimer { max-width: 920px; margin: 0 auto; padding: 24px 28px; background: var(--panel); border: 2px solid var(--ink); border-left: 8px solid var(--accent); border-radius: var(--radius); color: var(--muted); font-size: 0.9rem; text-align: center; box-shadow: var(--sh-sm); }
.legal-disclaimer a { color: var(--accent-2) !important; font-weight: 600; }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-form { margin-top: 28px; display: grid; gap: 18px; }
.contact-form label { display: block; margin-bottom: 8px; color: var(--ink); font-weight: 700; 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: var(--bg); border: 2px solid var(--ink); border-radius: 8px; color: var(--ink); transition: box-shadow 0.15s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; box-shadow: var(--sh-sm); }
.contact-form select option { background: #fff; }
.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; accent-color: var(--accent); }
.contact-meta { margin-top: 30px; padding-top: 24px; border-top: 2px dashed var(--ink); }
.contact-meta h3 { font-family: var(--display); color: var(--ink); 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(--ink); font-weight: 700; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 15px; background: var(--bg); border: 2px solid var(--ink); border-radius: 8px; color: var(--ink); font-size: 1rem; }
.form-group input:focus, .form-group textarea:focus { outline: none; box-shadow: var(--sh-sm); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); margin-bottom: 18px; }
.button-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
.btn-cancel, .btn-keep { padding: 13px 26px; border-radius: 8px; font-family: var(--display); font-weight: 700; cursor: pointer; border: 2px solid var(--ink); box-shadow: var(--sh-sm); transition: transform 0.15s var(--ease), box-shadow 0.15s; }
.btn-cancel { background: var(--panel); color: var(--ink); }
.btn-keep { background: var(--accent); color: #fff; }
.btn-cancel:hover, .btn-keep:hover { transform: translate(-2px,-2px); box-shadow: var(--sh); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { margin-top: 64px; background: var(--panel-2); border-top: 3px solid var(--ink); padding: 56px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 42px; }
.footer-brand-img { height: 46px; margin-bottom: 16px; }
.footer-highlight { display: inline-block; margin-top: 12px; font-family: var(--display); font-weight: 800; font-size: 1rem; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); padding: 5px 12px; border-radius: 6px; box-shadow: var(--sh-sm); }
.footer-col h4 { font-family: var(--display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col ul a { color: var(--muted); font-size: 0.94rem; font-weight: 500; }
.footer-col ul a:hover { color: var(--accent-2); }
.partner-logos { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.partner-logo { height: 44px; width: auto; background: #fff; border: 2px solid var(--ink); border-radius: 6px; padding: 4px 8px; transition: transform 0.15s; }
.partner-logo:hover { transform: translate(-2px,-2px); }
.trustpilot { margin-top: 18px; color: var(--ink); font-weight: 700; font-size: 0.95rem; }
.trustpilot span { color: var(--accent); letter-spacing: 2px; }
.footer-legal { margin-top: 42px; padding-top: 26px; border-top: 2px dashed var(--ink); 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(23, 20, 13, 0.5); }
.popup-overlay.active, #cookieConsentPopup.active { display: flex; }
#cookieConsentPopup { align-items: flex-end; background: transparent; pointer-events: none; }
#cookieConsentPopup .popup-content { pointer-events: auto; max-width: 560px; margin-bottom: 22px; }
.popup-content { width: 100%; max-width: 440px; background: var(--panel); border: 2px solid var(--ink); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--sh-lg); animation: popIn 0.3s var(--ease); }
@keyframes popIn { from { opacity: 0; transform: translate(6px,10px); } to { opacity: 1; transform: none; } }
.popup-header h3 { font-family: var(--display); font-size: 1.35rem; margin-bottom: 14px; color: var(--ink); }
.popup-body { color: var(--muted); margin-bottom: 22px; }
.popup-body a { color: var(--accent-2); font-weight: 600; }
.age-icon { width: 78px; height: 78px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 10px; font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: #fff; background: var(--accent); border: 2px solid var(--ink); box-shadow: var(--sh-sm); }
.popup-footer { display: flex; gap: 12px; flex-wrap: wrap; }
.popup-btn { flex: 1; min-width: 140px; padding: 12px 18px; border-radius: 8px; font-family: var(--display); font-weight: 700; cursor: pointer; border: 2px solid var(--ink); box-shadow: var(--sh-sm); transition: transform 0.15s; }
.popup-btn:hover { transform: translate(-2px,-2px); box-shadow: var(--sh); }
.popup-btn.primary { background: var(--accent); color: #fff; }
.popup-btn.secondary { background: var(--panel); color: var(--ink); }

/* =========================================================
   SCROLL PROGRESS + REVEAL
   ========================================================= */
#scroll-progress { position: fixed; top: 0; left: 0; height: 4px; width: 0; z-index: 1100; background: var(--accent); border-bottom: 1px solid var(--ink); transition: width 0.08s linear; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s 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-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: 6px; padding: 16px 22px 24px;
        background: var(--bg); border-bottom: 2px solid var(--ink);
        transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform 0.3s var(--ease), opacity 0.3s;
    }
    .nav-menu.active { transform: none; opacity: 1; pointer-events: auto; }
    .nav-menu a { padding: 12px 16px; font-size: 1rem; border: 2px solid var(--ink); }
    .regulation-card, .about-intro { padding: 28px 20px; }
    .hero { padding: calc(var(--nav-h) + 40px) 0 44px; }
    .back-button { width: 44px; height: 44px; left: 14px; bottom: 14px; }
    .casino-card, .btn, .casino-cta { box-shadow: var(--sh-sm); }
}
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    .reveal { opacity: 1; transform: none; }
    #scroll-progress { display: none; }
}
