body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #FFF9E6;
        }
        header {
            background-color: #FF6B35;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-toggle {
                display: block;
            }
        }
        h1 {
            color: #FF6B35;
            border-bottom: 3px solid #FFD166;
            padding-bottom: 10px;
        }
        h2 {
            color: #06D6A0;
            margin-top: 30px;
        }
        h3 {
            color: #118AB2;
        }
        .download-btn {
            display: inline-block;
            background-color: #073B4C;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .login-btn {
            display: inline-block;
            background-color: #EF476F;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
        }
        footer {
            margin-top: 50px;
            padding: 20px;
            background-color: #073B4C;
            color: white;
            border-radius: 10px;
        }
        .tag-cloud {
            margin: 20px 0;
        }
        .tag-cloud a {
            color: #FFD166;
            margin: 0 5px;
            text-decoration: none;
        }
