* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0c15;
    color: #ffffff;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero секция */
.hero {
    background: linear-gradient(135deg, #0f111a 0%, #1a1f2e 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-badge {
    display: inline-block;
    background: rgba(255,107,53,0.15);
    color: #ff6b35;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
}

.highlight {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: #a0a5b5;
    max-width: 600px;
    margin: 0 auto 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(255,107,53,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255,107,53,0.4);
}

.btn-large {
    padding: 20px 48px;
    font-size: 20px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stats span {
    color: #6c7293;
    font-size: 14px;
}

/* Секция игр */
.games {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 120px));
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
}

.game-card {
    background: #1a1f2e;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    transition: transform 0.2s;
}

.game-card:hover {
    transform: translateY(-4px);
}

.game-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 12px;
}

.game-name {
    font-size: 14px;
    font-weight: 500;
}

.games-more {
    text-align: center;
    color: #6c7293;
    margin-top: 24px;
}

/* Преимущества */
.benefits {
    background: #0f111a;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.benefit-card {
    text-align: center;
    padding: 32px 24px;
    background: #1a1f2e;
    border-radius: 24px;
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #a0a5b5;
    font-size: 14px;
}

/* Как это работает */
.how-it-works {
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step p {
    color: #a0a5b5;
}

/* Финальный CTA */
.final-cta {
    background: linear-gradient(135deg, #1a1f2e 0%, #0f111a 100%);
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.final-cta p {
    color: #a0a5b5;
    margin-bottom: 32px;
}

/* Футер */
footer {
    padding: 40px 0;
    text-align: center;
    color: #6c7293;
    font-size: 14px;
}

footer p {
    margin-bottom: 8px;
}