/**
 * Błękitni Orneta - Karuzela zawodników
 * @version 1.1.0
 */

/* =========================================================================
   KARUZELA - GŁÓWNY KONTENER
   ========================================================================= */

.atleticos-players-carousel {
    position: relative;
    overflow: visible !important;
}

/* =========================================================================
   SLAJDY
   ========================================================================= */

.atleticos-players-carousel .slick-slide {
    opacity: 0.25 !important;
    transform: scale(0.42) !important;
    transform-origin: bottom center !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    filter: grayscale(50%) brightness(0.5);
}

.atleticos-players-carousel .slick-slide.slick-active {
    opacity: 0.5 !important;
    transform: scale(0.68) !important;
    filter: grayscale(25%) brightness(0.7);
}

.atleticos-players-carousel .slick-slide.slick-center {
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: none;
}

/* Ukryj domyślne elementy */
.atleticos-players-carousel .atleticos-player-info-box,
.atleticos-players-carousel .jet-carousel__item-content,
.atleticos-players-carousel .jet-arrow {
    display: none !important;
}

/* =========================================================================
   DOLNY PANEL
   ========================================================================= */

.atleticos-bottom-panel {
    background: #020F25;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 45px 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    margin-top: -32px;
}

.atleticos-bottom-panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

/* =========================================================================
   STRZAŁKI NAWIGACJI
   ========================================================================= */

.atleticos-panel-arrow {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.atleticos-panel-arrow:hover {
    background: #00d4ff;
    border-color: #00d4ff;
    transform: scale(1.1);
}

.atleticos-panel-arrow:active {
    transform: scale(0.95);
}

/* =========================================================================
   PANEL INFORMACJI O ZAWODNIKU
   ========================================================================= */

.atleticos-panel-info {
    position: relative;
    height: 300px;
    width: 400px;
    overflow: hidden;
}

.atleticos-panel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.atleticos-panel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Numer zawodnika */
.atleticos-panel-number {
    font-size: clamp(50px, 8vw, 80px);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 8px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #3ba0f66e 0%, rgba(6, 47, 61, 0.06) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Imię i nazwisko */
.atleticos-panel-name {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 700;
    color: #fff;
    margin: 8px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
}

/* Pozycja */
.atleticos-panel-position {
    font-size: 11px;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 18px;
    font-weight: 600;
}

/* Przycisk profilu */
.atleticos-panel-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.atleticos-panel-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #00e5ff 0%, #00bfff 100%);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    color: #fff;
}

/* =========================================================================
   RESPONSYWNOŚĆ
   ========================================================================= */

@media (max-width: 768px) {
    .atleticos-players-carousel .slick-slide {
        opacity: 0.4 !important;
        transform: scale(0.8) !important;
        filter: none;
    }
    
    .atleticos-players-carousel .slick-slide.slick-center {
        opacity: 1 !important;
        transform: scale(1) !important;
    }
    
    .atleticos-bottom-panel {
        padding: 35px 15px;
    }
    
    .atleticos-bottom-panel-inner {
        gap: 25px;
    }
    
    .atleticos-panel-arrow {
        width: 48px;
        height: 48px;
    }
    
    .atleticos-panel-info {
        height: 200px;
        width: 280px;
    }
    
    .atleticos-panel-number {
        font-size: 50px;
    }
    
    .atleticos-panel-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .atleticos-bottom-panel-inner {
        gap: 15px;
    }
    
    .atleticos-panel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .atleticos-panel-info {
        height: 180px;
        width: 200px;
    }
    
    .atleticos-panel-number {
        font-size: 40px;
    }
    
    .atleticos-panel-name {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .atleticos-panel-btn {
        padding: 10px 20px;
        font-size: 9px;
    }
}