 body {
            margin: 0;
            background: #2d1b4a;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: #faf5e9;
        }

        .wrap {
            max-width: 920px;
            margin: 0 auto;
            padding: 24px 16px 40px;
        }

        #age-overlay {
            position: fixed;
            inset: 0;
            background: rgba(29, 17, 43, 0.94);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 99999;
            box-sizing: border-box;
        }

        #age-card {
            width: 100%;
            max-width: 380px;
            background: linear-gradient(135deg, #2d1b4a 0%, #4a2e6b 100%);
            border-radius: 22px;
            border: 1px solid #d4af37;
            padding: 26px;
            color: #faf5e9;
            text-align: left;
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.85);
            animation: fadeIn 0.4s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.94);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        #age-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid #e6c87e;
            font-size: 11px;
            letter-spacing: .14em;
            text-transform: uppercase;
            margin-bottom: 12px;
            color: #f5e7c8;
        }

        #age-pill span {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #d4af37;
        }

        #age-overlay-heading {
            font-size: 22px;
            font-weight: 800;
            margin: 0 0 10px;
            color: #f5e7c8;
        }

        #age-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        #age-text {
            font-size: 14px;
            line-height: 1.55;
            margin-bottom: 20px;
            color: #d9cfb5;
        }

        #age-ok {
            width: 100%;
            display: inline-block;
            text-align: center;
            padding: 22px;
            border: none;
            border-radius: 18px;
            cursor: pointer;
            font-size: 19px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .16em;
            color: #2d1b4a;
            background: linear-gradient(135deg, #d4af37, #b8942c);
            box-shadow: 0 0 22px rgba(212, 175, 55, 0.75);
            animation: pulse 1.8s infinite ease-in-out;
            transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 16px rgba(212, 175, 55, .55);
            }
            50% {
                transform: scale(1.03);
                box-shadow: 0 0 26px rgba(184, 148, 44, .9);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 16px rgba(212, 175, 55, .55);
            }
        }

        #age-ok:hover {
            transform: scale(1.05);
            filter: brightness(1.08);
            box-shadow: 0 0 34px rgba(184, 148, 44, 1);
        }

        #age-note {
            margin-top: 12px;
            font-size: 11px;
            color: #b59e7a;
        }

        /* HEADER FIRST */
        .header {
            background: linear-gradient(135deg, #2d1b4a 0%, #3f2560 100%);
            border: 1px solid #d4af37;
            border-radius: 16px;
            padding: 18px 22px;
            color: #faf5e9;
            margin-bottom: 24px;
        }

        .header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

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

        .brand-logo {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: radial-gradient(circle at 25% 0, #d4af37, #b8942c, #9e7e2a);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2d1b4a;
            font-weight: 800;
            font-size: 16px;
        }

        .brand-main {
            font-size: 14px;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .brand-sub {
            font-size: 11px;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: #b59e7a;
        }

        .header-badge {
            padding: 6px 18px;
            border-radius: 999px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid #d4af37;
            color: #f5e7c8;
            font-size: 11px;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        /* HERO SECOND */
        .hero {
            background: radial-gradient(circle at top, #4a2e6b 0%, #352155 45%, #2d1b4a 115%);
            border-radius: 18px;
            padding: 26px 24px;
            border: 1px solid #d4af37;
            margin-bottom: 26px;
        }

        .hero-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .2em;
            color: #d4af37;
            margin-bottom: 10px;
        }

        h1.hero-title {
            font-size: 28px;
            margin-bottom: 10px;
            color: #faf5e9;
        }

        .hero-text {
            font-size: 15px;
            color: #d9cfb5;
            max-width: 650px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .hero-card {
            background: rgba(74, 46, 107, 0.7);
            border-radius: 12px;
            padding: 12px;
            border: 1px solid rgba(212, 175, 55, 0.7);
            font-size: 13px;
        }

        .hero-card-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .12em;
            color: #f5e7c8;
            margin-bottom: 3px;
        }

        .hero-card-value {
            font-size: 14px;
            font-weight: 600;
            color: #faf5e9;
        }

        @media (max-width: 720px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }
        }

        /* SECTIONS */
        .section {
            background: rgba(46, 28, 66, 0.8);
            border-radius: 16px;
            padding: 22px;
            border: 1px solid #d4af37;
            margin-bottom: 26px;
        }

        .section-title {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: .14em;
            margin-bottom: 8px;
            color: #f5e7c8;
        }

        .section-sub {
            font-size: 14px;
            color: #b59e7a;
            max-width: 640px;
            margin-bottom: 14px;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .card {
            background: rgba(61, 37, 84, 0.6);
            border-radius: 16px;
            padding: 16px;
            border: 1px solid #d4af37;
            font-size: 14px;
        }

        .card-kicker {
            font-size: 11px;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: .12em;
            margin-bottom: 6px;
        }

        .card-title {
            font-size: 15px;
            font-weight: 600;
            color: #faf5e9;
            margin-bottom: 6px;
        }

        .card p, .card li {
            color: #d9cfb5;
        }

        .card ul {
            padding-left: 20px;
            margin-top: 6px;
        }

        @media (max-width: 880px) {
            .card-grid {
                grid-template-columns: 1fr;
            }
        }

        /* FOOTER */
        footer {
            background: linear-gradient(135deg, #2d1b4a 0%, #3f2560 100%);
            border: 1px solid #d4af37;
            padding: 24px;
            border-radius: 16px;
            font-size: 12px;
            color: #d9cfb5;
            margin-bottom: 40px;
        }

        .footer-title {
            font-size: 11px;
            letter-spacing: .14em;
            text-transform: uppercase;
            margin-bottom: 12px;
            color: #f5e7c8;
        }

        .footer-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        @media (max-width: 720px) {
            .footer-cols {
                grid-template-columns: 1fr;
            }
        }