    /* Estilos del hero */
    .hero-slide {
        position: relative;
        padding-bottom: 100px;
        /* Espacio para el solapamiento */
    }

    /* SECCIÓN DE CAMPEONES - SOLAPADA */
    .champions-section {
        position: relative;
        margin-top: -150px;
        /* Solapamiento negativo */
        z-index: 10;
        padding-bottom: 60px;
    }

    /* Grid de campeones */
    .champions-grid {
        background: transparent;
        border-radius: 30px;
        padding: 20px;
    }

    /* Badge de campeones */
    .champions-badge {
        text-align: center;
        font-size: 25px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    /* Estilo de tarjeta inspirado en la imagen */
    .champion-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        text-align: center;
        padding: 25px 20px 25px 20px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        position: relative;
    }

    .champion-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    /* Contenedor de la imagen circular */
    .champion-image {
        width: 119px;
        height: 119px;
        margin: -80px auto 10px;
        /* Ajustado el margen superior para que no suba tanto, ya que la imagen es más pequeña */
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .champion-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }



    /* Shadow personalizado */
    .shadow-lg-custom {
        box-shadow: 0 10px 25px -5px rgba(62, 166, 255, 0.3),
            0 8px 10px -6px rgba(62, 166, 255, 0.2);
        transition: box-shadow 0.3s ease;
    }

    .shadow-lg-custom:hover {
        box-shadow: 0 20px 35px -8px rgba(62, 166, 255, 0.5),
            0 10px 15px -6px rgba(62, 166, 255, 0.3);
    }

    /* Ajustes para móviles */
    @media (max-width: 768px) {
        .champions-section {
            margin-top: -60px;
        }

        .champion-image {
            width: 120px;
            height: 120px;
            margin: -80px auto 15px;
        }
    }

    /* Estilos específicos para móviles */
    @media (max-width: 768px) {
        .champions-grid {
            gap: 16px;
            padding: 0 12px;
        }

        /* Tarjetas más compactas */
        .card {
            border-radius: 20px !important;
        }

        /* Imagen de portada más pequeña */
        .card .card-img-top {
            height: 120px !important;
            /* Reducida de 200px */
        }

        /* Imagen circular más pequeña */
        .champion-image {
            width: 90px !important;
            height: 90px !important;
            margin: -45px auto 12px !important;
        }

        /* Textos más pequeños */
        .champion-name {
            font-size: 16px !important;
            margin: 5px 0 !important;
        }

        .champion-icon {
            font-size: 14px;
        }

        .p-3 {
            padding: 12px !important;
        }

        /* Reducir márgenes */
        .mb-4 {
            margin-bottom: 16px !important;
        }
    }

    /* Estilos base (tu diseño original) */
    .news-carousel-wrap {
        position: relative;
    }



    .news-arrow-prev {
        left: -20px;
    }

    .news-arrow-next {
        right: -20px;
    }

    /* Track de noticias */
    .news-track-outer {
        overflow: hidden;
    }

    .news-track {
        display: flex;
        transition: transform 0.3s ease;
    }

    /* Tarjeta de noticia - Tu diseño original */
    article {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: transparent;
        padding: 0.5rem;
        border-radius: 0.75rem;
        transition: all 0.3s ease;
    }

    /* ========================================
   RESPONSIVE - SOLO AJUSTES DE TAMAÑO
   ======================================== */

    /* Tablet (768px - 991px) */
    @media (max-width: 991px) {

        /* Flechas más pequeñas */
        .news-arrow {
            width: 35px;
            height: 35px;
        }

        .news-arrow-prev {
            left: -15px;
        }

        .news-arrow-next {
            right: -15px;
        }

        /* Imagen más pequeña */
        article .flex-shrink-0 img {
            width: 300px !important;
            height: 240px !important;
        }

        /* Padding reducido */
        article .px-5 {
            padding-left: 1.5rem !important;
            padding-right: 1.5rem !important;
        }

        /* Texto más pequeño */
        article h2 {
            font-size: 1.3rem !important;
        }

        article p {
            font-size: 0.85rem !important;
        }
    }

    /* Mobile (576px - 767px) */
    @media (max-width: 767px) {

        /* Flechas más pequeñas */
        .news-arrow {
            width: 30px;
            height: 30px;
        }

        .news-arrow-prev {
            left: -12px;
        }

        .news-arrow-next {
            right: -12px;
        }

        .news-arrow i {
            font-size: 14px;
        }

        /* Contenedor con padding lateral */
        .news-carousel-wrap {
            padding: 0 5px;
        }

        /* Tarjeta en columna (vertical) */
        article {
            flex-direction: column !important;
            text-align: center;
            gap: 1rem;
        }

        /* Imagen centrada y más pequeña */
        article .flex-shrink-0 {
            width: 100%;
            padding: 0 !important;
        }

        article .flex-shrink-0 img {
            width: 100% !important;
            height: 220px !important;
            object-fit: cover;
        }

        /* Texto centrado */
        article .flex-grow-1 {
            width: 100%;
            padding: 0 1rem !important;
            margin-right: 0 !important;
        }

        article h2 {
            font-size: 1.1rem !important;
            text-align: center;
        }

        article p {
            font-size: 0.8rem !important;
            text-align: center;
        }
    }

    /* Mobile pequeño (menos de 576px) */
    @media (max-width: 575px) {

        /* Flechas más pequeñas */
        .news-arrow {
            width: 28px;
            height: 28px;
        }

        .news-arrow-prev {
            left: -10px;
        }

        .news-arrow-next {
            right: -10px;
        }

        /* Imagen más pequeña */
        article .flex-shrink-0 img {
            height: 180px !important;
        }

        /* Padding reducido */
        article .px-5 {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }

        article h2 {
            font-size: 1rem !important;
        }

        article p {
            font-size: 0.75rem !important;
        }
    }

    /* Mobile muy pequeño (menos de 400px) */
    @media (max-width: 400px) {
        .news-arrow {
            width: 24px;
            height: 24px;
        }

        .news-arrow i {
            font-size: 12px;
        }

        article .flex-shrink-0 img {
            height: 150px !important;
        }

        article h2 {
            font-size: 0.9rem !important;
        }

        article p {
            font-size: 0.7rem !important;
        }
    }



    /* Estilos para toast */
    .custom-toast {
        position: fixed;
        top: 20px;
        right: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        padding: 16px 20px;
        z-index: 10000;
        transform: translateX(400px);
        transition: transform 0.3s ease;
        border-left: 4px solid;
        max-width: 380px;
        font-family: system-ui, -apple-system, sans-serif;
    }

    /* CTA registro atletas */
    .athletes-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding: 2rem;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background:
            radial-gradient(circle at 15% 20%, rgba(255, 213, 79, 0.28), transparent 40%),
            radial-gradient(circle at 85% 80%, rgba(62, 166, 255, 0.22), transparent 35%),
            linear-gradient(135deg, #151a26 0%, #202a3b 55%, #162033 100%);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
        overflow: hidden;
    }

    .athletes-cta-kicker {
        display: inline-block;
        margin-bottom: 0.7rem;
        padding: 0.3rem 0.75rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        color: #d7e7ff;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .athletes-cta-title {
        color: #ffffff;
        font-size: clamp(1.6rem, 2.8vw, 2.25rem);
        line-height: 1.1;
        font-weight: 800;
        margin-bottom: 0.75rem;
    }

    .athletes-cta-text {
        color: rgba(240, 245, 255, 0.86);
        font-size: 1rem;
        line-height: 1.55;
        max-width: 620px;
        margin-bottom: 1.2rem;
    }

    .athletes-cta-actions {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .athletes-cta-btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        padding: 0.92rem 1.7rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        text-decoration: none;
        color: #0f172a;
        background: linear-gradient(145deg, #fff4c7 0%, #ffe38a 52%, #ffd04f 100%);
        box-shadow:
            0 10px 20px rgba(255, 213, 79, 0.26),
            inset 0 1px 0 rgba(255, 255, 255, 0.72);
        transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, border-color 0.22s ease;
        overflow: hidden;
    }

    .athletes-cta-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 70%;
        height: 100%;
        background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.42) 45%, rgba(255, 255, 255, 0) 100%);
        transition: left 0.45s ease;
    }

    .athletes-cta-btn:hover {
        transform: translateY(-2px);
        filter: brightness(1.02);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow:
            0 14px 24px rgba(255, 213, 79, 0.34),
            inset 0 1px 0 rgba(255, 255, 255, 0.78);
        color: #0f172a;
    }

    .athletes-cta-btn:hover::before {
        left: 130%;
    }

    .athletes-cta-art {
        flex-shrink: 0;
        width: 220px;
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    }

    .athletes-cta-art svg {
        max-width: 100%;
        max-height: 100%;
    }

    @media (max-width: 991px) {
        .athletes-cta {
            padding: 1.5rem;
        }

        .athletes-cta-art {
            width: 170px;
            height: 170px;
        }
    }

    @media (max-width: 767px) {
        .athletes-cta {
            flex-direction: column;
            text-align: center;
            gap: 1.2rem;
            padding: 1.4rem;
        }

        .athletes-cta-text {
            margin-inline: auto;
        }

        .athletes-cta-actions {
            justify-content: center;
        }

        .athletes-cta-art {
            width: 140px;
            height: 140px;
        }
    }

    .custom-toast.show {
        transform: translateX(0);
    }

    .custom-toast.success {
        border-left-color: #28a745;
        background: #f8fff9;
    }

    .custom-toast.error {
        border-left-color: #dc3545;
        background: #fff8f8;
    }

    .toast-content {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .toast-icon {
        font-size: 20px;
    }

    .toast-message {
        color: #333;
        font-size: 14px;
        line-height: 1.4;
    }

    /* Spinner animation */
    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .spinner-border {
        display: inline-block;
        width: 1rem;
        height: 1rem;
        vertical-align: text-bottom;
        border: 0.2em solid currentColor;
        border-right-color: transparent;
        border-radius: 50%;
        animation: spin 0.75s linear infinite;
    }