 
:root {
    
    --bg-body: #0b0e17;
    --bg-gradient: linear-gradient(135deg, #0b0e17 0%, #161b2e 100%);
    
    
    --bg-card: rgba(30, 35, 55, 0.7);
    --bg-card-hover: rgba(40, 45, 70, 0.9);
    
    
    --primary: #00f2ea;       
    --primary-glow: rgba(0, 242, 234, 0.4);
    
    --secondary: #ff0055;     
    --secondary-hover: #ff3377;
    
    --gold: #ffcc00;          
    --gold-glow: rgba(255, 204, 0, 0.3);
    
    
    --text-main: #ffffff;
    --text-muted: #a0a8c0;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --radius: 16px;           
    --font-main: 'Inter', system-ui, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
 
h1, h2, h3, h4 { 
    color: var(--text-main); 
    font-weight: 800; 
    margin-bottom: 1rem; 
    letter-spacing: -0.02em;
}

h1 { font-size: 3rem; text-shadow: 0 0 20px rgba(0,0,0,0.5); }
h2 { font-size: 2.2rem; }

.text-gold { 
    color: var(--gold); 
    text-shadow: 0 0 15px var(--gold-glow);
}
.text-teal { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }


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

.btn-primary { 
    background: linear-gradient(45deg, var(--secondary), #ff4d80); 
    color: white; 
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
}
.btn-primary:hover { 
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.6);
}

.btn-outline { 
    border: 2px solid var(--primary); 
    color: var(--primary); 
    background: transparent; 
}
.btn-outline:hover { 
    background: var(--primary); 
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
}
 
.top-strip {
    background-color: #05070e;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

header {
    background: rgba(11, 14, 23, 0.85);
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

.logo { 
    font-size: 1.6rem; 
    font-weight: 900; 
    color: var(--text-main); 
    text-transform: uppercase;
    letter-spacing: -1px;
}
.logo span { color: var(--primary); }

.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-link { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    font-weight: 500;
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }


.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

.cart-icon { position: relative; cursor: pointer; margin-left: 10px; font-size: 1.1rem; }
.cart-badge {
    position: absolute; top: -8px; right: -8px;
    background: var(--secondary); color: white;
    border-radius: 50%; width: 18px; height: 18px;
    font-size: 0.7rem; display: flex; align-items: center; justify-content: center; font-weight: bold;
}

.hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: var(--text-main); }
 
.hero {
    
    background: url('../img/hero.png') center center/cover no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: var(--primary);
    opacity: 0.05;
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h4 { 
    color: var(--primary); 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.countdown-box {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.time-unit {
    background: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 85px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}
.time-unit span { 
    display: block; 
    font-size: 2.2rem; 
    font-weight: 800; 
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 5px;
}
.time-unit label { 
    font-size: 0.7rem; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    letter-spacing: 1px;
}


.ticket-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}


.ticket-card::top {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.jackpot-amt { 
    font-size: 3.5rem; 
    color: var(--gold); 
    font-weight: 900; 
    margin: 15px 0;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
    line-height: 1.1;
}
.ticket-price { font-size: 1.1rem; color: var(--text-main); margin-bottom: 25px; font-weight: 600; }

.qty-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    background: rgba(0,0,0,0.2);
    padding: 5px;
    border-radius: 30px;
    width: fit-content;
}
.qty-btn {
    background: rgba(255,255,255,0.1); 
    color: var(--text-main);
    border: none; width: 36px; height: 36px; 
    border-radius: 50%; 
    cursor: pointer; 
    font-size: 1.2rem;
    transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: #000; }
#ticketQty { font-size: 1.2rem; font-weight: bold; min-width: 40px; text-align: center; }
 
section { padding: 80px 0; }
.bg-alt { background-color: #0e121f; } 

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

.info-card {
    background: var(--bg-card);
    padding: 35px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}
.info-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.1);
}
.info-card i { 
    font-size: 2.5rem; 
    background: -webkit-linear-gradient(45deg, var(--primary), #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px; 
}


.table-container { 
    overflow-x: auto; 
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    padding: 10px;
}
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th, td { padding: 20px; text-align: left; border-bottom: 1px solid var(--border-color); }
th { color: var(--primary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
tr:last-child td { border-bottom: none; }
tr:hover { background-color: rgba(255, 255, 255, 0.03); }


.form-box {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.form-group label { display: block; margin-bottom: 10px; color: var(--text-muted); font-size: 0.9rem; }
.form-control {
    width: 100%; padding: 14px; 
    background: rgba(0,0,0,0.3); 
    border: 1px solid var(--border-color);
    color: var(--text-main); 
    border-radius: 8px;
    font-family: var(--font-main);
    transition: var(--transition);
}
.form-control:focus { 
    outline: none; 
    border-color: var(--primary); 
    box-shadow: 0 0 0 3px rgba(0, 242, 234, 0.1);
    background: rgba(0,0,0,0.5);
}
 
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 7, 14, 0.9);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex; justify-content: center; align-items: center;
}
.modal-content {
    background: #161b2e;
    padding: 50px;
    border-radius: var(--radius);
    max-width: 550px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 50px rgba(0,0,0,0.7);
}
.hidden { display: none; }
 
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .hamburger { display: block; }
    
    .nav-menu {
        position: fixed; top: 72px; right: -100%;
        background: #161b2e;
        width: 100%; height: calc(100vh - 72px);
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        transition: 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        border-top: 1px solid var(--border-color);
    }
    .nav-menu.active { right: 0; }
    
    .nav-link { font-size: 1.2rem; }
    
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .countdown-box { justify-content: center; flex-wrap: wrap; }
    .time-unit { padding: 10px; min-width: 70px; }
    .time-unit span { font-size: 1.5rem; }
    
    .qty-selector { margin: 0 auto 25px auto; }
}.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;
    }
}details {
            background: var(--bg-card);
            margin-bottom: 15px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: var(--transition);
        }
        details:hover {
            border-color: var(--primary);
        }
        details[open] {
            border-color: var(--primary);
            background: var(--bg-card-hover);
        }
        summary {
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            list-style: none;
            position: relative;
            padding-right: 40px;
        }
        summary::-webkit-details-marker { display: none; }
        summary::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s;
        }
        details[open] summary::after {
            transform: translateY(-50%) rotate(45deg);
            color: var(--secondary);
        }
        .faq-content {
            padding: 0 20px 20px 20px;
            color: var(--text-muted);
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 10px;
            padding-top: 15px;
        }
        
        
        .step-number {
            font-size: 4rem;
            font-weight: 900;
            color: rgba(255,255,255,0.05);
            position: absolute;
            top: 0;
            right: 20px;
            line-height: 1;
        }
        .step-card {
            position: relative;
            overflow: hidden;
        }.login-section {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80vh; 
            padding: 40px 0;
        }

        .login-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr; 
            gap: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
        }

        
        .login-form-container {
            padding: 50px;
        }

        
        .login-info-panel {
            background: linear-gradient(135deg, rgba(0, 242, 234, 0.1), rgba(11, 14, 23, 0.9));
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-left: 1px solid var(--border-color);
            position: relative;
        }

        
        .benefit-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .benefit-list i {
            color: var(--primary);
            margin-right: 15px;
            font-size: 1.2rem;
            margin-top: 2px;
        }

        
        .custom-checkbox {
            display: flex;
            align-items: center;
            cursor: pointer;
            user-select: none;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .custom-checkbox input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }
        .checkmark {
            height: 20px;
            width: 20px;
            background-color: rgba(255,255,255,0.1);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            margin-right: 10px;
            position: relative;
            transition: var(--transition);
        }
        .custom-checkbox input:checked ~ .checkmark {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        .custom-checkbox input:checked ~ .checkmark:after {
            display: block;
        }
        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            left: 6px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid #0b0e17;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        
        @media (max-width: 768px) {
            .login-grid {
                grid-template-columns: 1fr;
            }
            .login-info-panel {
                order: -1; 
                padding: 30px;
                border-left: none;
                border-bottom: 1px solid var(--border-color);
                text-align: center;
            }
            .benefit-list {
                display: none; 
            }
            .login-form-container {
                padding: 30px;
            }
        }.auth-section {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80vh;
            padding: 60px 0;
        }

        .auth-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr; 
            gap: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
        }

        .auth-form-container { padding: 50px; }
        
        .auth-info-panel {
            background: linear-gradient(135deg, rgba(255, 0, 85, 0.1), rgba(11, 14, 23, 0.9));
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-left: 1px solid var(--border-color);
        }

        
        .custom-checkbox {
            display: flex;
            align-items: flex-start; 
            cursor: pointer;
            user-select: none;
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        .custom-checkbox input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
        .checkmark {
            height: 20px;
            width: 20px;
            min-width: 20px; 
            background-color: rgba(255,255,255,0.1);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            margin-right: 12px;
            margin-top: 2px;
            position: relative;
            transition: var(--transition);
        }
        .custom-checkbox input:checked ~ .checkmark {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        .custom-checkbox input:checked ~ .checkmark:after { display: block; }
        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            left: 6px; top: 2px;
            width: 5px; height: 10px;
            border: solid #0b0e17;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .row-2-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        @media (max-width: 768px) {
            .auth-grid { grid-template-columns: 1fr; }
            .auth-info-panel { order: -1; padding: 30px; text-align: center; border-left: none; border-bottom: 1px solid var(--border-color); }
            .auth-form-container { padding: 25px; }
            .row-2-col { grid-template-columns: 1fr; gap: 0; }
        }.policy-container {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 50px;
            align-items: start;
            padding-top: 40px;
        }

        
        .policy-sidebar {
            position: sticky;
            top: 100px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 20px;
        }

        .toc-list li {
            margin-bottom: 12px;
        }

        .toc-list a {
            color: var(--text-muted);
            font-size: 0.9rem;
            display: block;
            padding: 5px 0;
            transition: var(--transition);
        }
        .toc-list a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        
        .policy-content {
            background: rgba(11, 14, 23, 0.5);
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid var(--border-color);
        }

        .policy-section {
            margin-bottom: 50px;
            scroll-margin-top: 120px; 
        }

        .policy-content h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
        }
        
        .policy-content h3 {
            color: var(--text-main);
            font-size: 1.3rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .policy-content p {
            color: var(--text-muted);
            margin-bottom: 15px;
            line-height: 1.7;
        }

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

        
        @media (max-width: 900px) {
            .policy-container {
                grid-template-columns: 1fr;
            }
            .policy-sidebar {
                display: none; 
            }
            .policy-content {
                padding: 25px;
            }
        }