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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.header-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

/* Play Button - яркая кнопка ИГРАТЬ */
.play-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #00c853 0%, #00e676 50%, #69f0ae 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.play-button:active {
    transform: translateY(-1px);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

/* Casino Link */
.casino-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.casino-link:hover {
    opacity: 0.8;
}

/* Main Content */
.main {
    padding: 2rem 0;
}

.intro-section,
.content-section {
    background: var(--white);
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.intro-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.intro-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.content-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.content-section a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--primary-color);
}

/* Lists */
.features-list,
.advantages-list,
.games-list,
.providers-list,
.bonuses-list,
.payment-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.features-list li,
.advantages-list li,
.games-list li,
.providers-list li,
.bonuses-list li,
.payment-list li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: var(--bg-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.features-list li:hover,
.advantages-list li:hover,
.games-list li:hover,
.providers-list li:hover,
.bonuses-list li:hover,
.payment-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro-section .features-list li {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--white);
    color: var(--white);
}

/* Ordered List */
.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
    margin: 1.5rem 0;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 1rem 1rem 3.5rem;
    margin-bottom: 0.75rem;
    background: var(--bg-color);
    border-radius: 8px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.steps-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .intro-section,
    .content-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .main {
        padding: 1rem 0;
    }

    .steps-list li {
        padding-left: 3rem;
    }

    .steps-list li::before {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.85rem;
        left: 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.75rem;
    }

    .header {
        padding: 1.5rem 0;
    }

    .intro-section,
    .content-section {
        padding: 1rem;
    }

    .content-section h2 {
        font-size: 1.3rem;
    }

    body {
        font-size: 15px;
    }
}

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

/* Performance Optimizations */
.intro-section,
.content-section {
    will-change: transform;
}

/* Print Styles */
@media print {
    .header,
    .footer {
        background: var(--white);
        color: var(--text-color);
    }
    
    .intro-section {
        background: var(--white);
        color: var(--text-color);
    }
}

