/*** SLOTS ***/
section.slots {
    padding: 10px 0;
}

.section_wrap.slots_section_wrap {
    background: transparent;
    border: none;
}

section.slots h2 {
    margin: 0;
}

.slots_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 4px;
}

.slots_header_right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slots_nav {
    display: flex;
    gap: 6px;
}

.slots_nav_btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    border: none;
    background: var(--contrast);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.25s ease, box-shadow 0.25s ease;
}

section.slots .sports_all_btn.sports-v2-all {
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 13px;
}

.slots_nav_btn:hover {
    opacity: 0.9;
    box-shadow: var(--hover-darken);
}

.slots_track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.slots_track::-webkit-scrollbar {
    display: none;
}

.slot_item {
    flex: 0 0 160px;
    display: block;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.slot_img {
    width: 100%;
    height: 210px;
    position: relative;
    overflow: hidden;
}

.slot_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slot_item:hover .slot_img img {
    transform: scale(1.05);
}

.slot_play_icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.slot_play_icon svg {
    margin-left: 3px;
}

.slot_item:hover .slot_play_icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: rgba(0, 0, 0, 0.65);
}

.slot_players {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    pointer-events: none;
}

.slot_players_icon {
    flex-shrink: 0;
    opacity: 0.9;
}

.slot_label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 10px 24px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot_item:hover .slot_label {
    opacity: 1;
}

.slot_title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--wh-80);
}

.m_auto {
    margin: auto;
}

.triangle_play {
    width: 11px;
    height: 14px;
    margin-right: 10px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
/*** END SLOTS ***/
