
:root {
            --bg: #070807;
            --surface: #10110f;
            --surface-2: #171814;
            --gold: #d8b24b;
            --gold-light: #f3d98f;
            --gold-dark: #92711f;
            --text: #f7f4ea;
            --muted: #9d9d96;
            --line: rgba(255,255,255,.10);
            --success: #6fd39b;
            --shadow: 0 24px 80px rgba(0,0,0,.42);
        }

        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            color: var(--text);
            background:
                radial-gradient(circle at 85% 4%, rgba(216,178,75,.13), transparent 23rem),
                radial-gradient(circle at 8% 32%, rgba(216,178,75,.07), transparent 25rem),
                var(--bg);
            font-family: "DM Sans", sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        body.modal-open { overflow: hidden; }
        button, input, select { font: inherit; }
        button, a { -webkit-tap-highlight-color: transparent; }
        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        .container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
        .section { padding: 96px 0; }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold-light);
            font-size: .76rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
        }
        .eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
        .section-title {
            margin: 12px 0 0;
            max-width: 700px;
            font: 800 clamp(2rem, 4vw, 3.35rem)/1.08 "Manrope", sans-serif;
            letter-spacing: -.045em;
        }
        .section-copy { max-width: 570px; margin: 18px 0 0; color: var(--muted); font-size: 1rem; }
        .gold-text {
            background: linear-gradient(120deg, #fff2bd 5%, #d8b24b 48%, #8f6a19 95%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .icon { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }

        .topbar {
            padding: 9px 20px;
            border-bottom: 1px solid var(--line);
            color: #d2d0c7;
            background: rgba(216,178,75,.055);
            text-align: center;
            font-size: .76rem;
            letter-spacing: .03em;
        }
        .topbar strong { color: var(--gold-light); }
        .header {
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid transparent;
            background: rgba(7,8,7,.72);
            backdrop-filter: blur(20px);
            transition: .25s ease;
        }
        .header.scrolled { border-color: var(--line); box-shadow: 0 12px 35px rgba(0,0,0,.2); }
        .navbar { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
        .brand { display: inline-flex; align-items: center; gap: 11px; font: 800 1.45rem "Manrope", sans-serif; letter-spacing: -.04em; }
        .brand-mark {
            width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(216,178,75,.55);
            border-radius: 11px; background: linear-gradient(145deg, rgba(216,178,75,.20), rgba(216,178,75,.04));
            color: var(--gold-light); box-shadow: inset 0 1px 0 rgba(255,255,255,.13);
        }
        .brand-mark svg { width: 23px; }
        .navlinks { display: flex; align-items: center; gap: 30px; color: #c4c3bd; font-size: .9rem; font-weight: 600; }
        .navlinks a { position: relative; transition: color .2s ease; }
        .navlinks a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .2s ease; }
        .navlinks a:hover { color: var(--gold-light); }
        .navlinks a:hover::after { right: 0; }
        .nav-actions { display: flex; align-items: center; gap: 10px; }
        .location-pill { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .78rem; padding: 10px 12px; }
        .btn {
            border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
            min-height: 46px; padding: 0 19px; border-radius: 13px; font-weight: 700; font-size: .88rem; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
        }
        .btn:hover { transform: translateY(-2px); }
        .btn-primary { color: #16150f; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 10px 26px rgba(216,178,75,.16); }
        .btn-primary:hover { background: linear-gradient(135deg, #ffedb4, #e5bd4e); }
        .btn-ghost { color: var(--text); background: rgba(255,255,255,.045); border: 1px solid var(--line); }
        .menu-btn { display: none; width: 45px; padding: 0; color: var(--text); }
        .mobile-menu { display: none; padding: 0 0 18px; }
        .mobile-menu.open { display: grid; }
        .mobile-menu a { padding: 12px 3px; border-bottom: 1px solid var(--line); color: #d2d0ca; font-weight: 600; }

        .hero { min-height: 690px; display: grid; align-items: center; padding: 72px 0 88px; position: relative; }
        .hero::after {
            content: ""; position: absolute; right: -160px; top: 20px; width: 520px; height: 520px; border: 1px solid rgba(216,178,75,.09); border-radius: 50%;
            box-shadow: 0 0 0 70px rgba(216,178,75,.025), 0 0 0 140px rgba(216,178,75,.018); pointer-events: none;
        }
        .hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 76px; align-items: center; position: relative; z-index: 1; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid rgba(216,178,75,.28);
            border-radius: 999px; background: rgba(216,178,75,.07); color: var(--gold-light); font-size: .75rem; font-weight: 700;
        }
        .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(216,178,75,.5); animation: pulse 2s infinite; }
        @keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(216,178,75,0); } 100% { box-shadow: 0 0 0 0 rgba(216,178,75,0); } }
        .hero h1 { margin: 22px 0 0; max-width: 720px; font: 800 clamp(3.35rem, 6vw, 5.8rem)/.98 "Manrope", sans-serif; letter-spacing: -.065em; }
        .hero-copy { max-width: 640px; margin: 25px 0 0; color: #aaa9a3; font-size: 1.08rem; line-height: 1.75; }
        .search-panel {
            max-width: 640px; margin-top: 34px; display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 8px;
            border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: rgba(18,19,16,.88); box-shadow: var(--shadow);
        }
        .search-field { display: flex; align-items: center; gap: 11px; min-width: 0; padding-left: 10px; color: var(--muted); }
        .search-field input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--text); background: transparent; }
        .search-field input::placeholder { color: #777871; }
        .hero-proof { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 23px; color: #aaa9a3; font-size: .8rem; }
        .proof-item { display: inline-flex; align-items: center; gap: 8px; }
        .proof-item svg { color: var(--gold); }

        .hero-visual { position: relative; padding: 13px; }
        .hero-visual::before { content: ""; position: absolute; inset: -8px 25px 35px -8px; border: 1px solid rgba(216,178,75,.28); border-radius: 31px; transform: rotate(-2.5deg); }
        .featured-card { position: relative; min-height: 515px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: var(--surface); box-shadow: 0 38px 100px rgba(0,0,0,.5); }
        .featured-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
        .featured-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,4,3,.98) 5%, rgba(5,6,5,.62) 42%, rgba(5,6,5,.08) 74%); }
        .featured-content { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; }
        .tag { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 999px; color: var(--gold-light); background: rgba(7,8,7,.72); border: 1px solid rgba(216,178,75,.35); font-size: .72rem; font-weight: 700; backdrop-filter: blur(12px); }
        .featured-content h2 { margin: 15px 0 0; font: 800 2.15rem/1.08 "Manrope", sans-serif; letter-spacing: -.045em; }
        .featured-meta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 15px 22px; color: #d0cec6; font-size: .82rem; }
        .featured-meta span { display: inline-flex; align-items: center; gap: 7px; }
        .featured-bottom { margin-top: 23px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
        .price-label { color: #a4a39c; font-size: .72rem; }
        .price-value { margin-top: 2px; color: var(--gold-light); font-size: 1.18rem; font-weight: 800; }
        .date-tile {
            position: absolute; z-index: 3; top: 28px; left: 28px; width: 70px; padding: 11px 8px 10px; border-radius: 16px; background: rgba(8,9,8,.84); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(15px); text-align: center;
        }
        .date-tile strong { display: block; color: var(--gold-light); font: 800 1.8rem/1 "Manrope", sans-serif; }
        .date-tile span { color: #c5c3bc; font-size: .68rem; letter-spacing: .15em; }
        .floating-stat {
            position: absolute; z-index: 4; right: -22px; top: 76px; min-width: 150px; padding: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px;
            background: rgba(19,20,17,.9); backdrop-filter: blur(15px); box-shadow: 0 20px 50px rgba(0,0,0,.35);
        }
        .avatars { display: flex; margin-bottom: 9px; }
        .avatar { width: 27px; height: 27px; display: grid; place-items: center; margin-left: -6px; border: 2px solid #1a1b18; border-radius: 50%; color: #14140f; background: var(--gold-light); font-size: .62rem; font-weight: 800; }
        .avatar:first-child { margin-left: 0; }
        .floating-stat strong { display: block; font-size: .83rem; }
        .floating-stat span { color: var(--muted); font-size: .68rem; }

        .trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
        .trust-item { padding: 28px 25px; border-right: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
        .trust-item:last-child { border-right: 0; }
        .trust-icon { width: 43px; height: 43px; flex: 0 0 43px; display: grid; place-items: center; border-radius: 12px; color: var(--gold-light); background: rgba(216,178,75,.08); }
        .trust-item strong { display: block; font-size: .9rem; }
        .trust-item span { display: block; margin-top: 3px; color: var(--muted); font-size: .72rem; }

        .section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 38px; }
        .section-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-light); font-size: .85rem; font-weight: 700; }
        .section-link:hover svg { transform: translateX(4px); }
        .section-link svg { transition: transform .2s ease; }

        .category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }
        .category-card {
            position: relative; overflow: hidden; min-height: 170px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); cursor: pointer; transition: transform .25s ease, border-color .25s ease, background .25s ease;
        }
        .category-card::after { content: ""; position: absolute; right: -34px; bottom: -52px; width: 115px; height: 115px; border: 1px solid rgba(216,178,75,.10); border-radius: 50%; transition: .25s ease; }
        .category-card:hover, .category-card.active { transform: translateY(-5px); border-color: rgba(216,178,75,.48); background: linear-gradient(145deg, rgba(216,178,75,.12), rgba(255,255,255,.02)); }
        .category-card:hover::after { transform: scale(1.2); border-color: rgba(216,178,75,.25); }
        .category-icon { width: 47px; height: 47px; display: grid; place-items: center; border: 1px solid rgba(216,178,75,.22); border-radius: 14px; color: var(--gold-light); background: rgba(216,178,75,.08); }
        .category-card h3 { margin: 26px 0 3px; font: 700 1rem "Manrope", sans-serif; }
        .category-card p { margin: 0; color: var(--muted); font-size: .74rem; }

        .events-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent); }
        .filters { display: flex; flex-wrap: wrap; gap: 8px; }
        .filter-btn { min-height: 39px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; color: #b9b8b1; background: transparent; cursor: pointer; font-size: .78rem; font-weight: 700; transition: .2s ease; }
        .filter-btn:hover, .filter-btn.active { border-color: rgba(216,178,75,.5); color: #19170f; background: var(--gold); }
        .events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
        .event-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
        .event-card:hover { transform: translateY(-7px); border-color: rgba(216,178,75,.45); box-shadow: 0 24px 60px rgba(0,0,0,.28); }
        .event-image { position: relative; aspect-ratio: 16 / 10.2; overflow: hidden; }
        .event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
        .event-card:hover .event-image img { transform: scale(1.055); }
        .event-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,5,4,.72), transparent 60%); }
        .event-badge { position: absolute; z-index: 2; top: 15px; left: 15px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(5,6,5,.72); color: var(--gold-light); backdrop-filter: blur(12px); font-size: .66rem; font-weight: 700; }
        .event-date { position: absolute; z-index: 2; right: 15px; bottom: 15px; display: flex; align-items: center; gap: 8px; color: #efede5; font-size: .72rem; }
        .event-body { padding: 21px; }
        .event-category { color: var(--gold); font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
        .event-body h3 { min-height: 52px; margin: 9px 0 0; font: 700 1.18rem/1.35 "Manrope", sans-serif; letter-spacing: -.025em; }
        .event-location { margin-top: 14px; display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .77rem; }
        .event-footer { margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
        .event-price span { display: block; color: var(--muted); font-size: .66rem; }
        .event-price strong { color: var(--gold-light); font-size: .98rem; }
        .card-link { display: inline-flex; align-items: center; gap: 6px; border: 0; color: #e9e5d9; background: transparent; cursor: pointer; font-size: .75rem; font-weight: 700; }
        .card-link:hover { color: var(--gold-light); }
        .empty-state { display: none; grid-column: 1 / -1; padding: 45px; border: 1px dashed rgba(216,178,75,.25); border-radius: 20px; color: var(--muted); text-align: center; }

        .experience-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: center; }
        .experience-visual { position: relative; min-height: 500px; }
        .experience-main { position: absolute; left: 0; top: 0; width: 78%; height: 430px; object-fit: cover; border: 1px solid var(--line); border-radius: 25px; }
        .experience-small { position: absolute; right: 0; bottom: 0; width: 55%; height: 240px; object-fit: cover; border: 8px solid var(--bg); border-radius: 22px; }
        .experience-score { position: absolute; left: 25px; bottom: 32px; padding: 17px 19px; border: 1px solid rgba(216,178,75,.3); border-radius: 16px; background: rgba(13,14,12,.9); backdrop-filter: blur(15px); box-shadow: 0 18px 45px rgba(0,0,0,.35); }
        .score-stars { color: var(--gold-light); letter-spacing: .13em; }
        .experience-score strong { display: block; margin-top: 6px; font-size: .84rem; }
        .experience-score span { color: var(--muted); font-size: .68rem; }
        .feature-list { margin-top: 33px; display: grid; gap: 17px; }
        .feature-item { display: grid; grid-template-columns: 47px 1fr; gap: 15px; align-items: start; }
        .feature-number { width: 47px; height: 47px; display: grid; place-items: center; border: 1px solid rgba(216,178,75,.24); border-radius: 14px; color: var(--gold-light); background: rgba(216,178,75,.07); font: 800 .78rem "Manrope", sans-serif; }
        .feature-item h3 { margin: 2px 0 4px; font: 700 .96rem "Manrope", sans-serif; }
        .feature-item p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }

        .steps { border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
        .steps-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        .step-card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 21px; background: rgba(7,8,7,.7); }
        .step-card:not(:last-child)::after { content: ""; position: absolute; top: 51px; right: -26px; width: 26px; border-top: 1px dashed rgba(216,178,75,.35); }
        .step-top { display: flex; align-items: center; justify-content: space-between; }
        .step-icon { width: 49px; height: 49px; display: grid; place-items: center; border-radius: 15px; color: var(--gold-light); background: rgba(216,178,75,.09); }
        .step-count { color: rgba(216,178,75,.35); font: 800 2.7rem/1 "Manrope", sans-serif; }
        .step-card h3 { margin: 24px 0 6px; font: 700 1.02rem "Manrope", sans-serif; }
        .step-card p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.65; }

        .promo { padding: 84px 0; }
        .promo-card {
            position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 52px;
            border: 1px solid rgba(216,178,75,.34); border-radius: 27px; background:
                linear-gradient(120deg, rgba(216,178,75,.16), rgba(216,178,75,.035) 58%),
                var(--surface);
        }
        .promo-card::after { content: "D"; position: absolute; right: 4%; top: 50%; transform: translateY(-50%); color: rgba(216,178,75,.055); font: 800 15rem/1 "Manrope", sans-serif; }
        .promo-content { position: relative; z-index: 1; }
        .promo-card h2 { margin: 12px 0 0; max-width: 690px; font: 800 clamp(2rem, 4vw, 3.25rem)/1.08 "Manrope", sans-serif; letter-spacing: -.045em; }
        .promo-card p { max-width: 620px; margin: 15px 0 0; color: #b5b3aa; }
        .promo-action { position: relative; z-index: 1; min-width: 174px; }

        .faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 78px; align-items: start; }
        .faq-list { display: grid; gap: 10px; }
        .faq-item { border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.022); }
        .faq-question { width: 100%; min-height: 62px; padding: 0 20px; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--text); background: transparent; cursor: pointer; text-align: left; font-weight: 700; }
        .faq-answer { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .28s ease; }
        .faq-answer p { margin: 0; padding: 0 20px 19px; font-size: .82rem; line-height: 1.7; }
        .faq-item.open .faq-answer { max-height: 150px; }
        .faq-plus { color: var(--gold-light); transition: transform .25s ease; }
        .faq-item.open .faq-plus { transform: rotate(45deg); }

        footer { margin-top: 74px; border-top: 1px solid var(--line); background: #090a08; }
        .footer-grid { padding: 62px 0 45px; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 54px; }
        .footer-about p { max-width: 335px; margin: 18px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.75; }
        .socials { margin-top: 23px; display: flex; gap: 9px; }
        .social-btn { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; color: #d3d1c8; transition: .2s ease; }
        .social-btn:hover { border-color: rgba(216,178,75,.45); color: var(--gold-light); transform: translateY(-2px); }
        .footer-col h3 { margin: 0 0 17px; color: #efede5; font-size: .82rem; }
        .footer-col a { display: block; width: fit-content; margin-top: 10px; color: var(--muted); font-size: .77rem; }
        .footer-col a:hover { color: var(--gold-light); }
        .footer-bottom { padding: 21px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: #73746e; font-size: .7rem; }

        .modal {
            position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 20px; background: rgba(0,0,0,.74); backdrop-filter: blur(10px);
        }
        .modal.open { display: grid; animation: modalFade .2s ease; }
        @keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
        .modal-dialog { width: min(960px, 100%); max-height: calc(100vh - 40px); overflow: auto; border: 1px solid rgba(255,255,255,.14); border-radius: 25px; background: #10110f; box-shadow: 0 35px 120px rgba(0,0,0,.65); animation: modalUp .25s ease; }
        @keyframes modalUp { from { opacity: 0; transform: translateY(20px) scale(.985); } to { opacity: 1; transform: none; } }
        .modal-top { position: sticky; top: 0; z-index: 4; display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border-bottom: 1px solid var(--line); background: rgba(16,17,15,.95); backdrop-filter: blur(15px); }
        .modal-top strong { font-family: "Manrope", sans-serif; }
        .close-btn { width: 40px; height: 40px; padding: 0; border-radius: 12px; }
        .modal-grid { display: grid; grid-template-columns: 1.05fr .95fr; }
        .modal-event { padding: 25px; border-right: 1px solid var(--line); }
        .modal-image { height: 265px; overflow: hidden; border-radius: 19px; }
        .modal-image img { width: 100%; height: 100%; object-fit: cover; }
        .modal-event h2 { margin: 21px 0 0; font: 800 1.75rem/1.18 "Manrope", sans-serif; letter-spacing: -.035em; }
        .modal-meta { margin-top: 18px; display: grid; gap: 10px; color: #bbb9b1; font-size: .79rem; }
        .modal-meta span { display: flex; gap: 9px; align-items: center; }
        .modal-description { margin: 20px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.72; }
        .ticket-panel { padding: 27px; }
        .ticket-panel h3 { margin: 0; font: 700 1.2rem "Manrope", sans-serif; }
        .ticket-panel > p { margin: 6px 0 0; color: var(--muted); font-size: .75rem; }
        .ticket-list { margin-top: 21px; display: grid; gap: 10px; }
        .ticket-option { position: relative; display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; cursor: pointer; transition: .2s ease; }
        .ticket-option:hover, .ticket-option.selected { border-color: rgba(216,178,75,.55); background: rgba(216,178,75,.06); }
        .ticket-option input { accent-color: var(--gold); }
        .ticket-name strong { display: block; font-size: .82rem; }
        .ticket-name span { color: var(--success); font-size: .65rem; }
        .ticket-price { color: var(--gold-light); font-size: .79rem; font-weight: 700; }
        .quantity-row { margin-top: 20px; display: flex; justify-content: space-between; align-items: center; }
        .quantity-row span { font-size: .78rem; font-weight: 700; }
        .quantity-control { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
        .qty-btn { width: 38px; height: 38px; border: 0; color: var(--text); background: rgba(255,255,255,.035); cursor: pointer; }
        .qty-value { width: 42px; text-align: center; font-weight: 700; font-size: .83rem; }
        .order-summary { margin-top: 21px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: rgba(0,0,0,.22); }
        .summary-line { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: .72rem; }
        .summary-line + .summary-line { margin-top: 9px; }
        .summary-line.total { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--text); font-size: .84rem; font-weight: 700; }
        .summary-line.total strong { color: var(--gold-light); font-size: 1rem; }
        .checkout-btn { width: 100%; margin-top: 14px; }
        .demo-note { margin-top: 10px; color: #777871; font-size: .66rem; text-align: center; }

        /* Readability override khusus modal pemilihan tiket. */
        [data-ticket-modal] .modal-dialog,
        [data-ticket-modal] .modal-top strong,
        [data-ticket-modal] .modal-event h2,
        [data-ticket-modal] .modal-meta,
        [data-ticket-modal] .modal-description,
        [data-ticket-modal] .ticket-panel h3,
        [data-ticket-modal] .ticket-panel > p,
        [data-ticket-modal] .ticket-name strong,
        [data-ticket-modal] .quantity-row > span,
        [data-ticket-modal] .qty-btn,
        [data-ticket-modal] .qty-value,
        [data-ticket-modal] .summary-line,
        [data-ticket-modal] .summary-line.total,
        [data-ticket-modal] .demo-note {
            color: #fff;
        }

        [data-ticket-modal] .modal-description,
        [data-ticket-modal] .ticket-panel > p,
        [data-ticket-modal] .summary-line,
        [data-ticket-modal] .demo-note {
            color: rgba(255,255,255,.82);
        }

        .toast { position: fixed; z-index: 150; right: 22px; bottom: 22px; max-width: 330px; padding: 15px 17px; border: 1px solid rgba(216,178,75,.35); border-radius: 14px; background: rgba(19,20,17,.96); box-shadow: 0 20px 60px rgba(0,0,0,.4); transform: translateY(24px); opacity: 0; pointer-events: none; transition: .25s ease; }
        .toast.show { transform: none; opacity: 1; }
        .toast strong { display: block; color: var(--gold-light); font-size: .8rem; }
        .toast span { display: block; margin-top: 3px; color: var(--muted); font-size: .7rem; }

        @media (max-width: 1020px) {
            .navlinks, .location-pill { display: none; }
            .menu-btn { display: inline-flex; }
            .hero-grid { grid-template-columns: 1fr; gap: 55px; }
            .hero-copy { max-width: 760px; }
            .hero-visual { width: min(680px, 100%); margin-inline: auto; }
            .floating-stat { right: 0; }
            .trust-grid { grid-template-columns: repeat(2, 1fr); }
            .trust-item:nth-child(2) { border-right: 0; }
            .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
            .category-grid { grid-template-columns: repeat(3, 1fr); }
            .events-grid { grid-template-columns: repeat(2, 1fr); }
            .experience-grid { grid-template-columns: 1fr; }
            .experience-visual { width: min(680px, 100%); }
            .faq-grid { grid-template-columns: 1fr; gap: 35px; }
            .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
            .footer-col:last-child { grid-column: 2 / 3; }
        }

        @media (max-width: 700px) {
            .container { width: min(100% - 28px, 1180px); }
            .section { padding: 72px 0; }
            .topbar { font-size: .68rem; }
            .navbar { min-height: 68px; }
            .nav-actions .btn-primary { display: none; }
            .hero { padding: 55px 0 72px; min-height: auto; }
            .hero h1 { font-size: clamp(2.75rem, 14vw, 4.15rem); }
            .hero-copy { font-size: .96rem; }
            .search-panel { grid-template-columns: 1fr; padding: 10px; }
            .search-field { min-height: 46px; padding-inline: 8px; }
            .search-panel .btn { width: 100%; }
            .featured-card { min-height: 470px; }
            .featured-content { left: 20px; right: 20px; bottom: 20px; }
            .featured-content h2 { font-size: 1.7rem; }
            .date-tile { top: 20px; left: 20px; }
            .floating-stat { display: none; }
            .trust-grid { grid-template-columns: 1fr; }
            .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
            .trust-item:last-child { border-bottom: 0; }
            .section-head { align-items: start; flex-direction: column; }
            .category-grid { grid-template-columns: repeat(2, 1fr); }
            .category-card { min-height: 150px; padding: 18px; }
            .events-grid { grid-template-columns: 1fr; }
            .event-body h3 { min-height: auto; }
            .experience-visual { min-height: 400px; }
            .experience-main { width: 85%; height: 340px; }
            .experience-small { height: 190px; }
            .experience-score { left: 15px; bottom: 13px; }
            .steps-grid { grid-template-columns: 1fr; }
            .step-card:not(:last-child)::after { display: none; }
            .promo-card { grid-template-columns: 1fr; padding: 33px 25px; }
            .promo-action { width: 100%; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 25px; }
            .footer-about { grid-column: 1 / -1; }
            .footer-col:last-child { grid-column: auto; }
            .footer-bottom { flex-direction: column; }
            .modal { padding: 8px; }
            .modal-dialog { max-height: calc(100vh - 16px); }
            .modal-grid { grid-template-columns: 1fr; }
            .modal-event { border-right: 0; border-bottom: 1px solid var(--line); }
            .modal-image { height: 220px; }
            .ticket-panel { padding: 23px 20px; }
        }

        @media (max-width: 430px) {
            .category-grid { grid-template-columns: 1fr; }
            .hero-proof { gap: 13px; }
            .featured-bottom { align-items: flex-end; }
            .featured-bottom .btn { min-height: 42px; padding-inline: 14px; }
            .footer-grid { grid-template-columns: 1fr; }
        }

[x-cloak] { display: none !important; }
code { color: var(--gold-light); }
button:disabled { cursor: not-allowed; opacity: .55; transform: none !important; }
.link-button { border: 0; background: transparent; cursor: pointer; }
.alert { margin-top: 18px; padding: 14px 18px; border-radius: 14px; font-size: .82rem; }
.alert-warning { color: var(--gold-light); border: 1px solid rgba(216,178,75,.28); background: rgba(216,178,75,.07); }
.centered-heading { text-align: center; }
.centered-heading .section-title, .centered-heading .section-copy { margin-inline: auto; }
.page-hero { padding: 90px 0 36px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(216,178,75,.07), transparent); }
.compact-page-hero { padding-bottom: 55px; }
.narrow-container { max-width: 760px; }
.full-width { width: 100%; }
.placeholder-card { display: flex; align-items: end; background: linear-gradient(145deg, rgba(216,178,75,.10), rgba(255,255,255,.02)); }
.catalog-head { align-items: center; }
.catalog-search { width: min(430px, 100%); min-height: 52px; display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.035); color: var(--muted); }
.catalog-search:focus-within { border-color: rgba(216,178,75,.52); box-shadow: 0 0 0 3px rgba(216,178,75,.07); }
.catalog-search input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--text); background: transparent; }
.search-loading { flex: 0 0 auto; color: var(--gold-light); font-size: .68rem; }
.catalog-status { margin: -15px 0 22px; display: flex; justify-content: space-between; gap: 15px; color: var(--muted); font-size: .72rem; }
.live-indicator { display: inline-flex; align-items: center; gap: 7px; }
.live-indicator i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(111,211,155,.09); }
.stock-line { margin-top: 11px; color: var(--success); font-size: .7rem; font-weight: 700; }
.stock-low { color: var(--gold-light); }
.visible-empty { display: grid; gap: 10px; justify-items: center; }
.visible-empty strong { color: var(--text); font-size: 1rem; }
.modal-category { display: block; margin-top: 18px; }
.ticket-option { width: 100%; color: inherit; text-align: left; }
.radio-dot { width: 15px; height: 15px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; box-shadow: inset 0 0 0 3px #10110f; background: transparent; }
.ticket-option.selected .radio-dot { border-color: var(--gold); background: var(--gold); }
.disabled-ticket { opacity: .48; }
.empty-ticket { padding: 18px; border: 1px dashed var(--line); border-radius: 14px; color: var(--muted); font-size: .78rem; text-align: center; }
.form-error { margin-top: 10px; color: #ff9f9f; font-size: .7rem; }
.detail-hero { padding: 75px 0; background: radial-gradient(circle at 80% 5%, rgba(216,178,75,.12), transparent 28rem); }
.detail-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.detail-image-wrap { position: relative; }
.detail-image { width: 100%; aspect-ratio: 16/11; object-fit: cover; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }
.detail-copy h1 { margin: 13px 0 0; font: 800 clamp(2.4rem, 5vw, 4.5rem)/1.02 "Manrope", sans-serif; letter-spacing: -.055em; }
.detail-copy > p { margin: 22px 0; color: var(--muted); line-height: 1.75; }
.detail-meta-grid { margin: 28px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.detail-meta-grid div { padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.025); }
.detail-meta-grid span { display: block; color: var(--muted); font-size: .67rem; }
.detail-meta-grid strong { display: block; margin-top: 5px; font-size: .82rem; }
.detail-section { padding-top: 30px; }
.detail-content-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: start; }
.content-card { padding: 28px; border: 1px solid var(--line); border-radius: 21px; background: var(--surface); }
.content-card h2 { margin: 12px 0; font: 700 1.4rem "Manrope", sans-serif; }
.content-card p { color: var(--muted); font-size: .84rem; line-height: 1.75; }
.ticket-sidebar { position: sticky; top: 105px; }
.detail-ticket-row { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.detail-ticket-row div strong, .detail-ticket-row div span { display: block; }
.detail-ticket-row div span { margin-top: 4px; color: var(--success); font-size: .67rem; }
.detail-ticket-row > strong { color: var(--gold-light); font-size: .82rem; }
.ticket-sidebar .btn { margin-top: 18px; }
.checkout-section { padding-top: 35px; }
.checkout-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: start; }
.checkout-event-header { display: grid; grid-template-columns: 180px 1fr; gap: 20px; align-items: center; }
.checkout-event-header img { width: 180px; height: 125px; object-fit: cover; border-radius: 15px; }
.checkout-event-header span { color: var(--gold); font-size: .67rem; font-weight: 800; text-transform: uppercase; }
.checkout-event-header h2 { margin: 7px 0; }
.checkout-event-header p { margin: 0; }
.preview-warning { margin-top: 24px; padding: 18px; border: 1px solid rgba(216,178,75,.30); border-radius: 15px; background: rgba(216,178,75,.06); }
.preview-warning strong { color: var(--gold-light); }
.preview-warning p { margin: 6px 0 0; }
.checkout-summary-card { position: sticky; top: 105px; }
.checkout-summary-card .summary-line { padding: 9px 0; }
.checkout-summary-card .btn + .btn { margin-top: 9px; }
.health-card { margin-top: 28px; display: grid; gap: 0; }
.health-card div { display: flex; justify-content: space-between; gap: 25px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.health-card div:last-child { border-bottom: 0; }
.health-card span { color: var(--muted); }
.health-card strong { color: var(--gold-light); }

@media (max-width: 1020px) {
    .detail-grid, .detail-content-grid, .checkout-grid { grid-template-columns: 1fr; }
    .ticket-sidebar, .checkout-summary-card { position: static; }
}

/* Acarvia.id brand identity — 2026 */
:root {
    --bg: #f8f9ff;
    --surface: #ffffff;
    --surface-2: #f2f4ff;
    --gold: #4f46e5;
    --gold-light: #7c3aed;
    --gold-dark: #2563eb;
    --text: #0f172a;
    --muted: #64748b;
    --line: rgba(79,70,229,.12);
    --success: #16a34a;
    --shadow: 0 24px 70px rgba(47,50,122,.14);
}
body {
    color: var(--text);
    background:
        radial-gradient(circle at 83% 7%, rgba(79,70,229,.13), transparent 26rem),
        radial-gradient(circle at 7% 35%, rgba(37,99,235,.07), transparent 24rem),
        var(--bg);
}
.container { width: min(1220px, calc(100% - 40px)); }
.brand-logo { width: 174px; height: auto; }
.header { background: rgba(255,255,255,.86); border-color: rgba(79,70,229,.08); }
.header.scrolled { box-shadow: 0 12px 34px rgba(31,41,88,.08); }
.navbar { min-height: 78px; }
.navlinks { color: #334155; }
.navlinks a::after { height: 2px; background: linear-gradient(90deg,#2563eb,#7c3aed); }
.navlinks a:hover { color: #4f46e5; }
.btn { border-radius: 10px; }
.btn-primary { color: #fff; background: linear-gradient(135deg,#2563eb,#7c3aed); box-shadow: 0 12px 28px rgba(79,70,229,.24); }
.btn-primary:hover { background: linear-gradient(135deg,#1d4ed8,#6d28d9); }
.btn-ghost { color: #4338ca; background: #fff; border-color: rgba(79,70,229,.25); }
.hero { min-height: 720px; padding-top: 88px; }
.hero::after { border-color: rgba(79,70,229,.08); box-shadow: 0 0 0 70px rgba(79,70,229,.025),0 0 0 140px rgba(79,70,229,.018); }
.hero-badge { color: #4f46e5; background: #eeedff; border-color: #dddafe; }
.pulse { background: #7c3aed; }
.hero h1 { max-width: 760px; font-size: clamp(3.2rem,5.8vw,5.45rem); line-height: 1.02; color: #0b1437; }
.gold-text { background: linear-gradient(120deg,#2563eb,#7c3aed); -webkit-background-clip: text; background-clip: text; }
.hero-copy { color: #59677f; }
.search-panel { background: rgba(255,255,255,.94); border-color: rgba(79,70,229,.15); }
.search-field { color: #64748b; }
.search-field input { color: #0f172a; }
.search-field input::placeholder { color: #94a3b8; }
.hero-proof { color: #64748b; }
.proof-item svg { color: #4f46e5; }
.hero-visual::before { border-color: rgba(79,70,229,.24); }
.featured-card { background: #101356; border-color: rgba(79,70,229,.18); box-shadow: 0 38px 90px rgba(45,49,117,.24); }
.featured-content,.featured-content h2 { color: #fff; }
.tag { color: #ddd6fe; border-color: rgba(196,181,253,.4); background: rgba(30,27,75,.72); }
.price-value { color: #c4b5fd; }
.date-tile { background: rgba(255,255,255,.92); border-color: rgba(255,255,255,.8); }
.date-tile strong { color: #4f46e5; }.date-tile span { color: #64748b; }
.floating-stat { color: #fff; background: rgba(31,29,87,.92); border-color: rgba(255,255,255,.14); }
.trust-strip { width: min(1160px,calc(100% - 40px)); margin: 0 auto; border: 1px solid rgba(79,70,229,.1); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: 0 18px 60px rgba(42,48,105,.08); }
.trust-item { border-color: rgba(79,70,229,.1); }
.trust-icon { color: #4f46e5; background: #efefff; }
.category-card,.event-card,.step-card,.faq-item { background: rgba(255,255,255,.88); border-color: rgba(79,70,229,.1); box-shadow: 0 12px 36px rgba(49,46,129,.055); }
.category-card:hover,.event-card:hover,.step-card:hover { border-color: rgba(79,70,229,.32); box-shadow: 0 18px 45px rgba(79,70,229,.12); }
.eyebrow,.section-link { color: #4f46e5; }.eyebrow::before { background: #7c3aed; }
.section-copy,.step-card p,.faq-answer p { color: #64748b; }
.organizer-cta .faq-grid { padding: 56px; border: 1px solid rgba(79,70,229,.12); border-radius: 30px; background: linear-gradient(135deg,#f1f3ff,#fff); }
footer { color: #fff; background: radial-gradient(circle at 70% 0,rgba(124,58,237,.24),transparent 32rem),#080d2d; }
footer .brand-logo-light { filter: brightness(0) invert(1); }
footer p,footer a,.footer-bottom { color: #aeb7d4; }
.alert-warning { color: #92400e; background: #fff7ed; border-color: #fed7aa; }
@media (max-width: 760px) {
    .brand-logo { width: 148px; }
    .hero { min-height: auto; padding-top: 54px; }
    .hero h1 { font-size: clamp(2.55rem,12vw,4rem); }
    .organizer-cta .faq-grid { padding: 28px 20px; }
}

/* Acarvia ID Seminar Gratis */
.seminar-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.seminar-card { padding:24px; display:grid; align-content:start; gap:14px; }
.seminar-card h2 { margin:0; font:800 1.25rem/1.3 "Manrope",sans-serif; }
.seminar-card p { min-height:3em; margin:0; line-height:1.55; }
.seminar-meta { display:grid; gap:6px; padding:14px 0; border-block:1px solid var(--line); color:var(--muted); font-size:.75rem; }
.seminar-detail { padding:54px 0 80px; display:grid; grid-template-columns:minmax(0,1.3fr) minmax(320px,.7fr); gap:28px; align-items:start; }
.seminar-detail h1 { margin:12px 0; font:800 clamp(2rem,5vw,3.6rem)/1.08 "Manrope",sans-serif; letter-spacing:-.05em; }
.seminar-detail .lead { color:var(--muted); font-size:1rem; line-height:1.7; }
.seminar-info { margin:24px 0; padding:20px; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.seminar-info.compact { margin:22px 0; padding:0; border:0; box-shadow:none; }
.seminar-info div { display:grid; gap:5px; }.seminar-info span { color:var(--muted); font-size:.7rem; }.seminar-info strong { font-size:.86rem; }
.seminar-description { line-height:1.75; color:#c5c6c0; }
.seminar-form { padding:25px; position:sticky; top:24px; }.seminar-form h2 { margin:0 0 6px; }
.public-form { margin-top:20px; display:grid; gap:15px; }.public-form label { display:grid; gap:7px; color:#c6c7c1; font-size:.75rem; font-weight:700; }
.public-form input { height:46px; padding:0 13px; border:1px solid var(--line); border-radius:10px; color:var(--text); background:#0e0f0d; }.public-form input:focus { outline:0; border-color:var(--gold); }
.form-error { padding:11px 13px; border:1px solid rgba(240,120,120,.3); border-radius:10px; color:#ffc0c0; background:rgba(240,120,120,.07); font-size:.72rem; }
.seminar-ticket-head { padding:18px 24px; display:flex; justify-content:space-between; background:linear-gradient(135deg,rgba(216,178,75,.2),rgba(16,17,15,.95)); color:var(--gold-light); }
.ticket-qr { padding:14px; display:grid; justify-items:center; gap:8px; border-radius:16px; color:#111; background:#fff; }.ticket-qr img { width:190px; height:190px; }
@media (max-width:900px) { .seminar-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }.seminar-detail { grid-template-columns:1fr; }.seminar-form { position:static; } }
@media (max-width:620px) { .seminar-grid,.seminar-info { grid-template-columns:1fr; } }
@media print { .hide-print,header,footer,.topbar { display:none!important; }.e-ticket-card { box-shadow:none!important; } }
@media (max-width: 700px) {
    .hide-mobile { display: none; }
    .catalog-search { width: 100%; }
    .catalog-status { margin-top: 0; }
    .detail-hero { padding: 48px 0; }
    .detail-grid { gap: 30px; }
    .detail-meta-grid { grid-template-columns: 1fr; }
    .checkout-event-header { grid-template-columns: 1fr; }
    .checkout-event-header img { width: 100%; height: 190px; }
}

/* Deployment-safe additions */
.ticket-choice input { position: absolute; opacity: 0; pointer-events: none; }
.ticket-choice { width: 100%; text-align: left; }
.ticket-choice.selected { border-color: rgba(216,178,75,.75); background: rgba(216,178,75,.10); }
.setup-card { max-width: 760px; margin: 72px auto; }
.setup-list { color: var(--muted); padding-left: 22px; }
.setup-list li { margin: 10px 0; }
.code-block { overflow-x: auto; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: #0b0c0a; color: #e9e4d6; }

/* Event Horizontal Scroll Sliders & Card Styles */
.event-section-block {
    margin-bottom: 48px;
    position: relative;
}
.event-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-right: 4px;
}
.event-section-title {
    font: 800 1.55rem/1.2 "Manrope", sans-serif;
    color: var(--gold-light);
    margin: 0;
    letter-spacing: -0.02em;
}
.event-section-subtitle {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 4px 0 0 0;
}
.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid rgba(216, 178, 75, 0.4);
    border-radius: 10px;
    color: var(--gold-light);
    font-size: 0.84rem;
    font-weight: 600;
    background: rgba(216, 178, 75, 0.06);
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-see-all:hover {
    background: rgba(216, 178, 75, 0.18);
    border-color: var(--gold);
    color: #ffffff;
}
.events-scroll-wrapper {
    position: relative;
    width: 100%;
}
.event-scroll-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(216, 178, 75, 0.3) transparent;
    padding: 6px 4px 20px 4px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}
.event-scroll-row::-webkit-scrollbar {
    height: 6px;
}
.event-scroll-row::-webkit-scrollbar-track {
    background: transparent;
}
.event-scroll-row::-webkit-scrollbar-thumb {
    background: rgba(216, 178, 75, 0.3);
    border-radius: 99px;
}
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(16, 17, 15, 0.92);
    backdrop-filter: blur(8px);
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
    opacity: 0.88;
}
.scroll-arrow:hover {
    opacity: 1;
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(16, 17, 15, 0.98);
    transform: translateY(-50%) scale(1.08);
}
.scroll-left { left: -16px; }
.scroll-right { right: -16px; }

/* Horizontal Event Card */
.event-card-horizontal {
    flex: 0 0 275px;
    width: 275px;
    scroll-snap-align: start;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--surface);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.event-card-horizontal:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 178, 75, 0.55);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}
.event-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #171814;
    display: block;
}
.event-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    transition: transform 0.45s ease;
}
.event-card-horizontal:hover .event-card-media img {
    transform: scale(1.06);
}
.event-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}
.event-card-badge-row {
    margin-bottom: 8px;
}
.card-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 11px;
    border-radius: 99px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #10110f;
    font-size: 0.71rem;
    font-weight: 800;
    box-shadow: 0 3px 10px rgba(216, 178, 75, 0.3);
}
.icon-sm {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.card-pill-badge .icon-sm {
    fill: currentColor;
    stroke: none;
}
.event-card-title {
    margin: 0 0 12px 0;
    font: 700 1.02rem/1.35 "Manrope", sans-serif;
    letter-spacing: -0.02em;
}
.event-card-title a {
    color: var(--text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
    transition: color 0.2s ease;
}
.event-card-title a:hover {
    color: var(--gold-light);
}
.event-card-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
    font-size: 0.78rem;
    color: #a1a1aa;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.icon-gold { stroke: var(--gold); }
.icon-gray { stroke: #9ca3af; }
.location-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.event-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}
.price-caption {
    display: block;
    font-size: 0.65rem;
    color: var(--muted);
}
.price-amount {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gold-light);
}
.btn-select-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 99px;
    background: rgba(216, 178, 75, 0.12);
    border: 1px solid rgba(216, 178, 75, 0.4);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}
.btn-select-ticket:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #10110f;
    border-color: var(--gold);
}
.btn-select-ticket.disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 700px) {
    .scroll-arrow { display: none; }
    .event-card-horizontal { flex: 0 0 240px; width: 240px; }
}

/* Phase 3.2 payment and e-ticket surfaces */
.section-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.panel { border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow); }
.muted { color: var(--muted); }
.payment-layout { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); gap: 24px; align-items: start; }
.e-ticket-layout { display: grid; grid-template-columns: minmax(0,1fr) 230px; gap: 24px; padding: 26px; }
@media (max-width: 760px) {
    .payment-layout, .e-ticket-layout { grid-template-columns: 1fr; }
    .payment-layout aside { position: static !important; }
    .e-ticket-layout > div:last-child { width: min(230px, 100%); margin-inline: auto; }
}
