body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            background-color: #fff9e6;
        }
        header {
            background-color: #ff6b35;
            color: white;
            padding: 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            padding: 0;
        }
        nav li {
            margin-right: 20px;
        }
        nav a {
            color: white;
            text-decoration: none;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        h1 {
            color: #ff6b35;
            border-bottom: 3px solid #ff6b35;
            padding-bottom: 10px;
        }
        h2 {
            color: #e74c3c;
            margin-top: 30px;
        }
        h3 {
            color: #c0392b;
        }
        .download-btn {
            display: inline-block;
            background-color: #27ae60;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .login-btn {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 12px 25px;
            margin: 15px 0 15px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .game-image {
            display: block;
            max-width: 100%;
            margin: 20px auto;
            border-radius: 8px;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 20px;
            margin-top: 40px;
        }
        .tag {
            display: inline-block;
            background-color: #7f8c8d;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 3px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .mobile-nav-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
            }
            nav ul.active {
                display: flex;
            }
            nav li {
                margin: 10px 0;
            }
        }
