
:root {
    --bg-dark: #020c1b;
    --bg-navy: #0a192f;
    --bg-card: #112240;
    --text-main: #ccd6f6;
    --text-heading: #e6f1ff;
    --accent-teal: #64ffda;
    --accent-gold: #ffd700;
    --danger: #ff5f5f;
    --shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
    --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-navy);
    background-image: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-navy) 100%);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4 {
    color: var(--text-heading);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

a:hover {
    color: var(--accent-gold);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}


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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--accent-teal);
    background: transparent;
    color: var(--accent-teal);
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-teal);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: #4cdbb9;
    transform: translateY(-2px);
}

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


.top-strip {
    background-color: #000;
    color: #8892b0;
    font-size: 0.8rem;
    text-align: center;
    padding: 8px 0;
    letter-spacing: 0.5px;
}


header {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

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

.logo-text {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 800;
    letter-spacing: 1px;
}

.domain-text {
    font-size: 0.75rem;
    color: #8892b0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--text-heading);
    font-size: 0.95rem;
    font-weight: 500;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--accent-teal);
    cursor: pointer;
}


.hero {
    background: linear-gradient(rgba(2, 12, 27, 0.8), rgba(2, 12, 27, 0.9)), url('../img/hero.png'); 
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
}

.jackpot-display {
    background: rgba(17, 34, 64, 0.8);
    border: 1px solid var(--accent-gold);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.jackpot-amount {
    font-size: 3rem;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin: 10px 0;
}

.draw-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    font-family: monospace;
    font-size: 1.2rem;
    color: var(--accent-teal);
}


.ticket-widget {
    margin-top: 30px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius);
}

.qty-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.qty-btn {
    background: var(--bg-navy);
    border: 1px solid var(--text-main);
    color: var(--text-heading);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}

.total-price {
    font-weight: bold;
    color: var(--text-heading);
    font-size: 1.2rem;
}

.age-notice-small {
    font-size: 0.75rem;
    color: #8892b0;
    margin-top: 10px;
    display: block;
}


.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 2rem;
    color: var(--accent-teal);
    margin-bottom: 20px;
}


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

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--accent-teal);
    font-weight: 600;
}


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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 12px;
    background: var(--bg-navy);
    border: 1px solid #233554;
    border-radius: var(--radius);
    color: var(--text-heading);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-teal);
}


.accordion-item {
    background: var(--bg-card);
    margin-bottom: 10px;
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-heading);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: rgba(0,0,0,0.2);
}

.accordion-content.active {
    padding-bottom: 20px;
}


#age-gate {
    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;
}

.gate-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--accent-gold);
    text-align: center;
    max-width: 500px;
}

.gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}
 
.responsible-logos {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.placeholder-logo {
    background: #233554;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.7rem;
    border-radius: 4px;
}

.legal-text {
    font-size: 0.8rem;
    color: #556080;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}


@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        padding: 80px 20px;
        transition: 0.3s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .jackpot-amount {
        font-size: 2.5rem;
    }
    
    .gate-buttons {
        flex-direction: column;
    }
}.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;
    }
} .lotto-ball {
            width: 50px;
            height: 50px;
            background: radial-gradient(circle at 15px 15px, #ffffff, #e0e0e0);
            color: #020c1b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .lotto-ball.gold {
            background: radial-gradient(circle at 15px 15px, #ffd700, #b8860b);
            color: #000;
        }  .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }
        .step-card {
            background: var(--bg-card);
            padding: 30px;
            border-radius: var(--radius);
            text-align: center;
            position: relative;
            border: 1px solid rgba(100, 255, 218, 0.1);
            transition: var(--transition);
        }
        .step-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-teal);
        }
        .step-icon {
            width: 50px;
            height: 50px;
            background: var(--bg-navy);
            border: 2px solid var(--accent-teal);
            color: var(--accent-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }.auth-section {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.9)), url('https://images.unsplash.com/photo-1519681393798-3828fb4090bb?auto=format&fit=crop&q=80&w=1920');
            background-size: cover;
            background-position: center;
            padding: 40px 15px;
        }

        .auth-card {
            background: var(--bg-card);
            padding: 40px;
            border-radius: var(--radius);
            width: 100%;
            max-width: 450px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 1px solid rgba(100, 255, 218, 0.1);
        }

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

        .auth-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            margin-bottom: 20px;
            color: #8892b0;
        }

        .password-wrapper {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #8892b0;
        }

        .toggle-password:hover {
            color: var(--accent-teal);
        }

        .divider {
            margin: 25px 0;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            line-height: 0.1em;
            color: #8892b0;
        }

        .divider span {
            background: var(--bg-card);
            padding: 0 10px;
        }.legal-header {
            background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.8)), url('../img/hero.png');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }

        .legal-layout {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 40px;
            align-items: start;
        }

        
        .sidebar-nav {
            background: var(--bg-card);
            padding: 20px;
            border-radius: var(--radius);
            position: sticky;
            top: 100px; 
            border: 1px solid rgba(100, 255, 218, 0.1);
        }

        .sidebar-nav ul li {
            margin-bottom: 10px;
        }

        .sidebar-nav a {
            color: #8892b0;
            font-size: 0.9rem;
            display: block;
            padding: 5px 0;
            transition: color 0.3s;
        }

        .sidebar-nav a:hover {
            color: var(--accent-teal);
            padding-left: 5px;
        }

        
        .legal-content {
            background: var(--bg-card);
            padding: 40px;
            border-radius: var(--radius);
            font-size: 1rem;
            color: #ccd6f6;
            line-height: 1.8;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .legal-content h2 {
            color: var(--accent-gold);
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 1.5rem;
        }

        .legal-content h2:first-child {
            margin-top: 0;
        }

        .legal-content h3 {
            color: var(--text-heading);
            margin-top: 25px;
            font-size: 1.2rem;
        }

        .legal-content p, .legal-content ul {
            margin-bottom: 20px;
        }

        .legal-content ul {
            list-style: disc;
            padding-left: 20px;
            color: #8892b0;
        }

        .legal-content strong {
            color: var(--accent-teal);
        }

        
        @media (max-width: 900px) {
            .legal-layout {
                grid-template-columns: 1fr;
            }
            
            .sidebar-nav {
                position: relative;
                top: 0;
                margin-bottom: 30px;
            }
        }