body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: inline-block;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5em;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .show-nav {
                display: flex !important;
                flex-direction: column;
            }
        }
        .game-stats {
            background-color: #FFE8D6;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .download-btn, .login-btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 10px 5px;
            background-color: #FF6B35;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #E05D2A;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
        }
        footer {
            margin-top: 40px;
            padding: 20px;
            background-color: #333;
            color: white;
            border-radius: 10px;
        }
        .tag-cloud {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #666;
            color: white;
            padding: 5px 10px;
            margin: 3px;
            border-radius: 3px;
            text-decoration: none;
        }
