body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #0a0a2a;
            color: #e0e0e0;
        }
        header {
            background-color: #1a1a4a;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            color: #ffcc00;
            text-shadow: 2px 2px 4px #000;
            margin: 0;
        }
        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        nav li a {
            color: #e0e0e0;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        h1 {
            color: #ffcc00;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 10px;
        }
        h2 {
            color: #66ccff;
            margin-top: 30px;
        }
        h3 {
            color: #99ff99;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #ff6600;
            color: white;
            padding: 12px 25px;
            margin: 15px 5px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #cc5200;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
        }
        footer {
            margin-top: 50px;
            padding: 20px;
            background-color: #1a1a4a;
            border-radius: 10px;
            text-align: center;
        }
        .tag-cloud {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            background-color: #333;
            color: #e0e0e0;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 5px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
            }
            nav ul.active {
                display: flex;
            }
            .logo {
                font-size: 2em;
            }
        }
