:root {
    --bg: #0b0f14;
    --surface: #111826;
    --muted: #182132;
    --text: #e6eef9;
    --text-dim: #a7b3c6;
    --primary: #16a34a;
    --primary-hover: #15803d;
    --accent: #f0ad4e;
    --danger: #ef4444;
    --border: #223049;
    --focus: #38bdf8;
    --success: #22c55e;
    --font-main: 'Inter', sans-serif;
}


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

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: 0.3s;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}


h1,
h2,
h3,
h4 {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

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


.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.2s;
}

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

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

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

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

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

.btn-full {
    width: 100%;
}


header {
    background: var(--surface);
    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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.nav-links a {
    color: var(--text-dim);
    font-weight: 500;
}

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

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


.hero {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--muted), var(--bg));
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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


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

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.2s;
}

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

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


.game-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.tab-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.num-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--muted);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.num-btn.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.buy-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-panel {
    background: var(--surface);
    padding: 20px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 90px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.cart-total {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 2px solid var(--border);
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}


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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dim);
}

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

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


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--surface);
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dim);
}


.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b0f14;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 5000;
    display: none;
}

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


footer {
    background: var(--muted);
    padding: 50px 0 20px;
    margin-top: auto;
    border-top: 1px solid var(--border);
}

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


.responsible-badge {
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}


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

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

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }
}

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

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}


.hero-extended {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top right, #1a2436, var(--bg));
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(11, 15, 20, 0.8), var(--bg)),
        url('../img/hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(22, 163, 74, 0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--primary);
}

.hero-extended h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-extended p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.trust-icons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.trust-icons i {
    color: var(--primary);
    margin-right: 8px;
}


.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.jackpot-card {
    background: var(--muted);
    border: 1px solid var(--border);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

.jackpot-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.jackpot-card.accent-border {
    border-color: var(--primary);
    background: linear-gradient(to bottom, var(--surface), var(--muted));
}

.jp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.jp-header img {
    height: 120px;
    padding: 5px;
    border-radius: 5px;
    background: #fff;
}

.jp-amount {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.jp-timer {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
}


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

.feature-item {
    text-align: left;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    border: 1px solid var(--border);
}


.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin-top: 25px;
}


.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 40px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-weight: 300;
    font-size: 1.5rem;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 20px 20px;
    margin: 0;
    color: var(--text-dim);
    line-height: 1.6;
}


.rg-banner {
    background: #3f1010;
    border-top: 1px solid #7f1d1d;
    padding: 30px 0;
}

.rg-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rg-icon {
    font-size: 2rem;
    color: var(--danger);
}

.rg-text {
    flex: 1;
}

.rg-text h3 {
    margin: 0;
    color: #fca5a5;
    font-size: 1.1rem;
}

.rg-text p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #fecaca;
}


.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-dim);
    border: 1px solid var(--border);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}


@media (max-width: 768px) {
    .hero-extended h1 {
        font-size: 2.5rem;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step-line {
        display: none;
    }

    .trust-icons {
        flex-direction: column;
        gap: 10px;
    }

    .rg-content {
        text-align: center;
        flex-direction: column;
    }
}

.help-box {
    background: linear-gradient(to right, #1f2937, var(--surface));
    border-left: 5px solid var(--primary);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.warning-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.warning-list i {
    color: var(--danger);
    margin-top: 5px;
}

.quick-exit {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nz-footer {
    background: #020617;
    color: #f9fafb;
    padding: 40px 20px 24px;
    font-size: 0.9rem;
}

.nz-footer a {
    color: #e5e7eb;
    text-decoration: underline;
}

.nz-footer a:hover {
    text-decoration: none;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-lead {
    margin-bottom: 12px;
}

.footer-text {
    margin: 6px 0;
    color: #d1d5db;
}

.footer-text.small {
    font-size: 0.8rem;
}

.age-warning {
    margin: 18px 0 10px;
    font-weight: 600;
    color: #f97373;
}

.footer-nav {
    margin: 8px 0 20px;
}

.footer-nav .sep {
    margin: 0 6px;
    color: #6b7280;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 16px 0 18px;
}

.footer-logo {
    background: #111827;
    border-radius: 10px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
}

.footer-logo img {

    height: 50px;
}

.age-badge {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid #f97373;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.footer-copy {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #9ca3af;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}