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: #f5f5ff;
        }
        header {
            background-color: #4a148c;
            color: white;
            padding: 20px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ffeb3b;
            text-decoration: none;
        }
        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
        }
        nav ul li {
            margin-right: 20px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
        }
        h1 {
            color: #4a148c;
            border-bottom: 2px solid #ffeb3b;
            padding-bottom: 10px;
        }
        h2 {
            color: #7b1fa2;
            margin-top: 30px;
        }
        h3 {
            color: #9c27b0;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #ff5722;
            color: white;
            padding: 12px 24px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #e64a19;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
        }
        .highlight {
            background-color: #fff3e0;
            padding: 15px;
            border-left: 4px solid #ff9800;
            margin: 20px 0;
        }
        footer {
            background-color: #4a148c;
            color: white;
            padding: 20px;
            margin-top: 40px;
            text-align: center;
        }
        .tag-cloud {
            margin: 20px 0;
        }
        .tag-cloud a {
            color: #7b1fa2;
            text-decoration: none;
            margin: 0 5px;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
            }
            nav ul.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .logo {
                font-size: 24px;
            }
        }
