
:root {
    --bg-dark: #020c1b;       
    --bg-card: #0a192f;       
    --bg-header: #051020;     
    --primary-teal: #64ffda;  
    --text-main: #ccd6f6;     
    --text-heading: #e6f1ff;  
    --text-muted: #8892b0;    
    --gradient-overlay: linear-gradient(135deg, rgba(2,12,27,0.9) 0%, rgba(10,25,47,0.85) 100%);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --spacing-container: 1200px;
    --border-radius: 8px;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }


h1, h2, h3, h4 { color: var(--text-heading); margin-bottom: 1rem; font-weight: 700; }
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; color: var(--primary-teal); }
.text-teal { color: var(--primary-teal); }
.text-small { font-size: 0.85rem; color: var(--text-muted); }


.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-primary {
    background-color: var(--primary-teal);
    color: var(--bg-dark) !important;
}
.btn-primary:hover { background-color: #4cd6b3; transform: translateY(-2px); }

.btn-outline {
    border-color: var(--primary-teal);
    color: var(--primary-teal) !important;
    background: transparent;
}
.btn-outline:hover { background: rgba(100, 255, 218, 0.1); }


.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}
section { padding: 60px 0 !important;  }


.top-strip {
    background-color: #000;
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid #1c2d4a;
}
.top-strip .container { display: flex; justify-content: center; align-items: center; }


header {
    background-color: var(--bg-header);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #1c2d4a;
    box-shadow: 0 10px 30px -10px rgba(2,12,27,0.7);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }

.logo-area { display: flex; flex-direction: column; }
.logo-text { font-size: 1.5rem; font-weight: bold; color: white; }
.logo-text span { color: var(--primary-teal); }
.tagline { font-size: 0.7rem; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; }

.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a:hover { color: var(--primary-teal); }
.burger-menu { display: none; font-size: 1.5rem; color: var(--primary-teal); cursor: pointer; }


.hero {
    background: var(--gradient-overlay), url('../img/hero.png'); 
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}


.countdown-container { display: flex; gap: 15px; margin: 20px 0; }
.time-box {
    background: rgba(10, 25, 47, 0.8);
    border: 1px solid var(--primary-teal);
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    min-width: 70px;
}
.time-val { font-size: 1.5rem; font-weight: bold; color: white; display: block; }
.time-label { font-size: 0.7rem; text-transform: uppercase; }


.ticket-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.5);
    border: 1px solid #1c2d4a;
}
.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #020c1b;
    padding: 10px;
    border-radius: 4px;
    margin: 20px 0;
}
.stepper button {
    background: none; border: none; color: var(--primary-teal); font-size: 1.5rem; cursor: pointer; padding: 0 15px;
}


.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.info-card {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid #1c2d4a;
}


.table-container { overflow-x: auto; border-radius: var(--border-radius); border: 1px solid #1c2d4a; }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid #1c2d4a; }
th { background-color: #112240; color: var(--primary-teal); font-weight: 600; }
tr:nth-child(even) { background-color: #0d1f3a; }
 


.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 12, 27, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    text-align: center;
    border: 1px solid var(--primary-teal);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.1);
}
.hidden { display: none !important; }


#cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #112240;
    padding: 20px;
    z-index: 500;
    border-top: 2px solid var(--primary-teal);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}


.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; color: var(--text-heading); }
.form-group input, .form-group select {
    width: 100%; padding: 12px;
    background: #020c1b; border: 1px solid #233554;
    color: white; border-radius: 4px;
}
.form-group input:focus { outline: none; border-color: var(--primary-teal); }


@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute; top: 100%; left: 0; width: 100%;
        background-color: var(--bg-header);
        flex-direction: column; padding: 20px;
        border-bottom: 1px solid var(--primary-teal);
    }
    .nav-links.active { display: flex; }
    .burger-menu { display: block; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-grid .ticket-card { margin-top: 30px; }
    .countdown-container { justify-content: center; }
    #cookie-banner { flex-direction: column; text-align: center; }
}
.ln-footer {
    background-color: #05080e;
    color: #f9fafb;
    padding: 40px 16px 32px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.ln-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ln-footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}

.ln-footer-logos a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ln-footer-logo {
    height: 50px;
    width: auto;
    display: block;
}

.ln-footer-text {
    margin-bottom: 8px;
    color: #e5e7eb;
}

.ln-footer-text a {
    color: #ffffff;
    text-decoration: underline;
}

.ln-footer-warning {
    margin: 22px 0 26px;
    font-weight: 600;
    color: #ff3737;
}

.ln-footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.ln-footer-copy span {
    font-weight: 600;
}

.ln-footer-links {
    display: flex;
    gap: 24px;
}

.ln-footer-links a {
    color: #e5e7eb;
    text-decoration: none;
}

.ln-footer-links a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .ln-footer {
        padding: 48px 24px 32px;
    }

    .ln-footer-bottom {
        flex-direction: row;
    }
}



.ball-result {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #112240, #020c1b);
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
}


.ball-small {
    width: 30px;
    height: 30px;
    background: #112240;
    border: 1px solid #233554;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}


.table-container td em {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

.table-container tr:hover {
    background-color: rgba(100, 255, 218, 0.05); 
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid #1c2d4a;
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-teal);
}

.step-number {
    background-color: var(--primary-teal);
    color: var(--bg-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-link:hover {
    text-decoration: underline;
    color: #fff;
}
.form-group input::placeholder {
    color: #495670;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-teal) !important;
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.1);
}


input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
}
@media (max-width: 600px) {
    
    main form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .info-card {
        padding: 20px !important;
    }
}

.hover-teal:hover {
    color: var(--primary-teal) !important;
    text-decoration: underline;
    cursor: pointer;
}


@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr !important; 
    }
    
    
    div[style*="position: sticky"] {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 30px;
    }
}