/* ===== ОСНОВНЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f1419;
    color: #f0f0f0;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    padding: 0 15px;
}

/* ===== ШАПКА ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #2a3a50;
    margin-bottom: 30px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #2ecc71;
}

.logo span {
    color: #f0f0f0;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #2ecc71;
}

.nav-links a.active {
    color: #2ecc71;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2ecc71;
}

/* ===== ГЕРОЙ-БАННЕР ===== */
.hero {
    background: linear-gradient(135deg, #1a2330 0%, #0f1419 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
    border: 1px solid #2a3a50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-card {
    background-color: #1a2330;
    border-radius: 10px;
    padding: 25px;
    display: inline-block;
    margin-bottom: 25px;
    border: 2px solid #2ecc71;
}

.bonus-amount {
    font-size: 48px;
    font-weight: bold;
    color: #2ecc71;
    line-height: 1;
}

.bonus-text {
    font-size: 20px;
    margin-top: 10px;
}

.cta-button {
    display: inline-block;
    background-color: #2ecc71;
    color: #0f1419;
    font-weight: bold;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

.cta-button:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(46, 204, 113, 0.3);
}

/* ===== РАЗДЕЛ "ИГРЫ" ===== */
.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #2ecc71;
    margin: 10px auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.game-card {
    background-color: #1a2330;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #2a3a50;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #2ecc71;
}

.game-image {
    width: 100%;
    height: 160px;
    background-color: #2a3a50;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    font-size: 14px;
}

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.game-provider {
    color: #2ecc71;
    font-size: 14px;
    margin-bottom: 10px;
}

.play-button {
    display: block;
    background-color: #2a3a50;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: #2ecc71;
    color: #0f1419;
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: #1a2330;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #2a3a50;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2ecc71;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

/* ===== ПОДВАЛ ===== */
.footer {
    border-top: 1px solid #2a3a50;
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
    color: #aaaaaa;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: #2ecc71;
}

.copyright {
    margin-top: 20px;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .bonus-amount {
        font-size: 36px;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}