 /* Global Styles */
        :root {
            --primary: #FF8C00;  /* Orange */
            --secondary: #1E3A8A; /* Navy blue */
            --accent: #E63946;
            --light: #F1FAEE;
            --dark: #457B9D;
            --gray: #6B7280;
            --light-gray: #F3F4F6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background: var(--primary);
            color: white;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }
        
        .btn:hover {
            background: #E67E00;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .btn-secondary {
            background: var(--secondary);
        }
        
        .btn-secondary:hover {
            background: #15296D;
        }
        
        .btn-outline {
            background: transparent;
            border: 1px solid var(--secondary);
            color: var(--secondary);
        }
        
        .btn-outline:hover {
            background: var(--secondary);
            color: white;
        }
        
        /* Header Styles */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .top-nav {
            background: var(--secondary);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-promo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .nav-promo i {
            color: var(--primary);
        }
        
        .top-nav-links {
            display: flex;
            gap: 20px;
            
        }
        
        .top-nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .top-nav-links a:hover {
            color: var(--primary);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            width: 180px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--secondary);
        }
        
        .logo-img img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 800;
            color: var(--secondary);
            letter-spacing: -0.5px;
        }
        
        .logo-text span {
            color: var(--primary);
        }
        
        .search-bar {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 20px;
            position: relative;
        }
        
        .search-bar input {
            width: 100%;
            padding: 12px 20px;
            border-radius: 30px;
            border: 1px solid #ddd;
            font-size: 14px;
            padding-left: 45px;
        }
        
        .search-bar i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }
        
        .main-nav {
            display: flex;
            gap: 25px;
        }
        
        .main-nav a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
        }
        
        .main-nav a:hover {
            color: var(--primary);
        }
        
        .auth-buttons {
            display: flex;
            gap: 10px;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1546519638-68e109498ffc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        
        /* Filter Bar */
        .filter-bar {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .filter-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .filter-tabs {
            display: flex;
            gap: 5px;
        }
        
        .filter-tab {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-tab.active {
            background: var(--secondary);
            color: white;
        }
        
        .filter-tab:not(.active):hover {
            background: var(--light-gray);
        }
        
        .filter-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .filter-dropdown {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
        }
        
        /* Teams Section */
        .teams-section {
            padding: 40px 0;
            background: white;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 1.8rem;
            color: var(--secondary);
            font-weight: 700;
        }
        
        .view-all {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .teams-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
        }
        
        .team-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            padding: 20px 15px;
            border: 1px solid #eee;
        }
        
        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        
        .team-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            background: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--secondary);
            overflow: hidden;
        }
        
        .team-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-name {
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        /* Conference Separator */
        .conference-separator {
            grid-column: 1 / -1;
            text-align: center;
            margin: 40px 0 20px;
            position: relative;
        }
        
        .conference-separator::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: #e5e7eb;
            z-index: 1;
        }
        
        .conference-title {
            display: inline-block;
            background: white;
            padding: 0 20px;
            position: relative;
            z-index: 2;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
        }
        
        .eastern-conference .conference-title {
            color: #1e40af;
        }
        
        .western-conference .conference-title {
            color: #dc2626;
        }
        
        /* Games Section */
        .games-section {
            padding: 40px 0;
            background: #f8f9fa;
        }
        
        .games-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .games-tabs {
            display: flex;
            gap: 5px;
            background: #eee;
            padding: 4px;
            border-radius: 6px;
        }
        
        .games-tab {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
        }
        
        .games-tab.active {
            background: white;
            color: var(--secondary);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .game-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .game-card:hover {
            transform: translateY(-5px);
        }
        
        .game-header {
            padding: 15px 20px;
            background: var(--secondary);
            color: white;
            text-align: center;
        }
        
        .game-date {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .game-arena {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        
        .game-teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }
        
        .team {
            text-align: center;
            width: 40%;
        }
        
        .team-logo-sm {
            width: 50px;
            height: 50px;
            margin: 0 auto 10px;
            background: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .team-logo-sm img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-name-sm {
            font-weight: 600;
            font-size: 14px;
        }
        
        .vs {
            font-weight: 700;
            color: var(--primary);
            font-size: 18px;
        }
        
        .game-info {
            padding: 15px 20px;
            background: var(--light-gray);
            text-align: center;
        }
        
        .game-price {
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background: var(--secondary);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 14px;
        }
        
        .footer-column a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .teams-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        
        @media (max-width: 900px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .search-bar {
                order: 3;
                max-width: 100%;
                margin: 15px 0 0;
            }
        }
        
        @media (max-width: 768px) {
            .top-nav-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .search-bar {
                width: 100%;
                max-width: 100%;
                margin: 10px 0;
            }
            
            .main-nav {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .filter-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .filter-tabs {
                flex-wrap: wrap;
            }
            
            .teams-grid {
                grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            }
            
            .games-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .logo-text {
                font-size: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .auth-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .team-logo {
                width: 60px;
                height: 60px;
            }
            
            .team-card {
                padding: 15px 10px;
            }
            
            .logo {
                flex-direction: column;
                gap: 5px;
            }
            
            .logo-text {
                font-size: 22px;
            }
        }