.hero-area {
    background: linear-gradient(rgba(10,10,10,0.7), rgba(10,10,10,0.8)),
    url('/img/background/mafia_game.png') center center/cover no-repeat;
    color: white;
    padding: 180px 0 140px;
}

.hero-title {
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #174a9c, #2563eb);
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(23, 74, 156, 0.22);
    transition:
            transform 0.2s ease,
            box-shadow 0.2s ease,
            opacity 0.2s ease;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #174a9c, #2563eb);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(23, 74, 156, 0.32);
}

.section-gap {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    color: #1c5ec5;
    /*color: rgba(44, 42, 42, 0.92);*/
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 18px;
    color: rgba(44, 42, 42, 0.92);
    max-width: 850px;
    margin: auto;
    line-height: 1.8;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all .3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card i {
    font-size: 42px;
    color: #174a9c;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

.dark-section {
    background: #111;
    color: white;
}

.dark-section .section-title p {
    color: rgba(255,255,255,0.75);
}

.steps-box {
    text-align: center;
    padding: 30px;
}

.steps-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #174a9c;
    color: white;
    font-size: 32px;
    line-height: 80px;
    margin: 0 auto 25px;
    font-weight: 700;
}

.stats-box {
    text-align: center;
    padding: 30px 20px;
}

.stats-box h3 {
    font-size: 48px;
    font-weight: 700;
    color: #174a9c;
}

.club-card {
    background: #1b1b1b;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.club-card h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
}

.club-card ul {
    padding-left: 20px;
}

.club-card li {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
}

.cta-section {
    background: linear-gradient(135deg, #0F1C2CFF, #0f1c2c);
    color: white;
    text-align: center;
    padding: 120px 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 20px;
    max-width: 850px;
    margin: auto auto 40px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

@media(max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .section-title h2 {
        color: black;
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 36px;
    }
}

.hero-area .primary-btn {
    margin-top: 10px;
}