:root {
    --bg: #070A12;
    --bg2: #0B1220;
    --text: #E6EAF2;
    --muted: #A7B0C0;
    --card: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);
    --primary: #22C55E;
    --primary2: #16A34A;
    --danger: #EF4444;
    --danger2: #DC2626;
    --radius: 18px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glow: 0 0 20px rgba(34, 197, 94, 0.4);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --nav-height: 80px;
}


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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 20%),
        repeating-linear-gradient(transparent, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px);
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}


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

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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


h1,
h2,
h3 {
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.highlight-text {
    color: var(--primary);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--primary2);
    box-shadow: var(--glow);
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-glow {
    box-shadow: var(--glow);
}

.btn-block {
    width: 100%;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: var(--nav-height);
    background: rgba(7, 10, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

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

.badge {
    height: 30px;

}

.badge img {
    height: 100%;
    padding: 5px;
    background: white;
}

.nav-list {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #fff;
}

.burger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}


.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-height);
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.trust-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.chip {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.fine-print {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 1rem;
    opacity: 0.7;
}


.section {
    padding: 80px 0;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 255, 255, 0.2);
}


.offer-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-card.success {
    border-top: 3px solid var(--primary);
}

.offer-card.danger {
    border-top: 3px solid var(--danger);
}

.check-list,
.cross-list {
    list-style: none;
    text-align: left;
}

.check-list li,
.cross-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.check-list li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cross-list li::before {
    content: "✕";
    color: var(--danger);
    position: absolute;
    left: 0;
    font-weight: bold;
}


.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--bg2);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 16px;
}


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

.feature-list {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    display: inline-block;
}

.feature-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.lotto-details {
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: left;
}

.center-btn {
    display: flex;
    justify-content: center;
}

.sub-card {
    text-align: center;
    border: 1px solid var(--primary);
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.sub-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 24px 0;
    flex-wrap: wrap;
    font-weight: 500;
    color: #fff;
}

.glow-frame {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}


.slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.slider-track-wrapper {
    overflow: hidden;
    margin: 0 -12px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 24px;
}

.winner-card {
    flex: 0 0 300px;
    min-width: 250px;
    text-align: center;
}

.winner-card .amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.winner-card .location {
    font-weight: 600;
    color: #fff;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}


.responsible-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.resp-content {
    flex: 1;
}

.resp-list {
    padding-left: 20px;
    margin: 16px 0;
    color: var(--muted);
}

.resp-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

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

.chip-link {
    font-size: 0.9rem;
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: var(--muted);
}


.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header .icon {
    font-size: 1.5rem;
    transition: 0.3s;
    color: var(--primary);
}

.accordion-header[aria-expanded="true"] .icon {
    transform: rotate(45deg);
}

.accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.accordion-content .inner {
    padding-bottom: 20px;
    color: var(--muted);
}


.contact-info {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 24px 0;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}



.warning {
    display: block;
    margin-top: 12px;
    color: var(--danger);
    font-weight: 600;
}


.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: var(--shadow);
    transform: scale(0.9);
    transition: 0.3s;
}

.modal-backdrop.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close:hover {
    color: #fff;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--muted);
}

.form-group input:not([type="checkbox"]) {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-error {
    color: var(--danger);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: none;
}

.success-message {
    text-align: center;
    animation: fadeIn 0.3s;
}

.icon-success {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@media (max-width: 900px) {

    .grid-4,
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

    .nav {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: var(--bg2);
        padding: 40px;
        transform: translateX(100%);
        transition: 0.3s;
        flex-direction: column;
        justify-content: flex-start;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        font-size: 1.2rem;
    }

    .burger {
        display: flex;
    }

    .winner-card {
        flex: 0 0 100%;
    }

    .slider-track {
        gap: 0;
    }
}

footer a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.page-header {
    padding: 120px 0 60px;
    background: radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    text-align: center;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.legal-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.legal-content h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.legal-content h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: #fff;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary2);
}

.legal-content .last-updated {
    font-size: 0.9rem;
    color: var(--muted);
    opacity: 0.7;
    margin-top: 20px;
}



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

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content .page-header {
        padding-top: 100px;
    }
}

.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th,
td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

th {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
}

td {
    color: var(--muted);
}

tr:last-child td {
    border-bottom: none;
}

.cookie-name {
    font-family: monospace;
    color: var(--primary);
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}



.content-container {
    max-width: 860px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.info-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.help-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(11, 18, 32, 0.8) 100%);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.help-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.content-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
}

.content-container h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
}

.content-container h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.content-container p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.content-container ul {
    margin-left: 20px;
    margin-bottom: 1.5rem;
}

.content-container li {
    margin-bottom: 0.8rem;
    color: var(--text);
    line-height: 1.6;
}

.content-container li::marker {
    color: var(--primary);
}

.content-container strong {
    color: #fff;
    font-weight: 600;
}

.content-container a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.content-container a:hover {
    color: var(--primary2);
}



.content-container .cta-button {
    display: inline-block;
    background: var(--bg);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.2s;
}

.content-container .cta-button:hover {
    background: var(--primary);
    color: #000;
}

.content-container .warning-text {
    color: var(--danger);
    font-weight: 600;
    margin-top: 20px;
    display: block;
}


.content-container .checklist {
    list-style: none;
    padding: 0;
}

.content-container .checklist li {
    padding-left: 30px;
    position: relative;
}

.content-container .checklist li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .content-container .info-card {
        padding: 24px;
    }

    .content-container h1 {
        font-size: 2rem;
    }

    .content-container .page-header {
        padding-top: 100px;
    }
}

.age-gate-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-gate-content {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    box-shadow: var(--shadow);
    animation: fadeIn 0.5s ease-out;
}

.age-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
}

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

.age-warning {
    color: var(--danger);
    font-weight: 600;
    background: rgba(239, 68, 68, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin: 16px 0;
}

.age-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 20px 0;
    z-index: 5000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease-out;
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}


.cookie-modal-content {
    max-width: 500px;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.option-info {
    flex: 1;
    padding-right: 16px;
    text-align: left;
}

.option-info strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.option-info span {
    font-size: 0.85rem;
    color: var(--muted);
}


.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.toggle-switch.disabled input:checked+.slider {
    background-color: #333;
    opacity: 0.5;
    cursor: not-allowed;
}


@media (max-width: 768px) {
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}