body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f3e9;
        }
        header {
            background-color: #e67e22;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5em;
            cursor: pointer;
        }
        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            gap: 20px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        h1 {
            color: #e67e22;
            font-size: 2.2em;
            margin-bottom: 20px;
            border-bottom: 2px solid #f1c40f;
            padding-bottom: 10px;
        }
        h2 {
            color: #d35400;
            font-size: 1.8em;
            margin: 30px 0 15px;
        }
        h3 {
            color: #e67e22;
            font-size: 1.5em;
            margin: 25px 0 10px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #27ae60;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin: 15px 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #219653;
            transform: translateY(-2px);
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .feature-box {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        footer {
            background-color: #34495e;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
            border-radius: 10px;
        }
        .tag-cloud {
            margin: 20px 0;
        }
        .tag-cloud a {
            display: inline-block;
            background-color: #7f8c8d;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            font-size: 0.9em;
        }
        .tag-cloud a:hover {
            background-color: #95a5a6;
        }
        @media (max-width: 768px) {
            .mobile-nav-toggle {
                display: block;
            }
            nav ul {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 20px;
            }
            nav ul.active {
                display: flex;
            }
            body {
                padding: 10px;
            }
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.5em;
            }
        }
