@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


:root {
    --bg-dark: #0A1525;
    --bg-panel: #13223A;
    --primary: #FFD700;
    --primary-hover: #CCAC00;
    --accent: #FFFACD;
    --text-main: #FFFFFF;
    --text-muted: #A7B4CB;
    --danger: #FF4D4D;
    --border: #2D3766;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

    --aurora-gradient: linear-gradient(135deg, #0A1525 0%, #1B294F 50%, #0A1525 100%);

    --glow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

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

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--glow);
}

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

.btn-ghost {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-ghost:hover {
    background: rgba(0, 229, 255, 0.1);
}

header {
    background: rgba(11, 16, 38, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.brand {
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    font-size: 1.2rem;
    color: var(--text-main);
}

.brand span {
    display: block;
    color: var(--primary);
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

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

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

.hero {
    position: relative;
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1531366936337-7c912a4589a7?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(11, 16, 38, 0.95) 0%, rgba(11, 16, 38, 0.8) 50%, rgba(11, 16, 38, 0.4) 100%);
}

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

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #00E5FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.draw-info {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.time-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 6px;
    min-width: 70px;
    border: 1px solid var(--border);
}

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

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

.hero-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

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

.ticket-widget {
    background: var(--bg-panel);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.widget-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.widget-header h3 {
    margin-bottom: 5px;
}

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

.qty-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.qty-display {
    font-weight: 700;
    font-size: 1.2rem;
}

.total-price {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.age-warning {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
}

.trust-strip {
    background: var(--bg-panel);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.card {
    background: var(--bg-panel);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: var(--bg-panel);
    border-radius: 8px;
    overflow: hidden;
}

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

.info-table th {
    background: rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.win-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pill {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.responsible-banner {
    background: linear-gradient(to right, #1B294F, #0B1026);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
}

.accordion-item {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    margin-bottom: 10px;
    border-radius: 6px;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 20px;
}

.accordion-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

.form-box {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

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

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

.form-control {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: white;
}

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

footer {
    background: #050814;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.footer-nav a {
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--primary);
}

.rg-block {
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.age-badge {
    background: var(--danger);
    color: white;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.legal-line {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

#age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 16, 38, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.gate-card {
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    border: 1px solid var(--primary);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.1);
}

.cart-indicator {
    position: relative;
    font-size: 1.2rem;
    margin-left: 15px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
}

@media (max-width: 992px) {

    .hero-content,
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        display: inline-block;
        text-align: left;
    }

    .countdown {
        justify-content: center;
    }

    .nav-links,
    .auth-buttons {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--bg-panel);
        padding: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-container.active .nav-links,
    .nav-container.active .auth-buttons {
        display: flex;
    }

    .burger {
        display: block;
    }

    .responsible-banner {
        flex-direction: column;
        gap: 20px;
        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;
    }
}

.results-hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.big-numbers {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.big-pill {
    width: 60px;
    height: 60px;
    background: var(--bg-panel);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.jackpot-status {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 10px;
}

.archive-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.archive-row:last-child {
    border-bottom: none;
}

.archive-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.check-ticket-box {
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    margin-top: 60px;
}

.ticket-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
}

.ticket-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: white;
}

@media (max-width: 768px) {
    .archive-row {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .big-numbers {
        gap: 10px;
    }

    .big-pill {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    bottom: 25px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step-content {
    background: var(--bg-panel);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border);
    flex-grow: 1;
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}


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

.rule-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.rule-icon {
    font-size: 1.5rem;
    color: var(--accent);
}


.pick-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .pick-comparison {
        grid-template-columns: 1fr;
    }
}

.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
    background: radial-gradient(circle at center, rgba(11, 16, 38, 0.5) 0%, var(--bg-dark) 100%);
}

.form-box {
    width: 100%;
    max-width: 450px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

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

.form-footer a {
    color: var(--primary);
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

.forgot-pass {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.forgot-pass:hover {
    color: var(--text-main);
}

.remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.custom-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.auth-info {
    padding: 50px;
}

.auth-form-wrapper {
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    margin: 20px;
}

.info-list {
    margin-top: 30px;
}

.info-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-list i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

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

.checkbox-group {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.4;
}

.custom-check input {
    margin-top: 3px;
}

@media (max-width: 992px) {
    .auth-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .auth-info {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.legal-content {
    background: var(--bg-panel);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

.legal-content h1 {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 20px;
    margin-bottom: 30px;
    color: var(--text-main);
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.5rem;
}

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

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
    text-align: justify;
}

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

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

.last-updated {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
    display: block;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
    }
}

.toc {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin: 30px 0 40px;
}

.toc h3 {
    margin-bottom: 15px;
    color: var(--text-main);
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
}

.toc li {
    margin-bottom: 8px;
}

.toc a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
}

.toc a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
    }

    .toc ul {
        columns: 1;
    }
}