/* Variant 5: compact layout – full standalone stylesheet */

:root {
    --navy: #071327;
    --gold: #f8b700;
    --bg: #030712;
    --text: #e5edff;
    --muted: #9aa8c4;
    --danger: #ff4d4f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top, #12254a 0, #030712 55%);
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: linear-gradient(to bottom, rgba(3,7,18,0.96), rgba(3,7,18,0.75));
    border-bottom: 1px solid rgba(248,183,0,0.16);
    animation: slideDown 0.4s ease-out;
}

.container {
    width: min(1120px, 100% - 32px);
    margin: 0 auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 14px;
}

.logo span:last-child {
    font-weight: 500;
    font-size: 11px;
    color: var(--muted);
}

.nav-links {
    display: flex;
    gap: 18px;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-size: 13px;
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
    text-decoration: none;
}

.nav-links a.btn-primary {
    color: #030712;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f8b700, #ffd875);
    color: #030712;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(229,237,255,0.28);
    background: transparent;
    color: var(--text);
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-outline:hover {
    border-color: rgba(229,237,255,0.5);
    background: rgba(229,237,255,0.05);
    text-decoration: none;
}

main {
    padding-bottom: 72px;
    animation: fadeIn 0.8s ease-out;
}

.section {
    padding: 44px 0;
    animation: slideUp 0.6s ease-out;
}

.section-alt {
    padding: 56px 0;
    background: radial-gradient(circle at top, #0f172a 0, #020617 55%);
}

.section h1,
.section h2,
.section h3 {
    margin: 0 0 12px;
}

.section .lead {
    margin-top: 6px;
    margin-bottom: 24px;
    color: var(--muted);
    max-width: 640px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 40px;
    align-items: center;
    padding-top: 40px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(248,183,0,0.55);
    padding: 4px 12px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    animation: slideUp 0.5s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(26px, 3.3vw, 34px);
    line-height: 1.1;
    margin-top: 16px;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
    animation: slideUp 0.6s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    animation: slideUp 0.6s ease-out 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    font-size: 12px;
    animation: slideUp 0.6s ease-out 0.5s both;
}

.hero-stat {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(15,23,42,0.8);
    background: radial-gradient(circle at top left, rgba(248,183,0,0.08), rgba(15,23,42,0.9));
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(248,183,0,0.3);
}

.hero-media-card {
    border-radius: 20px;
    padding: 18px;
    background: radial-gradient(circle at top, rgba(248,183,0,0.08), rgba(15,23,42,0.98));
    border: 1px solid rgba(15,23,42,0.9);
    box-shadow: 0 24px 60px rgba(0,0,0,0.75);
    animation: slideUp 0.6s ease-out 0.4s both;
}

.hero-media-card .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 10px;
}

.hero-media-card .value {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-media-card .sub {
    font-size: 12px;
    color: var(--muted);
}

.countdown-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.count-pill {
    flex: 1 1 72px;
    min-width: 72px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.6);
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.count-pill:hover {
    transform: scale(1.05);
    border-color: rgba(248,183,0,0.4);
}

.count-pill .value {
    font-weight: 600;
    font-size: 14px;
}

.count-pill .unit {
    font-size: 11px;
    color: var(--muted);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.ticket-card {
    position: relative;
    padding: 18px 16px 16px;
    border-radius: 18px;
    border: 1px solid rgba(15,23,42,0.9);
    background: radial-gradient(circle at top, rgba(248,183,0,0.08), rgba(15,23,42,0.96));
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: slideUp 0.5s ease-out both;
}

.ticket-card:nth-child(1) { animation-delay: 0.1s; }
.ticket-card:nth-child(2) { animation-delay: 0.2s; }
.ticket-card:nth-child(3) { animation-delay: 0.3s; }
.ticket-card:nth-child(4) { animation-delay: 0.4s; }

.ticket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    border-color: rgba(248,183,0,0.4);
}

.ticket-card .badge {
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(248,183,0,0.16);
    color: var(--gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    animation: pulse 2s ease-in-out infinite;
}

.ticket-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.ticket-meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 4px;
}

.ticket-price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ticket-card p {
    font-size: 13px;
    color: var(--muted);
}

.ticket-card .ticket-cta {
    margin-top: 10px;
    width: 100%;
}

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

.feature-card {
    padding: 16px 16px 14px;
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,0.9);
    background: radial-gradient(circle at top, rgba(15,23,42,0.9), rgba(3,7,18,0.96));
    transition: transform 0.2s ease, border-color 0.2s ease;
    animation: slideUp 0.5s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(248,183,0,0.3);
}

.feature-card strong {
    display: block;
    margin-bottom: 6px;
}

.footer {
    border-top: 1px solid rgba(15,23,42,0.9);
    background: #020617;
    color: var(--muted);
    padding: 28px 0 40px;
    font-size: 12px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 2fr) minmax(0, 2fr);
    gap: 24px;
}

.footer h4 {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--text);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.footer-logo-pill {
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.4);
    font-size: 11px;
}

.footer-disclaimer {
    margin-top: 18px;
    color: var(--muted);
}

.legal-pill {
    margin-top: 8px;
    font-size: 11px;
    color: var(--muted);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

.modal-card {
    background: radial-gradient(circle at top, rgba(15,23,42,0.98), rgba(3,7,18,0.99));
    border: 1px solid rgba(248,183,0,0.2);
    border-radius: 20px;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0,0,0,0.8);
    animation: slideUp 0.4s ease-out;
    position: relative;
}

.modal-card h3 {
    margin: 0 0 20px;
    font-size: 24px;
    color: var(--text);
}

.modal-card form > div {
    margin-bottom: 18px;
}

.modal-card label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.modal-card input[type="text"],
.modal-card input[type="email"],
.modal-card input[type="password"] {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(148,163,184,0.3);
    background: rgba(15,23,42,0.6);
    color: var(--text);
    font-size: 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.modal-card input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(15,23,42,0.8);
}

.modal-card input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.modal-card .actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.modal-card .actions button,
.modal-card .actions a {
    flex: 1;
}

.modal-card small {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: var(--muted);
}

.modal-card small a {
    color: var(--gold);
    text-decoration: underline;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: radial-gradient(circle at top, rgba(15,23,42,0.98), rgba(3,7,18,0.99));
    border: 1px solid rgba(248,183,0,0.3);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--text);
    font-size: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    z-index: 2000;
    display: none;
    animation: slideUp 0.3s ease-out;
    max-width: 320px;
}

.toast.active {
    display: block;
}

.toast.success {
    border-color: rgba(34,197,94,0.4);
}

.toast.error {
    border-color: rgba(239,68,68,0.4);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .nav-links {
        gap: 12px;
        font-size: 12px;
    }

    .modal-card {
        padding: 24px;
        width: 95%;
    }
}



