body {
            font-family: 'Arial', 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: 15px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: #ffeb3b;
        }
        nav ul {
            display: flex;
            list-style: none;
            padding: 0;
        }
        nav ul li {
            margin-right: 20px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            right: 20px;
            top: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
            }
            nav ul.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        h1 {
            color: #4a148c;
            border-bottom: 3px solid #ffeb3b;
            padding-bottom: 10px;
        }
        h2 {
            color: #7b1fa2;
            margin-top: 30px;
        }
        h3 {
            color: #9c27b0;
        }
        .download-btn {
            display: inline-block;
            background-color: #4caf50;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .login-btn {
            display: inline-block;
            background-color: #2196f3;
            color: white;
            padding: 12px 25px;
            margin: 15px 10px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .game-image {
            display: block;
            margin: 20px auto;
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .stats-box {
            background-color: #e8eaf6;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        footer {
            background-color: #4a148c;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }
        .tag-cloud {
            margin: 30px 0;
            text-align: center;
        }
        .tag-cloud a {
            color: #7b1fa2;
            margin: 0 10px;
            text-decoration: none;
        }
