body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: #FF5733; color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        nav { display: flex; justify-content: center; gap: 20px; margin: 15px 0; }
        nav a { color: white; text-decoration: none; font-weight: 500; }
        .mobile-nav-toggle { display: none; position: absolute; right: 20px; top: 20px; }
        h1 { color: #FF5733; border-bottom: 3px solid #FFD700; padding-bottom: 10px; }
        h2 { color: #E67E22; margin-top: 30px; }
        h3 { color: #2980B9; }
        .download-btn, .login-btn { display: inline-block; background: #2ECC71; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .login-btn { background: #3498DB; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .game-stats { background: #F8F9FA; padding: 15px; border-left: 5px solid #FF5733; margin: 20px 0; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #7F8C8D; color: white; padding: 5px 10px; margin: 5px; border-radius: 3px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            .mobile-nav-toggle { display: block; }
            .nav-active { display: flex; }
            body { padding: 10px; }
        }
