/* =========================================
   ESTILOS NATIVOS DEL SLIDER Y PROPORCIONES
   ========================================= */
/* =========================================
   ESTILOS NATIVOS DEL SLIDER Y PROPORCIONES
   ========================================= */
.mk-hero-sportbet {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #0F1419;
    overflow-anchor: none; /* ESTO BLOQUEA EL AUTO-SCROLL DEL NAVEGADOR */
}

.mk-hero-sportbet__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    user-select: none;
}

/* OVERLAY SUTIL (18%) */
.mk-hero-sportbet__wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 18%;
    background: linear-gradient(to top, rgba(15, 20, 25, 0.85) 0%, rgba(15, 20, 25, 0) 100%);
    pointer-events: none;
    z-index: 5;
}

@media (min-width: 1024px) {
    .mk-hero-sportbet__wrapper {
        aspect-ratio: 21 / 9;
    }
}

.mk-hero-sportbet__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-out;
}

.mk-hero-sportbet__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.mk-hero-sportbet__link {
    display: block;
    width: 100%;
    height: 100%;
}

.mk-hero-sportbet__img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center center;
    pointer-events: none;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* =========================================
   CONTROLES: FLECHAS LIMPIAS
   ========================================= */
.mk-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 32px;
    z-index: 10;
    transition: color 0.3s ease, transform 0.2s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1;
}

.mk-slider-btn:hover { 
    color: #0CD664;
    transform: translateY(-50%) scale(1.15);
}

.mk-prev { left: 16px; }
.mk-next { right: 16px; }

/* =========================================
   CONTROLES: LÍNEAS (ELEVADAS SOBRE LA BARRA)
   ========================================= */
.mk-slider-dots {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 15;
}

@media (min-width: 1024px) {
    .mk-slider-dots {
        bottom: 55px;
    }
}

.mk-dot {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.mk-dot.active { 
    background: #ffffff;
    opacity: 1;
}