:root {
    --primary: #0056b3;
    --primary-dark: #004494;
    --secondary: #20c997;
    --text-dark: #212529;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border: #dee2e6;
    --radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --font-main: 'Inter', sans-serif;


    --primary-color: #0056b3;
    --primary-text: #0056b3;
    --bg-color: #ffffff;
    --text-color: #111111;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 15px 0 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: #d00000;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
}

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

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

.hero-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
    margin-top: 15px;
}

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

.countdown span {
    font-weight: 700;
    font-family: monospace;
    font-size: 1.2rem;
}

.btn-cta {
    background-color: var(--secondary);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
    background-color: #19a17a;
    color: var(--white);
}

.page-content {
    flex: 1;
    padding-bottom: 40px;
}

.section-hero {
    text-align: center;
    padding: 40px 0;
    background-color: var(--white);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.9rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.widget-container {
    max-width: 600px;
    margin: -20px auto 40px auto;
    position: relative;
    z-index: 10;
}

.widget-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-main);
}

.summary-box {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 20px;
}

.price-display {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.btn-primary {
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

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

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--text-dark);
}

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

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

.info-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.data-table th,
.data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    background-color: var(--bg-light);
    color: var(--primary);
}

.ball-list {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.ball {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.result-card {
    border: 1px solid var(--border);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--white);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 10px;
    border-bottom: 2px solid var(--border);
}

.cart-table td {
    padding: 15px 10px;
    border-bottom: 1px solid var(--border);
}

.cart-actions button {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
}


.disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    z-index: 2000;
    display: none;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        border-bottom: 1px solid var(--border);
        text-align: center;
    }

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

    .burger {
        display: block;
    }

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

    .data-table {
        font-size: 0.85rem;
    }
}

.footer-imgs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-imgs img {
    padding: 12px;
    margin: 12px;
    height: 55px;
    background: white;
    border-radius: 10px;
}

body.age-locked {
    overflow: hidden;
}

.btn-primary,
.btn-secondary {
    font-family: inherit;
    font-size: 14px;
    border-radius: 999px;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.35);
}

.btn-primary:hover {
    background: #00408a;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 64, 138, 0.45);
}

.btn-secondary {
    background: #ffffff;
    color: var(--primary-text);
    border: 1px solid #d0d7e3;
}

.btn-secondary:hover {
    background: #f3f6fb;
}

.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0, 86, 179, 0.25), rgba(0, 0, 0, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-box {
    background: #ffffff;
    max-width: 420px;
    width: 90%;
    padding: 24px 24px 20px;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.age-gate-box h2 {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--primary-text);
}

.age-gate-box p {
    margin: 0 0 18px;
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

.age-gate-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    z-index: 9998;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-text h3 {
    margin: 0 0 4px;
    font-size: 16px;
    color: var(--primary-text);
}

.cookie-text p {
    margin: 0;
    font-size: 13px;
    color: #444444;
    max-width: 700px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.cookie-modal.active {
    display: block;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    max-width: 520px;
    width: 92%;
    padding: 20px 20px 18px;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.cookie-modal-content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: var(--primary-text);
}

.cookie-modal-content p {
    margin: 0 0 14px;
    font-size: 13px;
    color: #444444;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #edf0f5;
}

.cookie-option:last-of-type {
    border-bottom: 1px solid #edf0f5;
}

.cookie-option strong {
    font-size: 14px;
    color: #222222;
}

.cookie-option p {
    margin: 3px 0 0;
    font-size: 12px;
    color: #555555;
}

.cookie-option.disabled {
    opacity: 0.7;
}

.cookie-modal-actions {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #d0d7e3;
    transition: 0.2s;
    border-radius: 999px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    transition: 0.2s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

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

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

.cookie-floating-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 999px;
    border: none;
    padding: 10px 16px;
    font-size: 13px;
    box-shadow: 0 6px 14px rgba(0, 86, 179, 0.45);
    cursor: pointer;
    z-index: 9997;
    display: none;
}

.cookie-floating-btn:hover {
    background: #00408a;
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
    }
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

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

.history-table th,
.history-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.history-table th {
    background-color: #f1f3f5;
    color: var(--primary);
    font-weight: 700;
}

.history-table tr:hover {
    background-color: #f8f9fa;
}

.small-balls {
    display: flex;
    gap: 5px;
}

.small-balls .ball {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    background-color: var(--text-dark);
}

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

.claim-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s;
}

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

.claim-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}