/* Banner Section */
        .banner-section {
            position: relative;
            height: 300px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
            z-index: 2;
        }

        .banner-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .banner-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .banner-subtitle {
            font-size: 18px;
            font-weight: 400;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content Section */
        .main-content {
            padding: 60px 20px;
            background-color: var(--white);
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Section Styles */
        .games-section {
            margin-bottom: 60px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-light);
            max-width: 600px;
        }

        .section-actions {
            display: flex;
            gap: 10px;
        }

        .view-toggle {
            display: flex;
            background-color: var(--bg-light);
            border-radius: 8px;
            overflow: hidden;
        }

        .view-btn {
            padding: 8px 12px;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-light);
            transition: all 0.3s ease;
        }

        .view-btn.active {
            background-color: var(--secondary-color);
            color: var(--white);
        }

        /* Games Grid */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .game-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        }

        .game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .game-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .game-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .game-details {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .game-date, .game-location {
            font-size: 14px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .game-description {
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-light);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .game-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            flex: 1;
        }

        .btn-primary {
            background: var(--secondary-color);
            color: var(--white);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(138, 40, 40, 0.3);
        }

        .btn-secondary {
            background-color: var(--bg-light);
            color: var(--text-dark);
            border: 1px solid var(--border-color);
        }

        .btn-secondary:hover {
            background-color: var(--border-color);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }

        .pagination-btn {
            padding: 8px 12px;
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: var(--text-dark);
        }

        .pagination-btn:hover {
            background-color: var(--secondary-color);
            color: var(--white);
            border-color: var(--secondary-color);
        }

        .pagination-btn.active {
            background-color: var(--secondary-color);
            color: var(--white);
            border-color: var(--secondary-color);
        }

        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .pagination-btn:disabled:hover {
            background-color: var(--white);
            color: var(--text-dark);
            border-color: var(--border-color);
        }

        /* List View */
        .games-list {
            display: none;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .games-list.active {
            display: flex;
        }

        .game-list-item {
            display: flex;
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .game-list-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .game-list-image {
            width: 200px;
            height: 150px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .game-list-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .game-list-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .game-list-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .game-list-details {
            display: flex;
            gap: 20px;
            margin-bottom: 10px;
        }

        .game-list-description {
            font-size: 15px;
            line-height: 1.5;
            color: var(--text-light);
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .game-list-actions {
            display: flex;
            gap: 10px;
            align-self: flex-end;
        }

        /* Loading State */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid var(--border-color);
            border-top: 4px solid var(--secondary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
                height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 15px 0;
            }
            
            .nav-link {
                height: auto;
                padding: 10px 0;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .mega-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-top: none;
                background-color: #f8f9fa;
                margin-top: 10px;
                display: none;
            }
            
            .mega-menu-trigger.active .mega-menu {
                display: block;
            }
            
            .mega-menu-content {
                flex-direction: column;
                padding: 20px;
            }
            
            .mega-menu-column {
                padding: 10px 0;
                min-width: auto;
            }
        }

        @media (max-width: 768px) {
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }

            .game-list-item {
                flex-direction: column;
            }

            .game-list-image {
                width: 100%;
                height: 200px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .banner-title {
                font-size: 32px;
            }

            .section-title {
                font-size: 24px;
            }

            .game-actions {
                flex-direction: column;
            }
        }