:root {
    --bg-dark: #0b1026;

    --bg-panel: #162044;

    --accent: #00e5ff;

    --accent-hover: #00b8cc;
    --text-main: #ffffff;
    --text-muted: #b0b8d1;
    --success: #2ecc71;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
}

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

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

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

ul {
    list-style: none;
}


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

.text-accent {
    color: var(--accent);
}


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

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

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

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

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

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
}


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

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

.logo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
}

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

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

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

.hero {
    background:
        radial-gradient(circle at 50% 20%, rgba(31, 64, 104, 0.7) 0%, rgba(11, 16, 38, 0.85) 70%),
        linear-gradient(to bottom, rgba(11, 16, 38, 0.3), var(--bg-dark)),
        url('../img/hero.png') center center / cover no-repeat;

    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 40px;
    align-items: center;

    position: relative;
    z-index: 2;
}


.hero-content {
    text-align: left;
}


.ticket-panel-wrapper {
    display: flex;
    justify-content: flex-end;

}


.ticket-panel {
    background: linear-gradient(135deg, #1c2a52, #162044);
    width: 100%;
    max-width: 400px;

    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content {
        text-align: center;

        margin-bottom: 30px;
    }

    .ticket-panel-wrapper {
        justify-content: center;

    }
}

@keyframes aurora {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-20px, 20px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}


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

.card {
    background-color: var(--bg-panel);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

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


.ticket-panel {
    background: linear-gradient(135deg, #1c2a52, #162044);
    max-width: 600px;
    margin: -40px auto 60px;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.qty-control {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.qty-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}


.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: var(--bg-panel);
}

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

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

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


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

.form-control {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-family: var(--font-body);
}



.overlay {
    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;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    border: 1px solid var(--accent);
}


@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-panel);
        width: 100%;
        padding: 20px;
        transition: 0.3s;
    }

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

    .burger {
        display: block;
    }

    .results-table {
        display: block;
        overflow-x: 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;
    }
}

.latest-draw-banner {
    background: linear-gradient(to right, #162044, #0b1026);
    border-bottom: 4px solid var(--accent);
    padding: 60px 0;
    text-align: center;
}

.big-ball {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.5rem;
    display: inline-block;
    background: white;
    color: var(--bg-dark);
    border-radius: 50%;
    margin: 0 5px;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.stat-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--text-muted);
}

.stat-circle.hot {
    border-color: #ff4757;
    color: #ff4757;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.2);
}

.stat-circle.cold {
    border-color: #00e5ff;
    color: #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

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

.number-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.2rem;
    margin: 0 5px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    color: white;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -20px;
    right: 20px;
    z-index: 0;
}

.step-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-panel);
    padding: 30px;
    border-radius: 12px;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
    height: 100%;
}

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

.rule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

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


details {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
}

details[open] summary:after {
    content: '-';
}

details[open] {
    background: rgba(255, 255, 255, 0.07);
}

.faq-content {
    padding: 0 20px 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

.legal-content {
    background-color: var(--bg-panel);
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 80px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.legal-content h3 {
    color: white;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

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

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