/* ==========================================================================
   TEAMS & SQUAD LINEUP SYSTEM - INTERNATIONAL TOURNAMENT STYLE
   Jember Putra Indonesia & Participating Academies
   ========================================================================== */

/* ================= 1. TEAMS DIRECTORY GRID ================= */
.teams-hero-banner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.teams-category-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.team-cat-pill {
    padding: 8px 18px;
    background: var(--jpi-card-bg);
    border: 1px solid var(--jpi-border);
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #CBD5E1;
    transition: all 0.3s ease;
}

.team-cat-pill:hover, .team-cat-pill.active {
    background: var(--jpi-red);
    border-color: var(--jpi-red-bright);
    color: #FFF;
    box-shadow: var(--jpi-glow-red);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.team-card {
    background: linear-gradient(180deg, #181B26 0%, #10111A 100%);
    border: 1px solid var(--jpi-border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--jpi-gold);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6), var(--jpi-glow-gold);
}

.team-logo-container {
    width: 84px;
    height: 84px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(11, 12, 16, 0.8) 70%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.team-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 6px;
    line-height: 1.25;
}

.team-location {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.team-division-tag {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--jpi-border-gold);
    color: var(--jpi-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.team-card-footer {
    margin-top: auto;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

/* ================= 2. TEAM DETAIL & LINEUP ================= */
.team-detail-header-card {
    background: linear-gradient(135deg, #1C1F2E 0%, #0F1017 60%, #1F070B 100%);
    border: 2px solid var(--jpi-border-gold);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 34px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.team-header-identity {
    display: flex;
    align-items: center;
    gap: 24px;
}

.team-header-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: rgba(11, 12, 16, 0.6);
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--jpi-border);
}

.team-header-info h1 {
    font-size: 2.2rem;
    color: #FFF;
    margin-bottom: 6px;
}

.team-header-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.88rem;
    color: #CBD5E1;
    flex-wrap: wrap;
}

.team-layout-grid {
    display: grid;
    grid-template-columns: 2.4fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Section Lineup */
.lineup-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--jpi-border);
}

.lineup-section-title h3 {
    font-size: 1.3rem;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lineup-count-badge {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--jpi-border-gold);
    color: var(--jpi-gold);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Matchday Lineup Player Grid (1:1 Ratio Photo Cards) */
.matchday-player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}

.lineup-player-card {
    background: linear-gradient(180deg, #191C28 0%, #0E1017 100%);
    border: 1px solid var(--jpi-border);
    border-radius: 14px;
    padding: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.lineup-player-card:hover {
    transform: translateY(-5px);
    border-color: var(--jpi-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), var(--jpi-glow-gold);
}

/* Top Badge Bar on Player Card */
.lineup-card-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.lineup-pos-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
}

.lineup-status-tag {
    font-size: 0.68rem;
    font-weight: 800;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #FCD34D;
    padding: 2px 7px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 1:1 Aspect Ratio Photo Container */
.lineup-photo-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* MURNI 1:1 RASIO KOTAK */
    border-radius: 10px;
    overflow: hidden;
    background: #0B0C10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.lineup-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.lineup-player-card:hover .lineup-photo-img {
    transform: scale(1.04);
}

.lineup-player-name {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    color: #FFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.lineup-player-sub {
    font-size: 0.75rem;
    color: #94A3B8;
    display: flex;
    justify-content: space-between;
}

/* Right Column: Delegation (Ofisial) */
.delegation-card-wrapper {
    background: var(--jpi-card-bg);
    border: 1px solid var(--jpi-border);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.delegation-title {
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--jpi-border);
}

.official-profile-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 14px;
}

.official-avatar {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #0B0C10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid var(--jpi-border);
}

.official-photo-avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    background: #0B0C10;
    border: 1.5px solid var(--jpi-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), var(--jpi-glow-gold);
    flex-shrink: 0;
}

.official-role-badge {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--jpi-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.official-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFF;
}

@media (max-width: 992px) {
    .team-layout-grid { grid-template-columns: 1fr; }
    .delegation-card-wrapper { position: static; }
}

@media (max-width: 768px) {
    .team-header-identity { flex-direction: column; text-align: center; }
    .team-detail-header-card { justify-content: center; text-align: center; }
    .matchday-player-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================= 3. HOLOGRAPHIC FOIL SHIMMER EFFECT ================= */
.lineup-player-card {
    position: relative;
    overflow: hidden;
}

.lineup-player-card::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(
        60deg, 
        transparent 35%, 
        rgba(255, 255, 255, 0.04) 45%, 
        rgba(245, 158, 11, 0.35) 50%, 
        rgba(255, 255, 255, 0.12) 55%, 
        transparent 65%
    );
    transform: rotate(25deg) translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 5;
}

.lineup-player-card:hover::after {
    transform: rotate(25deg) translateY(100%);
    opacity: 1;
}

/* ================= 4. 3D COVERFLOW CAROUSEL (EA SPORTS FC STYLE) ================= */
.coverflow-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 30px auto;
    perspective: 1200px;
}

.coverflow-stage {
    position: relative;
    width: 100%;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    user-select: none;
}

.coverflow-item {
    position: absolute;
    width: 310px;
    height: 410px;
    background: linear-gradient(180deg, #1C1F2D 0%, #10111A 100%);
    border: 1px solid var(--jpi-border);
    border-radius: 20px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.55s ease, filter 0.55s ease, border-color 0.55s ease, box-shadow 0.55s ease;
    will-change: transform, opacity;
}

/* Coverflow Item Interior */
.coverflow-item .team-logo-container {
    width: 96px;
    height: 96px;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
}

.coverflow-item:hover .team-logo-container {
    transform: scale(1.08);
}

.coverflow-item .team-name {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

/* State Posisi 3D Transform */
.coverflow-item.pos-active {
    transform: translateX(0) scale(1.05) rotateY(0deg) translateZ(120px);
    z-index: 10;
    opacity: 1;
    border-color: var(--jpi-gold);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), var(--jpi-glow-gold);
    filter: brightness(1.05);
}

.coverflow-item.pos-left-1 {
    transform: translateX(-240px) scale(0.86) rotateY(32deg) translateZ(0);
    z-index: 6;
    opacity: 0.72;
    filter: brightness(0.65);
}

.coverflow-item.pos-right-1 {
    transform: translateX(240px) scale(0.86) rotateY(-32deg) translateZ(0);
    z-index: 6;
    opacity: 0.72;
    filter: brightness(0.65);
}

.coverflow-item.pos-left-2 {
    transform: translateX(-430px) scale(0.72) rotateY(48deg) translateZ(-90px);
    z-index: 3;
    opacity: 0.4;
    filter: brightness(0.45);
}

.coverflow-item.pos-right-2 {
    transform: translateX(430px) scale(0.72) rotateY(-48deg) translateZ(-90px);
    z-index: 3;
    opacity: 0.4;
    filter: brightness(0.45);
}

.coverflow-item.pos-hidden {
    transform: translateX(0) scale(0.5) translateZ(-200px);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* Navigasi Panah & Titik Coverflow */
.coverflow-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(11, 12, 16, 0.75);
    border: 1px solid var(--jpi-border-gold);
    color: var(--jpi-gold);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.coverflow-nav-btn:hover {
    background: var(--jpi-gold);
    color: #000;
    box-shadow: var(--jpi-glow-gold);
    transform: translateY(-50%) scale(1.1);
}

.coverflow-nav-prev { left: 10px; }
.coverflow-nav-next { right: 10px; }

.coverflow-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.coverflow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.coverflow-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--jpi-gold);
    box-shadow: 0 0 10px var(--jpi-gold);
}

/* ================= 5. TACTICAL PITCH VIEW (PAPAN TAKTIK 3D) ================= */
.view-mode-toggle {
    display: inline-flex;
    background: #0B0C10;
    border: 1px solid var(--jpi-border-gold);
    border-radius: 30px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 24px;
}

.view-toggle-btn {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #94A3B8;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-toggle-btn.active {
    background: var(--jpi-red);
    color: #FFF;
    box-shadow: var(--jpi-glow-red);
}

/* Back Navigation Button */
.back-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.back-nav-btn:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--jpi-gold);
    color: #FCD34D;
    transform: translateX(-4px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.tactical-pitch-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 36px auto;
    position: relative;
}

.tactical-pitch {
    width: 100%;
    aspect-ratio: 9 / 13;
    min-height: 620px;
    background: repeating-linear-gradient(
        180deg,
        #155325 0px,
        #155325 44px,
        #12441F 44px,
        #12441F 88px
    );
    border: 3px solid rgba(255, 255, 255, 0.45);
    border-radius: 18px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 80px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

/* Garis-garis Lapangan Portrait */
.pitch-line-half {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(-50%);
}

.pitch-circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.pitch-dot-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Kotak Penalti Bawah (Area Bertahan / GK) */
.pitch-box-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 58%;
    height: 18%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-bottom: none;
}

.pitch-box-bottom-small {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32%;
    height: 7%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-bottom: none;
}

.pitch-arc-bottom {
    position: absolute;
    bottom: calc(18% - 1px);
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: none;
    border-radius: 56px 56px 0 0;
}

/* Kotak Penalti Atas (Area Menyerang / Lawan) */
.pitch-box-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 58%;
    height: 18%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top: none;
}

.pitch-box-top-small {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32%;
    height: 7%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top: none;
}

.pitch-arc-top {
    position: absolute;
    top: calc(18% - 1px);
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top: none;
    border-radius: 0 0 56px 56px;
}

/* Marka Sudut Lapangan */
.pitch-corner-tl {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border-right: 2px solid rgba(255, 255, 255, 0.35);
    border-bottom: 2px solid rgba(255, 255, 255, 0.35);
    border-bottom-right-radius: 16px;
}
.pitch-corner-tr {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 16px;
    border-left: 2px solid rgba(255, 255, 255, 0.35);
    border-bottom: 2px solid rgba(255, 255, 255, 0.35);
    border-bottom-left-radius: 16px;
}
.pitch-corner-bl {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border-right: 2px solid rgba(255, 255, 255, 0.35);
    border-top: 2px solid rgba(255, 255, 255, 0.35);
    border-top-right-radius: 16px;
}
.pitch-corner-br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    border-left: 2px solid rgba(255, 255, 255, 0.35);
    border-top: 2px solid rgba(255, 255, 255, 0.35);
    border-top-left-radius: 16px;
}

/* Node Pemain di Lapangan Taktik */
.tactical-node {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.tactical-node:hover {
    transform: translate(-50%, -50%) scale(1.15);
    z-index: 40;
}

.tactical-node-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #0B0C10;
    border: 2.5px solid var(--jpi-gold);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.75), var(--jpi-glow-gold);
    position: relative;
    z-index: 10;
}

.tactical-node-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Badge Posisi & No Punggung DI LUAR bulatan foto, z-index tinggi agar terbaca jelas */
.tactical-node-badge {
    position: relative;
    margin-top: -12px;
    z-index: 25;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 900;
    padding: 2px 9px;
    border-radius: 12px;
    border: 1.5px solid #FCD34D;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.85);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.tactical-node-badge.badge-gk {
    background: linear-gradient(135deg, #D97706, #B45309);
    border-color: #FEF3C7;
    color: #FFF;
}

.tactical-node-name {
    margin-top: 4px;
    background: rgba(11, 12, 16, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 2px 10px;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
    z-index: 20;
}

@media (max-width: 540px) {
    .tactical-pitch-container {
        max-width: 100%;
    }
    .tactical-node-avatar {
        width: 48px;
        height: 48px;
    }
    .tactical-node-badge {
        font-size: 0.6rem;
        padding: 1px 6px;
        margin-top: -10px;
    }
    .tactical-node-name {
        font-size: 0.68rem;
        padding: 1px 7px;
    }
}

/* ================= 6. ROAD TO CHAMPION: TROPHY SHOWCASE & COUNTDOWN ================= */
.trophy-showcase-card {
    background: radial-gradient(circle at center, #240C12 0%, #0D0E15 60%, #07080B 100%);
    border: 2px solid var(--jpi-border-gold);
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--jpi-glow-gold);
    margin: 40px 0;
}

.countdown-timer-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.countdown-box {
    background: rgba(11, 12, 16, 0.8);
    border: 1px solid var(--jpi-border-gold);
    border-radius: 14px;
    padding: 14px 20px;
    min-width: 90px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--jpi-gold);
    line-height: 1;
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* ================= 7. SCOUTING RADAR QUICK-FILTER ================= */
.scout-filter-bar {
    background: #0E1017;
    border: 1px solid var(--jpi-border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.scout-pills-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.scout-pill-btn {
    padding: 6px 14px;
    border-radius: 20px;
    background: #181B26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #CBD5E1;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.scout-pill-btn.active, .scout-pill-btn:hover {
    background: var(--jpi-gold);
    color: #000;
    border-color: var(--jpi-gold);
    box-shadow: var(--jpi-glow-gold);
}

