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

:root {
    --primary-navy: #0f172a;
    --primary-teal: #115e59;
    --accent-aqua: #22d3ee;
    --accent-gold: #f59e0b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --danger: #ef4444;
    --success: #10b981;
    --border-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --max-width: 1200px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-navy);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-teal);
    color: var(--white);
}

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

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

.btn-secondary:hover {
    background-color: var(--primary-teal);
    color: var(--white);
}

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

.btn-accent:hover {
    filter: brightness(0.9);
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.header__logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo i {
    color: var(--primary-teal);
}

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

.header__link {
    font-weight: 500;
    color: var(--text-dark);
}

.header__link:hover,
.header__link.active {
    color: var(--primary-teal);
}

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

.hero {
    background:
        linear-gradient(135deg,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(20, 184, 166, 0.85) 100%),
        url("../img/hero.png") center center / cover no-repeat;

    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
}

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

.hero__text h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero__text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero__disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 15px;
    display: block;
}

.draw-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    color: var(--text-dark);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--accent-aqua);
}

.draw-card__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.draw-card__title {
    font-weight: 700;
    font-size: 1.2rem;
}

.draw-card__number {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.draw-card__jackpot {
    text-align: center;
    margin-bottom: 20px;
}

.draw-card__jackpot-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-gray);
    font-weight: 600;
}

.draw-card__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    font-family: 'Montserrat', sans-serif;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.timer__unit {
    text-align: center;
}

.timer__val {
    background: var(--primary-navy);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

.timer__label {
    font-size: 0.7rem;
    margin-top: 5px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.ticket-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-bg);
    padding: 10px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.ticket-ctrl {
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.ticket-count {
    font-weight: 600;
}

.section {
    padding: 80px 0;
}

.section--gray {
    background-color: #f1f5f9;
}

.section__title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

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

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

.step-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(17, 94, 89, 0.1);
    color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.step-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

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

.feature-card h3 {
    margin-bottom: 15px;
}

.preview-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.preview-table th,
.preview-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.preview-table th {
    background-color: var(--primary-navy);
    color: var(--white);
    font-weight: 600;
}

.ball {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #e2e8f0;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    margin-right: 5px;
    color: var(--primary-navy);
}

.responsible-strip {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

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

.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 60px 0 30px;
    border-top: 1px solid #1e293b;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a:hover {
    color: var(--accent-aqua);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    font-size: 0.85rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.modal {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal h2 {
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.modal p {
    margin-bottom: 30px;
    color: var(--text-dark);
}

.modal__btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid var(--primary-teal);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.login-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

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

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

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(17, 94, 89, 0.1);
}

.error-msg {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.filters {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.select-box {
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius);
    font-family: inherit;
}

.odds-card {
    background: var(--white);
    padding: 20px;
    border-left: 4px solid var(--primary-teal);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

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

    .header__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        display: none;
    }

    .header__menu.show {
        display: flex;
    }

    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .login-layout {
        grid-template-columns: 1fr;
    }

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

.policy-content {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.policy-content h1 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

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

.policy-content h3 {
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.policy-content p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

.last-updated {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    display: block;
}

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