:root {
    --primary-dark: #0f172a;

    --primary-light: #ffffff;
    --accent: #0d9488;

    --accent-hover: #115e59;
    --text-main: #334155;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}


.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-outline {
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
}

.section-padding {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}


#age-gate {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.age-modal h2 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.age-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-reject {
    background: #cbd5e1;
    color: var(--text-main);
}


header {
    background: var(--primary-dark);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a:hover {
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-sub {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.countdown-box {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    min-width: 80px;
    text-align: center;
}

.time-unit span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
}

.time-unit small {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-light);
}


.ticket-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    color: var(--text-main);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.ticket-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.ticket-header h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.ticket-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
}

.qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-light);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 15px;
    display: block;
}


.info-section h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.odds-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
}

.odds-table th,
.odds-table td {
    padding: 15px;
    border: 1px solid var(--border);
    text-align: left;
}

.odds-table th {
    background: var(--primary-dark);
    color: white;
}


footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding-top: 60px;
}

.resp-play-strip {
    background: #334155;
    padding: 15px 0;
    text-align: center;
    color: white;
    font-weight: 600;
}

.footer-content {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.legal-row {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.reg-logos {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.reg-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

.ln-footer {
    background-color: #082e36;
    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;
    }
}


.draw-balls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.ball {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ball.bonus {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}


.breakdown-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 0.95rem;
}

.breakdown-table th {
    background: #f1f5f9;
    color: var(--primary-dark);
    text-align: left;
    padding: 12px;
}

.breakdown-table td {
    border-bottom: 1px solid var(--border);
    padding: 12px;
}

.breakdown-table tr:last-child td {
    border-bottom: none;
}


.archive-list {
    list-style: none;
    margin-top: 20px;
}

.archive-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border: 1px solid var(--border);
    margin-bottom: 10px;
    border-radius: 8px;
    transition: 0.2s;
}

.archive-item:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}


.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.feature-box h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.faq-section {
    margin-top: 50px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    padding: 40px 20px;
}

.auth-card {
    background: white;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.auth-header {
    margin-bottom: 30px;
    text-align: center;
}

.auth-header h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-wrapper input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.form-actions a {
    color: var(--accent);
    font-weight: 600;
}

.auth-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.auth-footer a {
    color: var(--accent);
    font-weight: 700;
}

.legal-wrapper {
    background: white;
    padding: 60px 0;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.legal-header .last-updated {
    color: var(--text-light);
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
}

.legal-content h3 {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 15px;
    color: #475569;
    text-align: justify;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
    color: #475569;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-contact-box {
    background: #f8fafc;
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}