:root {



    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --bg-input: rgba(15, 23, 42, 0.6);


    --text-main: #f8fafc;
    --text-muted: #94a3b8;


    --accent-gold: #fbbf24;
    --accent-gold-hover: #d97706;
    --accent-blue: #38bdf8;
    --accent-blue-dark: #0ea5e9;


    --danger: #ef4444;
    --success: #10b981;


    --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --glow-blue: 0 0 20px rgba(56, 189, 248, 0.25);


    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}


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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);

    background-image: radial-gradient(circle at 50% 0%, #1e293b 0%, #0f172a 70%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    color: white;
    letter-spacing: -0.02em;
}


.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    text-align: center;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}


.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
    color: #0f172a;
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(14, 165, 233, 0.4);
    filter: brightness(1.1);
}


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

.btn-outline:hover {
    background: var(--accent-gold);
    color: #0f172a;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}


header {
    background-color: rgba(15, 23, 42, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 2px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-main);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-blue);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

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


.hero {
    position: relative;
    background: linear-gradient(90deg, #0f172a 0%, rgba(15, 23, 42, 0.85) 50%, rgba(15, 23, 42, 0.4) 100%),
        url('../img/hero.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 5% 6rem;
    display: flex;
    align-items: center;
    min-height: 75vh;
}

.hero-content {
    max-width: 750px;
    animation: fadeIn 1s ease-out;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(251, 191, 36, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
    backdrop-filter: blur(4px);
}

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

    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-note {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #64748b;
    opacity: 0.8;
}


section {
    padding: 5rem 5%;
    position: relative;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-align: center;
    color: white;
}

.bg-darker {
    background-color: rgba(0, 0, 0, 0.2);
}

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

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


.card {
    background: var(--bg-card);
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: var(--shadow-card), var(--glow-blue);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(56, 189, 248, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--accent-blue);
}

.card h3 {
    color: var(--text-main);
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.card p {
    color: var(--text-muted);
    line-height: 1.7;
}


.auth-container {
    max-width: 500px;
    margin: 4rem auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-blue);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.form-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.form-check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--accent-blue);
}


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

.modal-box {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    max-width: 550px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease-out;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--accent-blue);
    z-index: 998;
    flex-wrap: wrap;
    gap: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}


.step-item {
    text-align: center;
    padding: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.rg-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.rg-list li::before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}


details {
    background: rgba(30, 41, 59, 0.4);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: background 0.3s;
}

details[open] {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

summary {
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-blue);
}

details[open] summary::after {
    content: '-';
}

details p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}


footer {
    background-color: var(--bg-darker);
    padding: 4rem 5% 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #64748b;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
    color: #475569;
}

.age-18 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--danger);
    color: var(--danger);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 10px;
}


.chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-blue);
    color: #0f172a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(56, 189, 248, 0.4);
    z-index: 90;
    font-size: 1.8rem;
    transition: transform 0.3s;
}

.chat-btn:hover {
    transform: scale(1.1);
}


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

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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


@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        text-align: center;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

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

    .hero p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .auth-buttons {
        display: none;
    }

    .auth-container {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .modal-box {
        padding: 2rem;
    }
}

.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-wrapper {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 5%;
}

.legal-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-card);
}

.legal-content h1 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.legal-content h2 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-content p,
.legal-content li {
    color: #cbd5e1;
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.8;
}

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

.legal-content strong {
    color: white;
}

.highlight-box {
    background: rgba(56, 189, 248, 0.1);
    border-left: 4px solid var(--accent-blue);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9rem;
}

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

.cookie-table th {
    background-color: rgba(15, 23, 42, 0.8);
    color: var(--accent-blue);
    font-weight: 600;
}

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