:root {

    --primary-dark: #0f172a;
    --primary-blue: #1e40af;
    --primary-light: #3b82f6;


    --accent-color: #f59e0b;
    --accent-hover: #d97706;


    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-body: #f1f5f9;
    --bg-white: #ffffff;

    --white: #ffffff;

    --danger: #ef4444;
    --success: #10b981;
    --radius-sm: 6px;
    --radius-lg: 12px;
    --radius-xl: 20px;


    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);


    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 0.75em;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.35rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

strong {
    color: var(--text-main);
}

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

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.btn:active {
    transform: translateY(1px);
}


.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.23);
    transform: translateY(-2px);
}


.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    text-transform: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}


header {
    background: linear-gradient(90deg, #020617 0%, #1e3a8a 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    height: 70px;
}

.logo a {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--white);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.tagline {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #e2e8f0;
    position: relative;
}

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

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}


.hero {
    background: radial-gradient(circle at 50% 30%, #000000ba, #0f172a);
    color: var(--white);
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;

}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background: url('../img/hero.png') center center/cover no-repeat;
    opacity: 0.3;
}

.hero p {
    color: #cbd5e1;
}

.main-draw-card {
    background: var(--white);
    color: var(--text-main);
    max-width: 550px;
    margin: 30px auto 0;
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.main-draw-card h3 {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price-label {
    color: #020617 !important;
}

.draw-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--primary-blue);
    background: -webkit-linear-gradient(#1e40af, #0f172a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin: 15px 0;
}

.ticket-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    background: #f8fafc;
    padding: 10px;
    border-radius: var(--radius-lg);
    display: inline-flex;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary-blue);
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

#ticket-qty {
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}


.countdown {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 0;
    border-radius: var(--radius-lg);
    width: 75px;
    text-align: center;
}

.time-val {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: var(--accent-color);
}

.time-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    color: #cbd5e1;
}


.section-card {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.section-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}


.odds-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.odds-table th,
.odds-table td {
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.odds-table th {
    background-color: #f1f5f9;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

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

.odds-table tr:hover td {
    background-color: #f8fafc;
}


.result-card {
    background: var(--white);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: var(--radius-lg);
    border-left: 6px solid var(--primary-light);
    box-shadow: var(--shadow-md);
}

.balls-row {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
    align-items: center;
}


.ball {
    width: 45px;
    height: 45px;

    background: radial-gradient(circle at 35% 35%, #475569, #0f172a);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3), inset 1px 1px 4px rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ball.bonus {
    background: radial-gradient(circle at 35% 35%, #fbbf24, #d97706);
    color: #fff;
    text-shadow: 0 1px 2px rgba(180, 83, 9, 0.8);
}


.login-wrapper {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f5f9;
}

.login-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
}

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

.form-group input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f8fafc;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-light);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group i {
    color: var(--text-muted);
    font-size: 1.1rem;
    top: 42px;
}


footer {
    background-color: var(--primary-dark);
    color: #94a3b8;
    padding: 60px 0 30px;
    border-top: 1px solid #1e293b;
}

.age-badge {
    background: transparent;
    color: var(--danger);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    border: 3px solid var(--danger);
    margin-bottom: 15px;
}

.footer-links a {
    margin: 0 15px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

#age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(15, 23, 42, 0.95);

    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;


    opacity: 0;
    animation: fadeIn 0.4s forwards;
}

.gate-content {
    background: var(--white);
    width: 90%;
    max-width: 480px;
    padding: 40px;
    border-radius: 20px;
    text-align: center;


    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);


    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.5s 0.2s forwards;
}


.gate-content i {
    color: var(--primary-blue);
    background: #eff6ff;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-block;
}


.gate-content h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.gate-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 35px;
}

.gate-content strong {
    color: var(--primary-blue);
    font-weight: 700;
}


.gate-btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


#btn-yes {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 10px;
}


#btn-no {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    background: transparent !important;
    color: #94a3b8 !important;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#btn-no:hover {
    background: #f1f5f9 !important;
    color: var(--danger) !important;
    border-color: #cbd5e1;
}


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

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


@media (min-width: 600px) {
    .gate-btn-group {
        flex-direction: row;
    }

    #btn-yes,
    #btn-no {
        width: 50%;
    }
}


@media (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
    }

    .draw-amount {
        font-size: 2.5rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        gap: 25px;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: block;
    }

    .hero {
        padding: 40px 0;
    }

    .section-card {
        padding: 25px;
    }

    .balls-row {
        justify-content: 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: #ffffff;
}

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

.ln-footer-text strong {
    color: #ffffff;
}

.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;
    }
}

.policy-content h2 {
    margin-top: 40px;
    font-size: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.policy-content h3 {
    margin-top: 25px;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.policy-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-meta {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 30px;
    font-style: italic;
}