        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #1e263c;
            color: #fff;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* Header styles */
        header {
            background-color: #21293e;
            position: fixed;
            width: 100%;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 2rem;
        }
        
        .logo {
            height: 32px;
        }
        
        .search-bar {
            display: flex;
            flex: 1;
            max-width: 500px;
            margin: 0 1rem;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: none;
            background-color: #343e59;
            color: white;
        }
        
        .search-input::placeholder {
            color: #9aa0b1;
        }
        
        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #9aa0b1;
            cursor: pointer;
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .btn-login {
            background-color: #ff6b00;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 4px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .language-selector {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .flag-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
        }
        
        /* Sidebar styles */
        .sidebar {
            position: fixed;
            width: 65px;
            height: 100vh;
            background-color: #1e263c;
            z-index: 90;
            padding-top: 60px;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        }
        
        .sidebar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 65px;
            color: white;
            font-size: 0.7rem;
            text-align: center;
            cursor: pointer;
        }
        
        .sidebar-item:hover {
            background-color: #394562;
        }
        
        .sidebar-item.active {
            background-color: #ff6b00;
        }
        
        .sidebar-icon {
            font-size: 1.5rem;
            margin-bottom: 4px;
        }
        
        /* Main content */
        .main-content {
            margin-left: 65px;
            padding-top: 60px;
        }
        
        /* Slider/banner section */
        .slider-section {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .slider-container {
            display: flex;
            transition: transform 0.4s ease;
        }
        
        .slider-item {
            min-width: 100%;
            position: relative;
        }
        
        .banner-img {
            width: 100%;
            display: block;
        }
        
        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            padding: 2rem;
            width: 50%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .slide-date {
            font-size: 0.9rem;
            color: #ff6b00;
            margin-bottom: 0.5rem;
        }
        
        .slide-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .read-more {
            color: #ff6b00;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 1rem;
        }
        
        .social-share {
            position: absolute;
            bottom: 1rem;
            left: 2rem;
            display: flex;
            gap: 0.5rem;
        }
        
        .social-icon {
            width: 30px;
            height: 30px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e263c;
        }
        
        .slider-dots {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }
        
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #7e8494;
            cursor: pointer;
        }
        
        .dot.active {
            background-color: #ff6b00;
        }
        
        .slider-arrows {
            position: absolute;
            bottom: 1rem;
            right: 2rem;
            display: flex;
            gap: 0.5rem;
        }
        
        .arrow {
            width: 30px;
            height: 30px;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
        }
        
        /* Games sections */
        .games-section {
            padding: 2rem;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .section-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
        }
        
        .section-subtitle {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1rem;
        }
        
        .section-arrows {
            display: flex;
            gap: 0.5rem;
        }