/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --gold-color: #f4a261;
    --text-color: #ffffff;
    --text-secondary: #e0e0e0;
    --bg-dark: #0f0f1e;
    --bg-section: #1a1a2e;
    --border-color: #2a2a3e;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav {
    display: none;
    flex-direction: column;
    padding: 0 20px 20px;
    background: rgba(26, 26, 46, 0.98);
}

.nav.active {
    display: flex;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-size: 16px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--gold-color);
    padding-left: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2) 0%, rgba(244, 162, 97, 0.2) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #c73650);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.btn-play {
    margin-left: 12px;
    background: linear-gradient(135deg, #00e676, #00c853);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.5);
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 230, 118, 0.7);
}

@media (max-width: 480px) {
    .btn-play {
        margin-left: 0;
        margin-top: 12px;
        display: block;
    }
}

/* Sections */
.section {
    padding: 60px 20px;
    position: relative;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--gold-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-color));
    border-radius: 3px;
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 20px;
}

.content-text a {
    color: var(--gold-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-text a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 20px;
    color: var(--gold-color);
}

.card-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold-color);
}

.card-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: var(--text-color);
}

.intro-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px 20px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
}

/* Lists */
.features-list,
.steps-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.features-list li,
.steps-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
    font-size: 20px;
}

.steps-list li {
    counter-increment: step-counter;
    padding-left: 50px;
}

.steps-list {
    counter-reset: step-counter;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.features-list li strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Section Backgrounds */
.registration-section {
    background: rgba(22, 33, 62, 0.5);
}

.games-section {
    background: rgba(233, 69, 96, 0.05);
}

.bonuses-section {
    background: rgba(244, 162, 97, 0.05);
}

.security-section {
    background: rgba(22, 33, 62, 0.5);
}

.faq-section {
    background: rgba(233, 69, 96, 0.05);
}

/* FAQ */
.faq-list {
    margin: 30px 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        max-width: 750px;
    }

    .menu-toggle {
        display: none;
    }

    .nav {
        display: flex;
        flex-direction: row;
        padding: 0;
        background: transparent;
    }

    .nav-link {
        border-bottom: none;
        padding: 0 15px;
        margin: 0 5px;
    }

    .header-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 40px;
    }

    .content-text {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1000px;
    }

    .hero {
        padding: 120px 20px;
    }

    .section {
        padding: 80px 20px;
    }
}

/* Animation for scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

