:root {
    --color-bg-dark: #0f172a;
    --color-bg-card: #1e293b;
    --color-primary: #38bdf8;
    --color-secondary: #818cf8;
    --color-accent: #ef4444;
    --color-text-main: #f8fafc;
    --color-text-muted: #94a3b8;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 70px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

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

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: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #0f172a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}

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

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

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

.text-center {
    text-align: center;
}

.badge-19 {
    background-color: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: super;
    margin-left: 4px;
    font-weight: bold;
}


header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    height: var(--nav-height);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.logo span {
    color: var(--color-primary);
}

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

.nav-link {
    font-weight: 500;
    color: var(--color-text-main);
}

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

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


.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


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

.feature-card {
    background-color: var(--color-bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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


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

.result-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 4px solid var(--color-primary);
}

.result-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.winning-numbers {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.ball {
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.ball.bonus {
    background-color: var(--color-accent);
    color: white;
}


.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.step-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
}

.step-icon {
    min-width: 50px;
    height: 50px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 1.2rem;
    color: white;
}


.login-card {
    background: var(--color-bg-card);
    max-width: 450px;
    margin: 60px auto;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}


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

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

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

.custom-table th {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
}

.responsible-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}


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

.modal-content {
    background: var(--color-bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    text-align: center;
    border: 1px solid var(--color-primary);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg-card);
    padding: 20px;
    border-top: 1px solid var(--color-primary);
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.hidden {
    display: none !important;
}


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

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--color-bg-dark);
        flex-direction: column;
        padding: 40px;
        transition: 0.3s;
    }

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

    .steps-container {
        flex-direction: column;
    }

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

.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;
    }
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}


.sidebar-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.jackpot-highlight {
    text-align: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.1));
    border: 1px solid var(--color-primary);
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 10px 0;
    font-family: var(--font-heading);
}

.checker-form label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 5px;
    display: block;
}

.checker-inputs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.checker-input {
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: white;
}


.breakdown-section {
    background: var(--color-bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    border-top: 4px solid var(--color-secondary);
}

.breakdown-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.breakdown-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.breakdown-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.highlight-row {
    background-color: rgba(56, 189, 248, 0.1);
    font-weight: bold;
}


.breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--color-primary);
}

.breadcrumbs span {
    margin: 0 5px;
}


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

    .sidebar-card {
        margin-top: 20px;
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}


@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-ticket-card {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .hero-buttons {
        justify-content: center;
    }
}


.hero-ticket-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}


.ticket-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    text-align: left;
}

.ticket-header-row h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: #fff;
}

.ticket-jackpot {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.ticket-draw-info {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 5px;
}

.ticket-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}


.ticket-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.qty-display {
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}


.btn-full-width {
    width: 100%;
    display: block;
    padding: 15px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.ticket-legal {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.ticket-legal .small {
    margin-top: 5px;
    font-style: italic;
    opacity: 0.7;
}

.legal-content {
    background: var(--color-bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    line-height: 1.8;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.legal-content h2 {
    color: #fff;
    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 h3 {
    color: var(--color-primary);
    margin-top: 25px;
    font-size: 1.1rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

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


.legal-nav {
    position: sticky;
    top: 90px;
}

.legal-nav ul {
    list-style: none;
    padding: 0;
}

.legal-nav li {
    margin-bottom: 2px;
}

.legal-nav a {
    display: block;
    padding: 12px 20px;
    color: var(--color-text-muted);
    border-left: 2px solid transparent;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--color-primary);
}

@media (max-width: 992px) {
    .legal-nav {
        position: static;
        margin-bottom: 30px;
    }
}