 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background: #0a0a0f;
            color: #ece8e0;
            line-height: 1.5;
        }
        .wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        /* header */
        .header {
            padding: 1.5rem 0;
            border-bottom: 1px solid #2a2a35;
        }
        .header-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .brand-logo {
            background: #d4af37;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            font-family: 'Rajdhani', sans-serif;
            color: #0a0a0f;
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .brand-main {
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #f5e7c8;
        }
        .brand-sub {
            font-size: 0.8rem;
            opacity: 0.8;
            color: #b8aa7a;
        }
        .header-badge {
            background: #1e1e2a;
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #d4af37;
            border: 1px solid #d4af37;
        }
        /* hero */
        .hero {
            padding: 4rem 0 3rem;
            text-align: center;
        }
        .hero-label {
            background: #1e1e2a;
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            color: #d4af37;
        }
        .hero-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 1.2rem;
            background: linear-gradient(135deg, #f5e7c8, #d4af37);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-text {
            max-width: 800px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
            color: #cbc6b5;
        }
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2rem;
        }
        .hero-card {
            background: #1a1a2a;
            border-radius: 24px;
            padding: 1.2rem 1.8rem;
            min-width: 200px;
            border: 1px solid #2a2a35;
        }
        .hero-card-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #b8aa7a;
        }
        .hero-card-value {
            font-weight: 600;
            font-size: 1rem;
            margin-top: 0.3rem;
            color: #f5e7c8;
        }
        /* sections */
        .section {
            padding: 4rem 0;
            border-top: 1px solid #2a2a35;
        }
        .section-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.8rem;
            color: #d4af37;
        }
        .section-sub {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 2.5rem;
            font-size: 1rem;
            color: #cbc6b5;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .card {
            background: #12121c;
            border-radius: 28px;
            padding: 1.8rem;
            transition: transform 0.2s ease, box-shadow 0.2s;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            border: 1px solid #2a2a35;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
            border-color: #d4af37;
        }
        .card-kicker {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #d4af37;
            margin-bottom: 0.5rem;
        }
        .card-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #f5e7c8;
        }
        .card p {
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: #b8aa7a;
        }
        .card ul {
            list-style: none;
            margin-top: 1rem;
        }
        .card li {
            padding-left: 1.2rem;
            position: relative;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            color: #cbc6b5;
        }
        .card li::before {
            content: "▹";
            position: absolute;
            left: 0;
            color: #d4af37;
        }
        /* footer */
        footer {
            border-top: 1px solid #2a2a35;
            padding: 3rem 0 2rem;
            margin-top: 1rem;
        }
        .footer-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.6rem;
            text-align: center;
            margin-bottom: 2rem;
            color: #d4af37;
        }
        .footer-cols {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .footer-cols p {
            flex: 1;
            min-width: 250px;
            font-size: 0.85rem;
            line-height: 1.6;
            color: #b8aa7a;
        }
        /* cookie overlay */
        #age-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 5, 10, 0.98);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            backdrop-filter: blur(8px);
        }
        #age-card {
            max-width: 500px;
            background: #12121c;
            border-radius: 32px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 20px 35px rgba(0,0,0,0.5);
            border: 1px solid #d4af37;
        }
        #age-pill {
            background: #1e1e2a;
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.7rem;
            margin-bottom: 1rem;
            color: #d4af37;
        }
        #age-overlay-heading {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.8rem;
            color: #f5e7c8;
        }
        #age-title {
            font-weight: 500;
            margin: 0.5rem 0;
            font-size: 1rem;
        }
        #age-text {
            font-size: 0.85rem;
            margin: 1rem 0;
            line-height: 1.5;
            color: #cbc6b5;
        }
        #age-ok {
            background: #d4af37;
            border: none;
            color: #0a0a0f;
            padding: 0.7rem 2rem;
            font-weight: bold;
            border-radius: 60px;
            font-size: 1rem;
            cursor: pointer;
            margin-top: 0.5rem;
            transition: 0.2s;
        }
        #age-ok:hover {
            background: #e5c45e;
        }
        #age-note {
            font-size: 0.7rem;
            margin-top: 1rem;
            color: #8a7a55;
        }
        @media (max-width: 700px) {
            .hero-title { font-size: 2.4rem; }
            .section-title { font-size: 1.8rem; }
            .card-title { font-size: 1.4rem; }
            .header-row { flex-direction: column; gap: 0.8rem; text-align: center; }
        }