.search-container {
            margin-bottom: var(--section-spacing);
            max-width: 100%;
            padding: 0 1rem;
            box-sizing: border-box;
        }
        
        .search-input {
            width: 100%;
            max-width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 50px;
            border: 1px solid #2a3a4a;
            background-color: #0f1923;
            color: white;
            font-size: 1rem;
            box-sizing: border-box;
        }
        
        .search-input:focus {
            outline: none;
            border-color: #ff5e00;
        }

:root {
            --primary-color: #0077ff;
            --secondary-color: #00a1ff;
            --accent-color: #0055cc;
            --dark-color: #1a1a2e;
            --darker-color: #121212;
            --light-color: #f8f8f8;
            --text-color: #333;
            --highlight-color: #00ccff;
            --section-spacing: 2rem;
            --heading-color: #f0f0f0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #0f1923;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        header {
            background: linear-gradient(135deg, #1a2a3a, #0f1923);
            color: white;
            padding: 1.5rem 0;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-bottom: 2px solid #0077ff;
            margin-bottom: var(--section-spacing);
        }
        
        .logo {
            font-size: 2.5rem;
            font-weight: 800;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            color: white;
            text-decoration: none;
            display: inline-block;
        }
        
        .tagline {
            font-size: 1.2rem;
            margin-top: 0.5rem;
            opacity: 0.9;
            color: #ccc;
        }
        
        .nav-menu {
            background-color: #0f1923;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #1a2a3a;
            margin-bottom: var(--section-spacing);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            overflow-x: auto;
            scrollbar-width: none;
            justify-content: center;
        }
        
        .nav-container::-webkit-scrollbar {
            display: none;
        }
        
        .nav-item {
            color: white;
            text-decoration: none;
            padding: 0.8rem 1rem;
            white-space: nowrap;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .nav-item i {
            margin-right: 8px;
            font-size: 0.9rem;
        }
        
        /* Different colors for menu icons */
        .nav-item:nth-child(1) i { color: #0077ff; } /* All Games */
        .nav-item:nth-child(2) i { color: #ff0000; } /* Shooting */
        .nav-item:nth-child(3) i { color: #00ff00; } /* Racing */
        .nav-item:nth-child(4) i { color: #ffff00; } /* Sports */
        .nav-item:nth-child(5) i { color: #00ffff; } /* Puzzle */
        .nav-item:nth-child(6) i { color: #ff00ff; } /* Adventure */
        .nav-item:nth-child(7) i { color: #ff9900; } /* Action */
        .nav-item:nth-child(8) i { color: #9900ff; } /* Strategy */
        
        .nav-item:hover {
            background-color: #1a2a3a;
            color: #0077ff;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            padding: 0.8rem 1rem;
            cursor: pointer;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .ad-banner {
            background-color: #1a2a3a;
            color: white;
            text-align: center;
            padding: 1.5rem;
            margin: 0 auto var(--section-spacing);
            border-radius: 8px;
            max-width: 1152px;
            width: calc(100% - 3rem);
            border: 1px solid #2a3a4a;
        }
        
        .ad-banner p {
            margin: 0;
            font-size: 1.1rem;
        }
        
        .section {
            background-color: #1a2a3a;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            padding: 1.5rem;
            margin-bottom: var(--section-spacing);
            border: 1px solid #2a3a4a;
            color: #e0e0e0;
        }
        
        .game-frame-container {
            position: relative;
            width: 100%;
            height: 600px;
            margin-bottom: var(--section-spacing);
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid #0077ff;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        
        .game-frame-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(15, 25, 35, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            z-index: 2;
            text-align: center;
        }
        
        .game-frame-overlay.hidden {
            display: none;
        }
        
        .game-frame-overlay img {
            max-width: 80%;
            max-height: 50%;
            object-fit: contain;
            margin-bottom: 1.5rem;
        }
        
        .game-frame-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: white;
        }
        
        .game-frame {
            width: 100%;
            height: 100%;
            border: none;
            background-color: #0f1923;
        }
        
        .pre-frame-content {
            display: flex;
            gap: var(--section-spacing);
            margin-bottom: var(--section-spacing);
        }
        
        .pre-frame-box {
            flex: 1;
            background-color: #1a2a3a;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            padding: 1.5rem;
            border: 1px solid #2a3a4a;
            color: #e0e0e0;
        }
        
        h1 {
            font-size: 1.8rem;
            color: var(--heading-color);
        }
        
        h2, h3, h4, h5, h6 {
            color: var(--heading-color);
        }
        
        .section-title {
            font-size: 1.5rem;
            color: #00a1ff;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #00a1ff;
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--section-spacing);
            margin: var(--section-spacing) 0;
        }
        
        .feature-card {
            background-color: #1a2a3a;
            border-radius: 8px;
            padding: 1.2rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            border: 1px solid #2a3a4a;
            color: #e0e0e0;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            border-color: #0077ff;
        }
        
        .feature-icon {
            font-size: 2rem;
            color: #0077ff;
            margin-bottom: 0.8rem;
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--heading-color);
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: var(--section-spacing);
            margin-top: var(--section-spacing);
        }
        
        .game-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .game-card {
            background-color: #1a2a3a;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            border: 1px solid #2a3a4a;
            height: 100%;
        }
        
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            border-color: #0077ff;
        }
        
        .game-card img {
            width: 100%;
            object-fit: cover;
        }
        
        .game-card-title {
            padding: 0.8rem;
            font-weight: 600;
            margin: 0;
            color: var(--heading-color);
        }
        
        .btn {
            display: inline-block;
            background-color: #0077ff;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #0055cc;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .btn-play {
            font-size: 1.1rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #00ccff, #0077ff);
            z-index: 3;
            margin-top: 1rem;
        }
        
        .game-controls {
            display: none;
            background-color: #1a2a3a;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            padding: 1.5rem;
            margin-bottom: var(--section-spacing);
            border: 1px solid #2a3a4a;
        }
        
        .controls-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--section-spacing);
        }
        
        .rating-container {
            flex: 1;
            min-width: 250px;
            padding: 1rem;
            background-color: #0f1923;
            border-radius: 8px;
            border: 1px solid #2a3a4a;
        }
        
        .rating-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .average-rating {
            font-size: 2rem;
            font-weight: bold;
            margin-right: 1rem;
            color: #0077ff;
        }
        
        .rating-count {
            color: #aaa;
        }
        
        .fullscreen-container {
            flex: 0 0 auto;
        }
        
        .btn-fullscreen {
            background-color: #0077ff;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0.8rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
        }
        
        .btn-fullscreen i {
            margin-right: 5px;
        }
        
        .btn-fullscreen:hover {
            background-color: #0055cc;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .comments-section {
            margin-top: var(--section-spacing);
        }
        
        .comment {
            padding: 1rem;
            border-bottom: 1px solid #2a3a4a;
            margin-bottom: 1rem;
            color: #e0e0e0;
        }
        
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        
        .comment-author {
            font-weight: bold;
            color: #0077ff;
        }
        
        .comment-date {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .comment-text {
            line-height: 1.5;
        }
        
        .comment-form {
            margin-top: var(--section-spacing);
            padding: 1.5rem;
            background-color: #0f1923;
            border-radius: 8px;
            border: 1px solid #2a3a4a;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #e0e0e0;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #2a3a4a;
            border-radius: 4px;
            font-family: inherit;
            box-sizing: border-box;
            background-color: #1a2a3a;
            color: white;
        }
        
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: #0077ff;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: #0055cc;
        }
        
        footer {
            background-color: #0f1923;
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: var(--section-spacing);
            border-top: 1px solid #1a2a3a;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }
        
        .footer-link {
            color: white;
            margin: 0 1rem;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: #0077ff;
        }
        
        .footer-text {
            opacity: 0.8;
            margin: 0.5rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Remove bullets from lists */
        ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        ul li {
            padding-left: 1.5rem;
            position: relative;
            margin-bottom: 0.5rem;
            color: #e0e0e0;
        }
        
        ul li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.7em;
            width: 0.5rem;
            height: 0.5rem;
            background-color: #0077ff;
            border-radius: 50%;
        }
        
        @media (max-width: 768px) {
            .logo {
                font-size: 2rem;
            }
            
            .game-frame-container {
                height: 400px;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
            
            .games-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
            
            .footer-links {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-link {
                margin: 0.5rem 0;
            }
            
            .controls-row {
                flex-direction: column;
                align-items: stretch;
            }
            
            .rating-container {
                min-width: 100%;
            }
            
            .fullscreen-container {
                width: 100%;
            }
            
            .btn-fullscreen {
                width: 100%;
                justify-content: center;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-container {
                flex-direction: column;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                padding: 0;
            }
            
            .nav-container.active {
                max-height: 500px;
                padding: 0.8rem 0;
            }
            
            .nav-item {
                padding: 0.8rem 1.5rem;
            }
            
            .pre-frame-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .game-frame-overlay h3 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
            }
            
            .tagline {
                font-size: 1rem;
            }
            
            .game-frame-container {
                height: 300px;
            }
            
            .section-title {
                font-size: 1.3rem;
            }
            
            .nav-item {
                padding: 0.5rem 0.8rem;
                font-size: 0.9rem;
            }
            
            .btn-play {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }
            
            .ad-banner {
                width: calc(100% - 2rem);
                padding: 1rem;
            }
        }
