/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nfl-blue: #013369;
    --nfl-red: #D50A0A;
    --nfl-dark: #1a1a1a;
    --nfl-gray: #656668;
    --nfl-light: #f5f5f5;
    --header-height: 52px;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Main Header */
.main-header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1200;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 16px;
}

.nfl-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 0;
    align-items: center;
    height: 100%;
    flex: 1;
    justify-content: flex-start;
}

.nav-link {
    color: var(--nfl-dark);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 14px;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: var(--nfl-blue);
    border-bottom-color: var(--nfl-blue);
}

/* Header right actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 4px;
    color: var(--nfl-dark);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
}

.header-icon-btn:hover {
    color: var(--nfl-blue);
    background: rgba(0,0,0,0.06);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--nfl-dark);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.menu-toggle:hover span {
    background-color: var(--nfl-blue);
}

/* Hamburger → croix quand menu ouvert */
.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    padding: 0 5px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: fixed;
    top: var(--header-height);
    left: 50%;
    transform: translateX(-57%);
    /* transform: translateX(-50%); old_value*/
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    padding-top: 30px;
    display: none;
    min-width: 400px;
    z-index: 1200;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 25px;
    background: transparent;
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.nav-dropdown:hover .dropdown-menu {
    display: flex;
    gap: 30px;
}

/* Teams Mega Menu Styles */
.teams-dropdown .dropdown-menu {
    /* min-width: 1000px; */
    max-width: 1100px;
    padding: 0;
    display: none;
    flex-direction: row;
    border-radius: 0 0 8px 8px;
    top: calc(var(--header-height) + 1px);
}

.teams-dropdown:hover .dropdown-menu {
    display: flex;
}

.teams-mega-menu {
    display: flex;
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-height: calc(100vh - var(--header-height) - 20px);
}

.teams-sidebar {
    width: 180px;
    background: var(--nfl-light);
    padding: 20px;
    border-right: 1px solid #e0e0e0;
    overflow-y: auto;
    flex-shrink: 0;
}

.teams-content {
    flex: 1;
    padding: 20px;
    background: white;
    overflow-y: auto;
}

.sidebar-section {
    margin-bottom: 25px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--nfl-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--nfl-blue);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--nfl-dark);
    transition: all 0.2s;
    text-decoration: none;
}

.sidebar-link:hover {
    color: var(--nfl-blue);
    padding-left: 5px;
}

.sidebar-link svg {
    flex-shrink: 0;
    color: var(--nfl-gray);
    transition: color 0.2s;
}

.sidebar-link:hover svg {
    color: var(--nfl-blue);
}

.teams-grid-dropdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.teams-conference-dropdown {
    display: flex;
    flex-direction: column;
}

.conference-title-dropdown {
    font-size: 14px;
    font-weight: 700;
    color: var(--nfl-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--nfl-blue);
}

.teams-divisions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.teams-division h5 {
    font-size: 12px;
    font-weight: 600;
    color: var(--nfl-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.teams-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Listes longues (D3) avec scroll */
.nav-teams-scroll {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.nav-teams-scroll::-webkit-scrollbar {
    width: 4px;
}

.nav-teams-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.nav-teams-scroll::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.team-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--nfl-dark);
}

.team-link:hover {
    background: var(--nfl-light);
    color: var(--nfl-blue);
    transform: translateX(3px);
}

.team-logo-dropdown {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.team-link span {
    font-size: 13px;
    font-weight: 500;
}

/* Stats Dropdown Styles */
.stats-dropdown .dropdown-menu {
    position: absolute;
    min-width: 280px;
    max-width: 320px;
    padding: 0;
    display: none;
    flex-direction: column;
    border-radius: 0 0 8px 8px;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.stats-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.stats-dropdown .dropdown-menu::after {
    display: none;
}

.stats-dropdown:hover .dropdown-menu {
    display: block;
}

.stats-content {
    padding: 20px;
    background: white;
    border-radius: 0 0 8px 8px;
}

.stats-title-dropdown {
    font-size: 12px;
    font-weight: 700;
    color: var(--nfl-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--nfl-blue);
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stats-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--nfl-dark);
}

.stats-link:hover {
    background: var(--nfl-light);
    color: var(--nfl-blue);
    transform: translateX(3px);
}

.stats-link svg {
    flex-shrink: 0;
    color: var(--nfl-gray);
    transition: color 0.2s;
}

.stats-link:hover svg {
    color: var(--nfl-blue);
}

.stats-link span {
    font-size: 14px;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════
   MENU MOBILE — Style NFL plein écran
   ═══════════════════════════════════════════════ */

/* Conteneur principal : caché par défaut */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1099;
    pointer-events: none;
}

/* Panneau qui descend depuis sous la navbar */
.mobile-nav-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100dvh - var(--header-height));
    background: white;
    color: var(--nfl-dark);
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    pointer-events: all;
}

/* État ouvert */
.mobile-nav.open .mobile-nav-panel {
    transform: translateY(0);
}

/* Bloquer le scroll du body quand ouvert */
body.drawer-open {
    overflow: hidden;
}

/* ── Liens principaux ── */
.mobile-nav-links {
    flex-shrink: 0;
    padding: 4px 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--nfl-dark);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s, color 0.15s;
}

.mobile-nav-item:hover {
    background: var(--nfl-light);
    color: var(--nfl-blue);
}

.mobile-nav-item-label {
    flex: 1;
}

.mobile-nav-item-arrow {
    flex-shrink: 0;
    color: #ccc;
    transition: transform 0.2s, color 0.2s;
}

.mobile-nav-item:hover .mobile-nav-item-arrow {
    transform: translateX(3px);
    color: var(--nfl-blue);
}

/* ── Séparateur ── */
.mobile-nav-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 0;
    flex-shrink: 0;
}

/* ── Section équipes ── */
.mobile-nav-section {
    flex: 1;
    padding-bottom: 20px;
}

.mobile-nav-section-title {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--nfl-gray);
    padding: 12px 20px 6px;
}

/* Accordéon division */
.mobile-nav-accordion {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--nfl-dark);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, color 0.15s;
}

.mobile-nav-accordion-btn:hover {
    background: var(--nfl-light);
    color: var(--nfl-blue);
}

.mobile-nav-chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--nfl-gray);
}

.mobile-nav-accordion-btn[aria-expanded="true"] .mobile-nav-chevron {
    transform: rotate(180deg);
    color: var(--nfl-blue);
}

.mobile-nav-accordion-body {
    display: none;
    padding: 0 0 8px;
}

.mobile-nav-accordion-body.open {
    display: block;
}

/* Conférence dans l'accordéon */
.mobile-nav-conf {
    padding: 4px 0;
}

.mobile-nav-conf-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--nfl-blue);
    padding: 6px 20px 4px 32px;
}

.mobile-nav-team-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 20px 9px 32px;
    font-size: 13px;
    font-weight: 500;
    color: var(--nfl-dark);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.mobile-nav-team-link:hover {
    background: var(--nfl-light);
    color: var(--nfl-blue);
}

.mobile-nav-team-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ── Footer du menu ── */
.mobile-nav-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
    display: flex;
    gap: 20px;
}

.mobile-nav-footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.15s;
}

.mobile-nav-footer-link:hover {
    color: white;
}

.mobile-nav-footer-link svg {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE HEADER
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
    /* Masquer la nav desktop */
    .main-nav {
        display: none;
    }

    /* Afficher le bouton hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Activer le menu mobile */
    .mobile-nav {
        display: block;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 16px;
    }

    .nfl-logo {
        width: 40px;
        height: 40px;
    }
}

/* Main Content */
.main-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

/* Footer */
.main-footer {
    background-color: var(--nfl-dark);
    color: white;
    padding: 0;
}

/* Footer Teams */
.footer-teams {
    background-color: var(--nfl-dark);
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-teams-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* Bloc par division (D1 / D2 / D3) */
.footer-division-block {
    padding: 24px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-division-block:last-child {
    border-right: none;
}

.footer-division-title {
    font-size: 13px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--nfl-blue);
}

/* Bloc par conférence */
.footer-conf-block {
    margin-bottom: 16px;
}

.footer-conf-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

/* Liste des équipes en 2 colonnes */
.footer-team-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 10px;
}

.footer-team-list a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-team-list a:hover {
    color: white;
}

.footer-team-city {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    margin-left: 3px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 28px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

/* ── Bande légale style NFL ── */
.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0 28px;
}

.footer-legal-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Sur desktop : logo+social à gauche, texte légal à droite */
@media (min-width: 769px) {
    .footer-legal-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-legal-brand {
        width: 200px;
    }
}

.footer-legal-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.footer-legal-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-legal-social {
    display: flex;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    transition: color 0.2s, outline 0.2s;
}

.footer-legal-social-link:hover {
    color: white;
    outline: 1px solid white;
}

.footer-legal-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 616px;
    margin: 0;
}

/* ── Footer responsive ──────────────────────── */

@media (max-width: 900px) {
    .footer-teams-container {
        grid-template-columns: 1fr;
    }

    .footer-division-block {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 20px 16px;
    }

    .footer-division-block:last-child {
        border-bottom: none;
    }

    .footer-content {
        padding: 28px 16px 24px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .footer-column {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 24px 16px 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .footer-teams {
        padding: 20px 12px;
    }

    .footer-team-list {
        grid-template-columns: 1fr 1fr;
    }

    .footer-legal {
        padding: 16px 0 24px;
    }
}

@media (max-width: 400px) {
    .footer-team-list {
        grid-template-columns: 1fr;
    }

    .footer-team-city {
        display: none;
    }
}
@media (max-width: 1024px) {
    .teams-dropdown .dropdown-menu {
        min-width: 700px;
        max-width: 750px;
    }
    
    .teams-sidebar {
        width: 180px;
        padding: 15px;
    }
    
    .teams-content {
        padding: 15px;
    }
    
    .teams-grid-dropdown {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .teams-dropdown .dropdown-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        min-width: auto;
        margin-top: 0;
        border-radius: 0;
        flex-direction: column;
        height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }
    
    .teams-mega-menu {
        flex-direction: column;
        height: 100%;
    }
    
    .teams-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .teams-grid-dropdown {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ============================================
   SPOTLIGHT SEARCH
   ============================================ */
.spotlight-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.spotlight-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.spotlight-box {
    width: 100%;
    max-width: 620px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: translateY(-12px) scale(0.98);
    transition: transform 0.2s ease;
}

.spotlight-overlay.active .spotlight-box {
    transform: translateY(0) scale(1);
}

/* Input */
.spotlight-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #f0f0f0;
}

.spotlight-icon {
    flex-shrink: 0;
    color: var(--nfl-gray);
}

.spotlight-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 17px;
    font-family: inherit;
    color: var(--nfl-dark);
    background: transparent;
}

.spotlight-input::placeholder {
    color: #bbb;
}

.spotlight-esc {
    flex-shrink: 0;
    font-size: 11px;
    font-family: inherit;
    background: #f0f0f0;
    color: var(--nfl-gray);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px 6px;
    cursor: pointer;
}

/* Results */
.spotlight-results {
    max-height: 380px;
    overflow-y: auto;
    padding: 8px 0;
}

.spotlight-section {
    padding: 0 0 8px;
}

.spotlight-section-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nfl-gray);
    padding: 8px 18px 4px;
}

.spotlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--nfl-dark);
    transition: background 0.1s;
    cursor: pointer;
}

.spotlight-item:hover,
.spotlight-item.active {
    background: var(--nfl-light);
}

.spotlight-item.active {
    background: #eef2ff;
}

.spotlight-item-icon {
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 6px;
    flex-shrink: 0;
}

.spotlight-team-logo {
    background: white;
    border: 1px solid #eee;
    padding: 3px;
}

.spotlight-item-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.spotlight-item-hint {
    font-size: 11px;
    color: var(--nfl-gray);
    background: #f0f0f0;
    padding: 2px 7px;
    border-radius: 4px;
}

/* Footer */
.spotlight-footer {
    display: flex;
    gap: 16px;
    padding: 10px 18px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.spotlight-footer span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--nfl-gray);
}

.spotlight-footer kbd {
    font-size: 10px;
    font-family: inherit;
    background: white;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 1px 5px;
    color: var(--nfl-dark);
}

/* No results */
.spotlight-empty {
    padding: 24px 18px;
    text-align: center;
    font-size: 14px;
    color: var(--nfl-gray);
}

@media (max-width: 680px) {
    .spotlight-overlay {
        padding: 16px;
        align-items: flex-start;
    }

    .spotlight-box {
        border-radius: 10px;
    }

    .spotlight-footer {
        display: none;
    }
}
