
:root {
    --color-navy: #0f172a;
    --color-navy-light: #1e293b;
    --color-maple-red: #ef4444;
    
    --color-maple-dark: #b91c1c;
    --color-text-main: #334155;
    --color-text-light: #64748b;
    --color-white: #ffffff;
    --color-bg: #f8fafc;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --container-width: 1200px;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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


.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--color-maple-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-maple-red);
    color: var(--color-maple-red);
}

.btn-outline:hover {
    background-color: var(--color-maple-red);
    color: var(--color-white);
}

.btn-full {
    width: 100%;
}


header {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.nav-link {
    color: #cbd5e1;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

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

.hero { 
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%), 
                url('../img/hero.png') center center/cover no-repeat;
    
    color: var(--color-white);
    padding: 80px 0;  
    text-align: center;
    position: relative;
    overflow: hidden;  
}
.hero h1 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.countdown-container {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.timer-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: var(--radius);
    min-width: 80px;
}

.timer-val {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.timer-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.section {
    padding: 60px 0;
}

.card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
}

.draw-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-white);
    color: var(--color-navy);
    border-top: 5px solid var(--color-maple-red);
}

.draw-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-maple-red);
    margin: 10px 0;
}

.ticket-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #f1f5f9;
    cursor: pointer;
    font-size: 1.2rem;
}

#ticket-qty {
    font-size: 1.2rem;
    font-weight: bold;
    width: 30px;
}


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

.step-icon {
    font-size: 2.5rem;
    color: var(--color-maple-red);
    margin-bottom: 15px;
}


.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: var(--color-white);
}

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

th {
    background-color: var(--color-navy-light);
    color: var(--color-white);
}


.ball {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: var(--color-maple-red);
    color: var(--color-white);
    font-weight: bold;
    margin-right: 5px;
    font-size: 0.9rem;
}


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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    font-size: 1rem;
}


.rp-box {
    background-color: #f0f9ff;
    border-left: 5px solid #0ea5e9;
    padding: 20px;
    margin-top: 40px;
    display: flex;
    align-items: start;
    gap: 15px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    border-top: 1px solid #e2e8f0;
    padding: 20px;
    z-index: 9000;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.hidden {
    display: none !important;
}


@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .main-nav ul {
        display: none;
        
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--color-navy);
        padding: 20px 0;
        text-align: center;
    }

    .main-nav ul.active {
        display: flex;
    }

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

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

    .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;
    }
}.policy-content h2 {
            margin-top: 40px;
            margin-bottom: 15px;
            font-size: 1.5rem;
            color: var(--color-navy);
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 10px;
        }
        .policy-content h3 {
            margin-top: 25px;
            margin-bottom: 10px;
            font-size: 1.2rem;
            color: var(--color-text-main);
        }
        .policy-content p {
            margin-bottom: 15px;
            color: #475569;
        }
        .policy-content ul {
            list-style: disc;
            margin-left: 20px;
            margin-bottom: 20px;
            color: #475569;
        }
        .policy-content li {
            margin-bottom: 8px;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 30px;
            font-style: italic;
        }