:root {

    --bg-dark: #020617;
    --bg-card: #0f172a;
    --bg-header: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;


    --accent-primary: #0ea5e9;
    --accent-secondary: #0f766e;
    --accent-gold: #c0a062;
    --accent-gold-hover: #d4b06a;


    --border-radius: 8px;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

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

ul {
    list-style: none;
}

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


.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-gold {
    color: var(--accent-gold);
}

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

.mt-2 {
    margin-top: 2rem;
}


.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

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

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

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

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
}


.top-bar {
    background-color: #000;
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 0.5rem 0;
    text-align: center;
    border-bottom: 1px solid #1e293b;
}

.main-header {
    background-color: var(--bg-header);
    padding: 1rem 0;
    border-bottom: 1px solid #1e293b;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1;
}

.logo span {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.nav-buttons {
    display: flex;
    gap: 1rem;
}

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

.legal-stripe {
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}


.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-modal {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid #1e293b;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.1);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}


.hero {
    background: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.9)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
}

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

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-features {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}


.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #1e293b;
    transition: var(--transition);
}

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


.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
}


.faq-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: white;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    display: none;
    border-top: 1px solid #1e293b;
    padding-top: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}


.form-container {
    max-width: 500px;
    margin: 3rem auto;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #1e293b;
}

.form-container.wide {
    max-width: 800px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-dark);
    border: 1px solid #334155;
    border-radius: 4px;
    color: white;
    font-family: inherit;
}

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

.error-msg {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.checkbox-group {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-muted);
}


.rg-hero {
    background: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.9)), url('../img/hero.png');
    background-size: cover;
    padding: 5rem 0;
    text-align: center;
}

.warning-list li {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 1rem;
    margin-bottom: 1rem;
}


@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-header);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid #1e293b;
    }

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

    .hamburger {
        display: block;
    }

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

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

    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }

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

.site-footer {
    background: linear-gradient(180deg, #020617 0%, #020617 100%);
    color: #d4d4d4;
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.8;
    padding: 32px 20px;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.site-footer p {
    margin: 10px auto;
    max-width: 900px;
    color: #e5e7eb;
}

.site-footer strong {
    color: #ffffff;
    font-weight: 600;
}

.site-footer a {
    color: #38bdf8;
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-footer a:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

.site-footer .footer-warning {
    color: #f97316;
    font-weight: bold;
    font-size: 15px;
}

.site-footer .footer-links {
    font-size: 13px;
}

.site-footer .footer-links a {
    color: #9ca3af;
    margin: 0 10px;
}

.site-footer .footer-links a:hover {
    color: #38bdf8;
}

.site-footer .footer-copyright {
    margin-top: 22px;
    font-size: 12px;
    color: #6b7280;
    padding-top: 18px;
    border-top: 1px solid #1f2937;
}

.legal-content h2 {
    color: var(--accent-gold);
    margin-top: 2.5rem;
    font-size: 1.5rem;
    border-bottom: 1px solid #334155;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: white;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-nav {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #334155;
    position: sticky;
    top: 100px;
}

.legal-nav a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid #1e293b;
    font-size: 0.9rem;
}

.legal-nav a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.legal-nav h4 {
    color: white;
    margin-bottom: 1rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #334155;
    padding: 1rem;
    text-align: left;
}

.cookie-table th {
    background-color: #1e293b;
    color: var(--accent-primary);
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.98);
    border-top: 1px solid var(--accent-gold);
    padding: 1.5rem;
    z-index: 9990;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: none;
    animation: slideUp 0.5s ease-out;
}

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

    to {
        transform: translateY(0);
    }
}

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

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

.cookie-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}


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

.cookie-modal {
    background: var(--bg-card);
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius);
    border: 1px solid #334155;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.cookie-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #1e293b;
}

.cookie-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-option-info strong {
    display: block;
    color: white;
    margin-bottom: 0.3rem;
}

.cookie-option-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    max-width: 280px;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #1e293b;
    background: #0b1121;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}


.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #334155;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

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

input:focus+.slider {
    box-shadow: 0 0 1px var(--accent-primary);
}

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


.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.switch.disabled .slider {
    cursor: not-allowed;
    background-color: var(--accent-gold);
}


@media (max-width: 600px) {
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        margin-top: 1rem;
    }

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