.hero-bg {
    background-image: url('https://filetx.3633yx.com/240625-e340585cfafb486a8902ee384890b050.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.9) 0%, rgba(76, 175, 80, 0.8) 100%)
}

.feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(123, 104, 238, 0.1);
    transition: all 0.3s ease
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(123, 104, 238, 0.2);
    border-color: rgba(123, 104, 238, 0.3)
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.feature-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #7B68EE 0%, #9B59B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D2D2D
}

.feature-body p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem
}

.gameplay-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(123, 104, 238, 0.1);
    transition: all 0.3s ease
}

.gameplay-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(123, 104, 238, 0.2);
    border-color: rgba(123, 104, 238, 0.3)
}

.gameplay-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7B68EE 0%, #9B59B6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.4)
}

.gameplay-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2D2D2D
}

.gameplay-desc {
    color: #666;
    line-height: 1.6
}

.section-title {
    position: relative;
    display: inline-block;
    width: 100%
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px
}

@media (max-width: 768px) {
    .feature-header {
        flex-direction: column;
        text-align: center
    }

    .feature-icon {
        font-size: 2rem
    }

    .feature-title {
        font-size: 1.25rem
    }

    .gameplay-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem
    }
}