:root {

    --bg-main: #0b1120;
    --bg-secondary: #1e293b;
    --bg-card: rgba(30, 41, 59, 0.7);


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


    --accent-gold: #f59e0b;
    --accent-gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    --accent-teal: #14b8a6;
    --accent-danger: #ef4444;


    --border-light: rgba(255, 255, 255, 0.08);
    --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 15px rgba(245, 158, 11, 0.3);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --header-height: 70px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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


h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -1px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

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

.text-muted {
    color: var(--text-muted);
}

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


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-gold-gradient);
    color: #0f172a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

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

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}


.top-strip {
    background: linear-gradient(90deg, #000, #1e1e1e);
    color: var(--text-muted);
    font-size: 0.75rem;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.main-header {
    background-color: rgba(11, 17, 32, 0.85);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-gold);
    margin-left: 4px;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    gap: 12px;
}

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


.hero {
    min-height: calc(100vh - var(--header-height));

    background:
        linear-gradient(to bottom, rgba(11, 17, 32, 0.3) 0%, rgba(11, 17, 32, 1) 100%),
        linear-gradient(90deg, rgba(11, 17, 32, 0.9) 0%, rgba(11, 17, 32, 0.6) 100%),
        url('../img/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
    animation: fadeIn Up 0.8s ease-out;
}

.hero-disclaimer {
    margin-top: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    border-left: 3px solid var(--accent-gold);
    padding-left: 15px;
}


.trust-strip {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 30px 0;
}

.badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.badge-item span {
    font-size: 1.4rem;

    text-shadow: 0 0 10px rgba(20, 184, 166, 0.4);
}


section {
    padding: 100px 0;
}

section:nth-child(even) {
    background-color: var(--bg-secondary);
}


.offer-card,
.draw-card,
.auth-card,
.gate-content {
    background: var(--bg-card);
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}


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

.offer-card {
    padding: 40px;
}

.offer-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
}

.offer-list li::before {
    content: '✓';
    color: var(--accent-teal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.no-offer-list li::before {
    content: '✕';
    color: var(--accent-danger);
}


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

.draw-card {
    padding: 35px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}


.draw-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.draw-card:hover {
    transform: translateY(-10px);
    border-color: rgba(251, 191, 36, 0.3);
}

.draw-card:hover::before {
    opacity: 1;
}

.draw-card h3 {
    margin-bottom: 5px;
    color: #fff;
}

.draw-price {
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 800;
    margin: 20px 0 10px;
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
    counter-reset: step-counter;
}

.step-icon {
    font-size: 2rem;
    font-weight: 800;
    width: 60px;
    height: 60px;
    background: rgba(20, 184, 166, 0.1);
    color: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(20, 184, 166, 0.3);
}


.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-teal);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}


.auth-wrapper {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: radial-gradient(circle at center, #1e293b 0%, #0b1120 100%);
}

.auth-card {
    padding: 50px;
    width: 100%;
    max-width: 500px;
}

.register-layout {
    max-width: 1000px;
    grid-template-columns: 1fr 0.8fr;
    display: grid;
    gap: 60px;
}

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

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

.form-control {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-main);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}


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

.checkbox-group input {
    margin-top: 4px;
    accent-color: var(--accent-gold);
}


#age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gate-content {
    max-width: 500px;
    text-align: center;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}


.legal-strip {
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.legal-strip a {
    text-decoration: underline;
    margin: 0 10px;
}

.legal-strip a:hover {
    color: #fff;
}


@media (max-width: 900px) {

    .about-grid,
    .register-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .register-layout>div:last-child {
        border-left: none;
        border-top: 1px solid var(--border-light);
        padding-left: 0;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-main);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        border-top: 1px solid var(--border-light);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }


    .nav-link {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .offer-card {
        padding: 25px;
    }
}


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

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

.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;
}

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.success-content {
    background: var(--bg-card);
    border: 1px solid var(--accent-gold);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    animation: bounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounce {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.legal-content {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-card);
}

.legal-content h1 {
    color: var(--accent-gold);
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.legal-content h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-teal);
    padding-left: 15px;
}

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

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

.legal-content li {
    margin-bottom: 10px;
}

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


@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }

    .legal-content h1 {
        font-size: 1.8rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }
}
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    display: none; 
    max-width: 600px;
    margin: 0 auto;
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text h4 { margin-bottom: 5px; font-size: 1rem; color: var(--accent-gold); }
.cookie-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

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


.cookie-settings-panel {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.settings-info strong { font-size: 0.9rem; display: block; }
.settings-info p { font-size: 0.75rem; color: var(--text-muted); }

.settings-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-gold);
}

@media (max-width: 600px) {
    .cookie-container { flex-direction: column; text-align: center; }
    .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: 16px 16px 0 0; }
}