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: #4a00e0;
            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);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            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;
            }
        }
        .download-btn {
            display: inline-block;
            background-color: #ff4757;
            color: white;
            padding: 12px 24px;
            margin: 10px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover {
            background-color: #ff6b81;
        }
        .login-btn {
            display: inline-block;
            background-color: #2ed573;
            color: white;
            padding: 12px 24px;
            margin: 10px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .login-btn:hover {
            background-color: #51e68f;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
        }
        h1 {
            color: #4a00e0;
            border-bottom: 3px solid #4a00e0;
            padding-bottom: 10px;
        }
        h2 {
            color: #2f3542;
            margin-top: 30px;
        }
        h3 {
            color: #5352ed;
        }
        .stats-box {
            background-color: #e1f5fe;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .community-box {
            background-color: #fffde7;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        footer {
            background-color: #2f3542;
            color: white;
            padding: 20px;
            margin-top: 40px;
            border-radius: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #7bed9f;
            color: #2f3542;
            padding: 5px 10px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
        }
