        .games-page {
            padding: 6rem 0 4rem;
        
            min-height: 100vh;
        }
        
        
        .hero-carousel {
            position: relative;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 4rem;
            box-shadow: 0 15px 40px var(--shadow-dark);
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        
        .carousel-slide.active {
            opacity: 1;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-nav:hover {
            background: var(--primary-color);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-prev {
            left: 20px;
        }
        
        .carousel-next {
            right: 20px;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-indicator.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }
        
        
        .games-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .games-header h1 {
            color: var(--text-primary);
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .games-header .subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }
        
        
        .search-section {
            background: var(--bg-card);
            border: 2px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 3rem;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 30px var(--shadow-dark);
        }
        
        .search-container {
            position: relative;
            max-width: 500px;
            margin: 0 auto 1.5rem;
        }
        
        .search-input {
            width: 100%;
            padding: 1rem 3rem 1rem 1.5rem;
            background: var(--bg-tertiary);
            border: 2px solid var(--border-color);
            border-radius: 15px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }
        
        .search-icon {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
            pointer-events: none;
        }
        
        .search-clear {
            position: absolute;
            right: 3rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            cursor: pointer;
            display: none;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .search-clear:hover {
            background: rgba(255, 107, 53, 0.1);
            color: var(--primary-color);
        }
        
        
        .stats-container {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .game-stats {
            color: var(--text-secondary);
            font-size: 0.9rem;
            background: var(--bg-tertiary);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            display: inline-block;
        }
        
        
        .alphabet-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .alphabet-nav a {
            background: var(--bg-tertiary);
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 0.5rem 0.75rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            min-width: 35px;
            text-align: center;
        }
        
        .alphabet-nav a:hover:not(.disabled) {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .alphabet-nav a.active {
            background: var(--primary-color);
            color: white;
        }
        
        .alphabet-nav a.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .alphabet-nav a.show-all {
            background: var(--gradient-primary);
            color: white;
            font-weight: 700;
        }
        
        
        .games-content {
            background: var(--bg-card);
            border: 2px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 30px var(--shadow-dark);
        }
        
        .games-section {
            margin-bottom: 3rem;
        }
        
        .section-title {
            color: var(--text-primary);
            font-family: 'Orbitron', monospace;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
            position: relative;
        }
        
        .section-title::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gradient-primary);
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .game-card {
            background: var(--bg-tertiary);
            border: 2px solid var(--border-color);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .game-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        }
        
        .game-card:hover::before {
            left: 100%;
        }
        
        .game-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .game-name {
            color: var(--text-primary);
            font-weight: 600;
            font-size: 1.1rem;
            margin: 0;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .game-name .highlight {
            color: var(--text-primary);
            border-radius: 4px;
            font-weight: 700;
            border: 1px solid rgba(255, 107, 53, 0.4);
        }
        
        
        .games-header h1 i {
            margin-right: 1rem;
            color: var(--primary-color);
            filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
        }
        
        .subtitle i {
            margin-right: 0.5rem;
            color: var(--primary-color);
            opacity: 0.8;
        }
        
        
        .search-icon i {
            color: var(--text-secondary);
        }
        
        
        .game-stats i {
            margin-right: 0.5rem;
            color: var(--primary-color);
            opacity: 0.8;
        }
        
        
        .section-icon {
            margin-right: 1rem;
            color: var(--primary-color);
            filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.3));
        }
        
        
        .game-icon-wrapper {
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .game-icon {
            color: var(--text-secondary);
            opacity: 0.6;
            transition: all 0.3s ease;
        }
        
        .game-card:hover .game-icon {
            color: var(--primary-color);
            opacity: 1;
            transform: scale(1.1);
        }
        .no-results {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--text-secondary);
        }
        
        .no-results-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }
        
        .no-results h3 {
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        
        
        @media (max-width: 768px) {
            .games-page {
                padding: 5rem 0 2rem;
            }
            
            .games-header h1 {
                font-size: 2rem;
            }
            
            .search-section {
                padding: 1.5rem;
                margin: 0 1rem 2rem;
            }
            
            .games-content {
                padding: 1.5rem;
                margin: 0 1rem;
            }
            
            .games-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .alphabet-nav {
                gap: 0.3rem;
            }
            
            .alphabet-nav a {
                padding: 0.4rem 0.6rem;
                font-size: 0.9rem;
                min-width: 30px;
            }
            
            .hero-carousel {
                height: 200px;
                margin: 0 1rem 3rem;
            }
            
            .carousel-nav {
                width: 40px;
                height: 40px;
            }
            
            .carousel-prev {
                left: 10px;
            }
            
            .carousel-next {
                right: 10px;
            }
        }
        
        
        .search-active .game-card {
            transition: all 0.2s ease;
        }
        
        
        html {
            scroll-behavior: smooth;
        }