:root {
    --bg-dark: #020617;
    --bg-card: #0f172a;
    --bg-overlay: rgba(2, 6, 23, 0.95);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-gold: #fbbf24;
    --accent-gold-hover: #d97706;
    --accent-teal: #14b8a6;
    --border-color: #1e293b;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

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

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

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

ul {
    list-style: none;
}


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

.section-padding {
    padding: var(--spacing-lg) 0;
}

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

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

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

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

.btn-outline:hover {
    background-color: var(--accent-teal);
    color: #fff;
}


header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

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

.auth-buttons {
    display: flex;
    gap: 15px;
}


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


.hero {

    background: linear-gradient(rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.8)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-tagline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--accent-gold);
    flex-wrap: wrap;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}


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

.card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card-price {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin: 1rem 0;
}

.official-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    text-align: center;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
    background: rgba(20, 184, 166, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.faq-item {
    background: var(--bg-card);
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: var(--accent-gold);
    font-weight: bold;
}

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

.faq-item p {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
}


.auth-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--border-color);
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checkbox-group input {
    margin-top: 4px;
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}


.age-warning {
    color: #ef4444;
    font-weight: bold;
    margin-top: 10px;
}


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

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

.modal-content {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    text-align: center;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.1);
}


@media (max-width: 768px) {

    .nav-links,
    .auth-buttons {
        display: none;
        width: 100%;
        text-align: center;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .burger-menu {
        display: block;
    }


    .nav-container.active {
        height: auto;
        padding-bottom: 20px;
    }

    .nav-container.active .nav-links,
    .nav-container.active .auth-buttons {
        display: flex;
        flex-direction: column;
        padding-top: 20px;
    }

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

    .cta-group {
        flex-direction: column;
    }
}

.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;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.legal-content h3 {
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

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

.legal-wrapper {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

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

.cookie-table th {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold);
}

.rg-section {
    margin-bottom: 60px;
}

.rg-section h2 {
    color: var(--accent-gold);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.rg-section h3 {
    color: var(--accent-teal);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.rg-section p,
.rg-section li {
    color: var(--text-muted);
    margin-bottom: 15px;
    text-align: justify;
}

.rg-section ul {
    list-style: disc;
    padding-left: 20px;
}

.warning-box {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.info-box {
    background-color: rgba(20, 184, 166, 0.1);
    border: 1px solid var(--accent-teal);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.helpline {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.98);
    border-top: 1px solid var(--accent-gold);
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content p {
    color: #fff;
    font-size: 0.95rem;
    flex: 1;
    min-width: 300px;
}

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


.cookie-modal {
    max-width: 500px;
    text-align: left;
}

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

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

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

.option-info p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
    max-width: 300px;
}

.cookie-modal-actions {
    margin-top: 25px;
    text-align: center;
}


.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    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;
    border-radius: 34px;
}

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

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

input:disabled+.slider {
    background-color: #1e293b;
    opacity: 0.5;
    cursor: not-allowed;
}

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


@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .option-info p {
        max-width: 200px;
    }
}