/* ============================================
   BOT SQUAD - Amazon-Style App Shell
   ============================================ */

/* --- Top Utility Bar --- */
.top-bar {
    background: #0a0a18;
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 0;
    font-size: 0.8rem;
    z-index: 1001;
    position: relative;
}
.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.top-bar a {
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: color 0.2s;
}
.top-bar a:hover {
    color: var(--accent-primary);
}
.top-bar .top-divider {
    color: var(--border-subtle);
}

/* --- Main Header (Logo + Search + Account) --- */
.main-header {
    background: rgba(10, 10, 25, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s;
}
.main-header.scrolled {
    background: rgba(6, 6, 14, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.main-header .container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.main-header #logo img {
    height: 44px;
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(0, 229, 255, 0.3));
}

/* --- Search Bar --- */
.search-bar {
    flex: 1;
    min-width: 250px;
    max-width: 600px;
    display: flex;
    position: relative;
}
.search-bar select {
    padding: 12px 14px;
    background: #1a1a30;
    border: 1px solid var(--border-subtle);
    border-right: none;
    border-radius: 50px 0 0 50px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    min-width: 110px;
}
.search-bar select:focus {
    border-color: var(--accent-primary);
}
.search-bar input {
    flex: 1;
    padding: 12px 18px;
    background: #12122a;
    border: 1px solid var(--border-subtle);
    border-left: none;
    border-right: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}
.search-bar input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-glow);
}
.search-bar input::placeholder {
    color: var(--text-muted);
}
.search-bar button {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-primary), #0098b0);
    border: none;
    border-radius: 0 50px 50px 0;
    color: #000;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}
.search-bar button:hover {
    box-shadow: 0 0 20px var(--accent-glow);
}

/* --- Account / Cart Buttons --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.header-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: none;
    border: 1px solid transparent;
    font-family: var(--font-body);
    text-decoration: none;
}
.header-btn:hover {
    border-color: var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
}
.header-btn .btn-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.header-btn .btn-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}
.enroll-count {
    background: var(--accent-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 50px;
    position: absolute;
    top: -4px;
    right: -8px;
}
.cart-icon-wrap {
    position: relative;
    font-size: 1.3rem;
}

/* --- Main Nav Bar --- */
.nav-bar {
    position: relative; z-index: 500;
    background: #0c0c20;
    border-bottom: 1px solid var(--border-subtle);
    padding: 0;
}
.nav-bar .container {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-end;
}
.nav-bar a {
    display: block;
    padding: 10px 18px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}
.nav-bar a:hover,
.nav-bar a.active {
    color: #fff;
    border-bottom-color: var(--accent-primary);
}
.nav-all {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600 !important;
}
.nav-all .hamburger {
    font-size: 1.2rem;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 1.4rem;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
}

/* ============================================
   SQUADS PAGE: Sidebar + Product Grid
   ============================================ */
.shop-layout {
    display: flex;
    gap: 30px;
    padding-top: 30px;
}

/* --- Filter Sidebar --- */
.filter-sidebar {
    width: 260px;
    flex-shrink: 0;
}
.filter-sidebar h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
}
.filter-group {
    margin-bottom: 20px;
}
.filter-group h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s;
}
.filter-group label:hover {
    color: #fff;
}
.filter-group input[type="checkbox"] {
    accent-color: var(--accent-primary);
    width: 15px;
    height: 15px;
}
.filter-group input[type="range"] {
    width: 100%;
    accent-color: var(--accent-primary);
}
.age-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* --- Results Bar --- */
.results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
}
.results-bar span {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.results-bar select {
    padding: 8px 12px;
    background: #1a1a30;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}

/* --- Product Cards (Amazon-style) --- */
.product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow:
        var(--shadow-glow),
        0 10px 40px rgba(0, 0, 0, 0.4);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-card .product-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card .product-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-age {
    background: rgba(0, 229, 255, 0.15);
    color: var(--accent-primary);
    border: 1px solid rgba(0, 229, 255, 0.2);
}
.badge-level {
    background: rgba(124, 58, 237, 0.15);
    color: #b794f4;
    border: 1px solid rgba(124, 58, 237, 0.2);
}
.badge-hot {
    background: rgba(247, 37, 133, 0.15);
    color: var(--accent-tertiary);
    border: 1px solid rgba(247, 37, 133, 0.2);
}
.product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-family: var(--font-body);
    line-height: 1.3;
}
.product-card .product-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.product-card .product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 14px;
}
.product-card .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}
.product-price .period {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
}
.product-card .btn-enroll {
    padding: 10px 22px;
    background: linear-gradient(135deg, #ffd600, #ff9100);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.product-card .btn-enroll:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 214, 0, 0.4);
    text-decoration: none;
    color: #000;
}

/* --- Featured Banner --- */
.featured-strip {
    background: linear-gradient(
        135deg,
        rgba(0, 229, 255, 0.08),
        rgba(124, 58, 237, 0.08)
    );
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 30px 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.featured-strip .featured-text {
    flex: 1;
    min-width: 250px;
}
.featured-strip h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.featured-strip p {
    color: var(--text-secondary);
    margin: 0;
}
.featured-strip .btn {
    flex-shrink: 0;
}

/* ============================================
   LOGIN / ACCOUNT SIDEBAR DRAWER
   ============================================ */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.account-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: #0c0c1f;
    border-left: 1px solid var(--border-subtle);
    z-index: 2001;
    padding: 30px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}
.account-drawer.open {
    right: 0;
}
.drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.drawer-close:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 12px var(--accent-glow);
}
.account-drawer h2 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    font-family: var(--font-display);
}
.account-drawer .form-group {
    margin-bottom: 16px;
}
.account-drawer .form-group input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s;
}
.account-drawer .form-group input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-glow);
}
.account-drawer .btn-full {
    width: 100%;
    padding: 13px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-primary), #0098b0);
    color: #000;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s;
}
.account-drawer .btn-full:hover {
    box-shadow: 0 0 30px var(--accent-glow);
}
.account-drawer .drawer-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.account-drawer .drawer-footer a {
    color: var(--accent-primary);
}

/* --- Enroll Drawer --- */
.enroll-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: #0c0c1f;
    border-left: 1px solid var(--border-subtle);
    z-index: 2001;
    padding: 30px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}
.enroll-drawer.open {
    right: 0;
}
.enroll-drawer h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.enroll-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.enroll-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}
.enroll-item-info {
    flex: 1;
}
.enroll-item-info h4 {
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
    font-family: var(--font-body);
}
.enroll-item-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.enroll-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.enroll-item-remove:hover {
    color: #f72585;
}
.enroll-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}
.enroll-drawer .btn-full {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffd600, #ff9100);
    color: #000;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: var(--font-body);
}

/* ============================================
   MEGA MENU DROPDOWNS
   ============================================ */
.nav-item-drop { position: relative; }
.nav-item-drop > a {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-item-drop > a::after {
    content: "▾";
    font-size: 0.65rem;
    transition: transform 0.2s;
}
.nav-item-drop:hover > a::after { transform: rotate(180deg); }
.mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 520px;
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-radius: 0 0 16px 16px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    z-index: 9999;
}
.nav-item-drop:hover .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-col h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
    margin-bottom: 12px;
    font-weight: 600;
}
.mega-col a {
    display: block;
    padding: 7px 0;
    color: #aaa;
    font-size: 0.85rem;
    border-bottom: none;
    transition: color 0.15s;
}
.mega-col a:hover { color: #fff; }

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 60px;
}
.stat-item .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}
.stat-item .stat-label {
    font-size: 0.82rem;
    color: #888;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.testimonial-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 28px;
}
.testimonial-card .quote {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial-card .author {
    font-size: 0.82rem;
    color: #888;
    font-weight: 600;
}

/* ============================================
   URGENCY TAG
   ============================================ */
.urgency-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1a0000;
    border: 1px solid #330000;
    color: #ff4444;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    animation: urgencyPulse 2s ease-in-out infinite;
}
@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ============================================
   BENEFITS ROW
   ============================================ */
.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.benefit-item {
    text-align: center;
    padding: 24px 16px;
}
.benefit-item .benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.benefit-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.benefit-item p {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .main-header .container { flex-wrap: wrap; gap: 10px; }
    .search-bar { order: 3; min-width: 100%; max-width: 100%; }
    .shop-layout { flex-direction: column; }
    .filter-sidebar {
        width: 100%;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        padding-bottom: 16px;
        border-bottom: 1px solid #1a1a1a;
        margin-bottom: 10px;
    }
    .filter-group { flex: 1; min-width: 140px; }
    .nav-bar .container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .nav-bar a { white-space: nowrap; padding: 10px 14px; font-size: 0.8rem; }
    .header-actions { gap: 6px; }
    .header-btn { padding: 4px 8px; }
    .header-btn .btn-value { font-size: 0.75rem; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .featured-strip { padding: 20px; }
    .mega-panel { min-width: 300px; grid-template-columns: 1fr; gap: 16px; padding: 20px; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 30px 0; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .benefits-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 600px) {
    .nav-bar {
    position: relative; z-index: 500; display: none; }
    .nav-bar.open { display: block; }
    .menu-toggle { display: flex; }
    .header-actions .btn-label { display: none; }
    .account-drawer, .enroll-drawer { width: 100vw; right: -100vw; }
    .product-grid { grid-template-columns: 1fr; }
    .nav-item-drop .mega-panel {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        border: none;
        border-top: 1px solid #1a1a1a;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 12px 16px;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .nav-item-drop.open .mega-panel { display: grid; }
    .nav-bar a { padding: 12px 16px; font-size: 0.85rem; }
    .nav-item-drop > a::after { margin-left: auto; }
    .stats-strip { grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px 0; }
    .stat-item .stat-number { font-size: 1.6rem; }
    .benefits-row { grid-template-columns: 1fr; }
}

/* ============================================
   SEARCH DROPDOWN
   ============================================ */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    border-top: none;
    border-radius: 0 0 14px 14px;
    z-index: 100;
    max-height: 360px;
    overflow-y: auto;
    box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}
.search-result-item {
    display: flex;
    flex-direction: column;
    padding: 12px 18px;
    border-bottom: 1px solid #111;
    color: #aaa;
    transition: background 0.15s;
    text-decoration: none;
    cursor: pointer;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover {
    background: #111;
    color: #fff;
}
.search-result-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}
.search-result-desc {
    font-size: 0.78rem;
    color: #888;
}
.search-result-none {
    padding: 16px 18px;
    color: #666;
    font-size: 0.85rem;
    text-align: center;
}

/* ============================================
   HIGH QUALITY IMAGE RENDERING
   ============================================ */
img {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}
.product-card img,
.gallery-item img {
    object-fit: cover;
    object-position: center;
    width: 100%;
}

/* ============================================
   TEAM SELECTION MODAL
   ============================================ */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.7);
    z-index: 3000;
}
.team-modal {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: #0d0d0d; border: 1px solid #1a1a1a; border-radius: 20px;
    padding: 32px; z-index: 3001; width: 90%; max-width: 440px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.team-modal h2 { color: #fff; font-size: 1.2rem; margin-bottom: 4px; }
.team-option {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px; margin: 8px 0;
    background: #111; border: 1px solid #1a1a1a; border-radius: 12px;
    cursor: pointer; transition: all 0.2s; color: #fff;
}
.team-option:hover { border-color: #555; background: #1a1a1a; }
.team-option.selected { border-color: #fff; background: #1a1a1a; }
.team-option input[type="radio"] { accent-color: #fff; width: 18px; height: 18px; }
.team-option label { cursor: pointer; flex: 1; font-size: 0.95rem; }
.team-modal .btn-full {
    width: 100%; padding: 14px; border-radius: 50px;
    background: #fff; color: #000; border: none;
    font-weight: 700; font-size: 0.95rem; cursor: pointer;
}
.team-modal .btn-full:hover { background: #e5e5e5; }
.show-teams-btn {
    padding: 10px 22px; background: #fff; color: #000; border: none;
    border-radius: 50px; font-weight: 700; font-size: 0.85rem;
    cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.show-teams-btn:hover { background: #e5e5e5; }

/* ============================================
   INLINE HEADER NAV
   ============================================ */
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.header-nav a {
    display: block;
    padding: 8px 14px;
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}
.header-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}
.header-nav .nav-signin {
    color: #fff;
    background: rgba(255,255,255,0.08);
    margin-left: 8px;
}
.header-nav .nav-signin:hover {
    background: rgba(255,255,255,0.15);
}
.header-nav .nav-item-drop > a::after {
    content: "";
}

/* Mega panel in header context */
.header-nav .mega-panel {
    top: 100%;
    left: 0;
}
.header-nav .nav-item-drop:last-child .mega-panel {
    left: auto;
    right: 0;
}

@media (max-width: 900px) {
    .header-nav { gap: 0; }
    .header-nav a { padding: 6px 10px; font-size: 0.78rem; }
}

@media (max-width: 600px) {
    .header-nav { display: none; }
    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0d0d0d;
        border-top: 1px solid #1a1a1a;
        padding: 8px;
    }
    .header-nav a { padding: 12px 16px; width: 100%; }
}
