:root {
    --bg-body: #0f172a;
    --bg-card: #1e293b;
    --bg-input: #334155;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #fbbf24;
    --accent-hover: #f59e0b;
    --danger: #ef4444;
    --success: #22c55e;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

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

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

ul {
    list-style: none;
}

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

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


header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    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-family: var(--font-heading);
    color: var(--accent);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

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

.btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

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

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

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

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--bg-body);
}

.burger-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}


.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%),
        url('../img/hero.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero h1 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

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

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badges i {
    color: var(--success);
}


section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: var(--text-main);
}

.bg-dark-alt {
    background-color: #162032;
}


.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-list i.fa-check {
    color: var(--success);
}

.feature-list i.fa-times {
    color: var(--danger);
}


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

.card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.disclaimer-small {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 15px;
    display: block;
}


.timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.timeline-step {
    flex: 1;
    min-width: 200px;
    position: relative;
}

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


.rg-banner {
    background: linear-gradient(90deg, var(--bg-card) 0%, #28364b 100%);
    padding: 60px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(251, 191, 36, 0.2);
}


.accordion-item {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
}

.accordion-body p {
    padding-bottom: 20px;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}


.form-container {
    max-width: 500px;
    margin: 60px auto;
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

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

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

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

.form-control {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-input);
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--text-main);
    font-family: var(--font-main);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

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

.form-error {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}


.warning-18 {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-top: 1px solid var(--accent);
    padding: 20px;
    z-index: 9990;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}


@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-body);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .burger-menu {
        display: block;
    }

    .auth-buttons {
        display: none;
    }


    .nav-links .mobile-only-auth {
        display: block;
    }

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

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

.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-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-sidebar ul li {
    margin-bottom: 12px;
}

.legal-sidebar a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    padding: 5px 0;
}

.legal-sidebar a:hover,
.legal-sidebar a.active {
    color: var(--accent);
    padding-left: 5px;
}

.legal-content h2 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content p,
.legal-content li {
    color: #cbd5e1;
    margin-bottom: 15px;
    text-align: justify;
}

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

.legal-content strong {
    color: var(--text-main);
}

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

    .legal-sidebar {
        display: none;
    }
}.cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.9rem;
            color: #cbd5e1;
        }

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

        .cookie-table th {
            background-color: var(--bg-card);
            color: var(--accent);
        }

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

        @media (max-width: 768px) {
            .legal-container {
                grid-template-columns: 1fr;
            }
            .legal-sidebar {
                display: none;
            }
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
        }