:root {
    --bg-primary: #1a0a2e;
    --bg-secondary: #2d1b4e;
    --bg-card: #2a1545;
    --bg-card-hover: #3a2060;
    --accent-gold: #f5a623;
    --accent-orange: #ff8c00;
    --accent-purple: #7b3fa0;
    --accent-purple-light: #9b59b6;
    --text-primary: #ffffff;
    --text-secondary: #c4b5d4;
    --text-muted: #8a7a9e;
    --border-color: #3d2a5c;
    --gradient-hero: linear-gradient(135deg, #1a0a2e 0%, #3d1a6e 50%, #1a0a2e 100%);
    --gradient-gold: linear-gradient(135deg, #f5a623, #ff8c00);
    --gradient-purple: linear-gradient(135deg, #7b3fa0, #5b2d8e);
    --gradient-card: linear-gradient(180deg, #2d1b4e, #1a0a2e);
    --shadow-gold: 0 4px 20px rgba(245, 166, 35, 0.3);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-orange);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.text-gold {
    color: var(--accent-gold);
}

.text-purple {
    color: var(--accent-purple-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(58, 32, 96, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 40px;
    width: auto;
    mix-blend-mode: screen;
}

.footer-brand img {
    mix-blend-mode: screen;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background: var(--bg-card);
}

.nav-cta {
    background: var(--gradient-gold) !important;
    color: #1a0a2e !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(123, 63, 160, 0.3) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(245, 166, 35, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    background: linear-gradient(135deg, #ffffff, #f5a623);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.hero h1 span {
    -webkit-text-fill-color: var(--accent-gold);
    font-weight: 800;
}

.hero-text {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 24px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #1a0a2e;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
    color: #1a0a2e;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: rgba(245, 166, 35, 0.1);
    transform: translateY(-3px);
    color: var(--accent-gold);
}

.section {
    padding: 60px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-header p {
    max-width: 700px;
    margin: 16px auto 0;
    font-size: 1.05rem;
}

.section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.banner-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.banner-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.banner-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 30px 0;
}

.banner-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 166, 35, 0.2);
    pointer-events: none;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.card {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(245, 166, 35, 0.3);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a0a2e;
}

.card h3 {
    color: var(--text-primary);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-list {
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 24px 0;
    box-shadow: var(--shadow-card);
}

.info-table thead th {
    background: var(--gradient-gold);
    color: #1a0a2e;
    padding: 14px 20px;
    font-weight: 700;
    text-align: left;
    font-size: 0.95rem;
}

.info-table tbody tr {
    transition: var(--transition);
}

.info-table tbody tr:nth-child(odd) {
    background: var(--bg-card);
}

.info-table tbody tr:nth-child(even) {
    background: var(--bg-secondary);
}

.info-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.info-table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.info-table td:first-child {
    color: var(--accent-gold);
    font-weight: 600;
    white-space: nowrap;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 28px;
    background: var(--gradient-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accordion {
    margin: 24px 0;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: rgba(245, 166, 35, 0.3);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--accent-gold);
}

.accordion-header i {
    transition: var(--transition);
    color: var(--accent-gold);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
}

.accordion-body-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.bonus-highlight {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.bonus-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.bonus-amount {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple-light);
}

.footer {
    background: linear-gradient(180deg, #3a2060, #2d1b4e);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer h4 {
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-badges span {
    background: var(--bg-card);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.age-badge {
    background: #c0392b !important;
    color: white !important;
    border-color: #c0392b !important;
    font-weight: 700;
}

@keyframes float-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: float-up linear infinite;
    opacity: 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a0a2e;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 10, 46, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    z-index: 9999;
    border-top: 1px solid var(--border-color);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-inner p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-btn {
    background: var(--gradient-gold);
    color: #1a0a2e;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 8px;
}


@media (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-col.reverse {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: rgba(58, 32, 96, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 30px;
        gap: 2px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-cta {
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        padding: 10px 16px;
    }

    .nav-logo img {
        height: 34px;
    }

    .hero {
        min-height: auto;
        padding: 85px 16px 40px;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
        margin-bottom: 12px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 14px;
        margin-bottom: 12px;
    }

    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .section {
        padding: 40px 0;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.9rem;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-item {
        padding: 18px 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 20px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .info-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        margin: 16px 0;
    }

    .info-table thead th {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .info-table td {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .info-table td:first-child {
        white-space: nowrap;
        min-width: 140px;
    }

    .banner-wrapper {
        margin: 16px 0;
        border-radius: var(--radius);
    }

    .banner-img {
        border-radius: var(--radius);
    }

    .bonus-highlight {
        padding: 24px 16px;
        margin: 20px 0;
        border-radius: var(--radius);
    }

    .bonus-amount {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .feature-list li {
        font-size: 0.88rem;
        padding: 8px 0;
        gap: 10px;
    }

    .feature-list li i {
        font-size: 0.95rem;
    }

    .two-col {
        gap: 24px;
    }

    .accordion-header {
        padding: 14px 16px;
        font-size: 0.92rem;
    }

    .accordion-body-inner {
        padding: 0 16px 16px;
        font-size: 0.88rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .footer {
        padding: 40px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand p {
        font-size: 0.82rem;
    }

    .footer h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom p {
        font-size: 0.72rem;
    }

    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-inner p {
        font-size: 0.78rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 400px) {
    .hero {
        padding: 80px 12px 32px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 0.85rem;
    }

    .container {
        padding: 0 12px;
    }

    .section {
        padding: 32px 0;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stats-bar {
        gap: 8px;
    }

    .stat-item {
        padding: 14px 8px;
    }

    .card {
        padding: 16px;
    }

    .bonus-amount {
        font-size: 1.4rem;
    }

    .info-table thead th,
    .info-table td {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .accordion-header {
        padding: 12px;
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.68rem;
    }

    .footer-badges span {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

noscript ~ * .reveal,
.no-js .reveal {
    opacity: 1;
    transform: none;
}

.icon-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
