
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #8257e6, #e83e8c);
            min-height: 100vh;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 20px;
            border-radius: 25px;
        }

        .nav-links {
            display: flex;
            gap: 10px;
            margin-right: 10px;
            margin-left: auto;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

        .search-container {
            display: flex;
            align-items: center;
            margin-left: 10px;
        }

        .search-box {
            padding: 8px 15px;
            border: none;
            border-radius: 20px;
            width: 200px;
            margin-right: 10px;
        }

        .search-btn {
            background: white;
            border: none;
            padding: 8px;
            border-radius: 50%;
            cursor: pointer;
        }

        .banner {
            display: flex;
            justify-content: center;
            gap: 5px;
            padding: 10px;
            white-space: nowrap;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow-x: auto;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
        }

        .banner-item {
            padding: 8px 20px;
            background: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            text-decoration: none;
            color: #333;
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
            font-size: 14px;
            font-weight: 600;
            min-width: fit-content;
            white-space: nowrap;
        }

        .banner-item:hover {
            background: #f0f0f0;
        }

        .ad-banner {
            width: 728px;
            height: 90px;
            background: white;
            margin: 20px auto;
            border-radius: 8px;
        }

        .games-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section-title {
            color: white;
            font-size: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
        }

        .game-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 1;
            text-decoration: none;
            color: inherit;
            position: relative;
        }

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

        .featured-game {
            grid-column: span 2;
            grid-row: span 2;
        }

        .game-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 8px;
            text-align: center;
            font-size: 14px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .game-card:hover .game-title {
            transform: translateY(0);
        }

        .banner::-webkit-scrollbar {
            height: 0;
        }

        
        .layout-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            min-height: 100vh;
        }

        .main-content {
            flex: 1;
            max-width: 1200px;
        }

        .sidebar-left, .sidebar-right {
            width: 300px;
            height: 100%;
            align-self: stretch;
        }

        .ad-banner-vertical {
            width: 300px;
            height: 600px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 20px;
        }

        
        @media (max-width: 1600px) {
            .sidebar-left {
                display: none;
            }
        }

        @media (max-width: 1200px) {
            .sidebar-right {
                display: none;
            }
        }

        .hot-games h2 {
            color: white;
            font-size: 24px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        
        .footer-description {
            width: 100%;
            background: rgba(0, 0, 0, 0.2);
            margin-top: 40px;
            padding: 40px 0;
            backdrop-filter: blur(10px);
        }

        .description-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            color: white;
        }

        .description-container h2 {
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
            color: #fff;
        }

        .description-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }

        .description-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .description-item:hover {
            transform: translateY(-5px);
        }

        .description-item h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #fff;
        }

        .description-item p {
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-note {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-note p {
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
        }

        
        @media (max-width: 768px) {
            .description-grid {
                grid-template-columns: 1fr;
            }
        }

