.benefits-section {
    position: relative;
    width: 100%;
    background-color: #0C0C0D;
    background-image: 
        linear-gradient(to bottom, #0C0C0D 0%, rgba(12, 12, 13, 0) 40%),
        url('../../../img/dq2026/background2.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 80px 20px 100px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.benefits-section-battle {
    position: relative;
    width: 100%;
    background-color: #0C0C0D;
    background-image: 
        linear-gradient(to bottom, #0C0C0D 0%, rgba(12, 12, 13, 0) 40%),
        url('../../../img/dq2026/background2.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 80px 20px 280px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.benefits-section-battle-prize {
    position: relative;
    width: 100%;
    background-color: #0C0C0D;
    background-image: 
        linear-gradient(to bottom, #0C0C0D 0%, rgba(12, 12, 13, 0) 40%),
        url('../../../img/dq2026/background2.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 80px 20px 80px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.benefits-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.benefits-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #B0B0B0;
    text-align: center;
    margin: 0 0 60px 0;
}

.benefits-carousel {
    display: flex;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    /* This makes transitions buttery smooth */
    scroll-behavior: smooth; 
    /* This enables the "Apple-style" snapping */
    scroll-snap-type: x mandatory; 
    scrollbar-width: none;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.benefits-carousel::-webkit-scrollbar {
    display: none;
}

.benefit-card {
    /* 350px allows 3 full cards + gaps to fit in 1100px-1200px and leaves a peak for the 4th */
    flex: 0 0 350px; 
    background-color: #38393E; 
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    min-height: 380px; 
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    /* Ensures the card snaps to the left edge when scrolling */
    scroll-snap-align: start; 
}

.benefit-card-prize {
    /* 350px allows 3 full cards + gaps to fit in 1100px-1200px and leaves a peak for the 4th */
    flex: 0 0 350px; 
    background-color: #38393E; 
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    min-height: 300px; 
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    /* Ensures the card snaps to the left edge when scrolling */
    scroll-snap-align: start; 
}

.benefit-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: #3E3F45;
}

.upper-part {
    display: flex;
    flex-direction: row;
    align-items: center; 
    gap: 20px;           
    margin-bottom: 32px; 
}

.upper-part-prize {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px;           
    margin-bottom: 32px; 
}

.card-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #00BC74; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;      
}

.benefit-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0;           
}

.benefit-card-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #E0E0E0;
    margin: 0;
}

.benefit-card-title-prize {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0;           
}

.benefit-card-text-prize {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.5;
    color: #E0E0E0;
    margin: 0;
    text-align: center;
    margin-top: 40px;
}

.carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: #00BC74;
    border-color: #00BC74;
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 32px;
    }
    
    .benefit-card {
        flex: 0 0 280px; /* Smaller width for mobile peak */
        min-height: auto;
        padding: 30px 24px;
    }

    /* Keep buttons on mobile if you like, or hide them: */
    .carousel-nav {
        display: flex; 
        justify-content: center;
        margin-right: 0;
    }
}

.benefits-carousel {
    display: flex;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth; 
    scroll-snap-type: x mandatory; 
    scrollbar-width: none;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    /* This allows cards to peak outside the 1200px container if the screen is wider */
    clip-path: inset(0 -100vw 0 0); 
}

.benefit-card {
    /* Adjusted width to ensure 3 fit in 1200px container with gaps, 4th peaks */
    flex: 0 0 360px; 
    scroll-snap-align: start;
    background-color: #38393E; 
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    min-height: 380px; 
    box-sizing: border-box;
}

.carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
}

.nav-btn {
    width: 40px; /* Smaller as requested */
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn svg {
    width: 18px; /* Proportionally smaller icon */
    height: 18px;
}

@media (max-width: 768px) {
    .benefit-card {
        flex: 0 0 290px; /* Adjusted for better mobile peak */
    }
    
    .carousel-nav {
        justify-content: center; /* Center buttons on mobile for thumb access */
        margin-top: 20px;
    }
}