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: #1a1a2e;
            color: #e6e6e6;
        }
        header {
            background-color: #16213e;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            color: #0f3460;
            text-shadow: 2px 2px 4px #e94560;
            margin: 0;
        }
        nav ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        nav a {
            color: #533483;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #e94560;
            font-size: 1.5em;
            cursor: pointer;
        }
        h1 {
            color: #e94560;
            border-bottom: 2px solid #533483;
            padding-bottom: 10px;
        }
        h2 {
            color: #0f3460;
            margin-top: 30px;
        }
        h3 {
            color: #533483;
        }
        .download-btn, .login-btn {
            display: inline-block;
            padding: 12px 24px;
            margin: 15px 0;
            background-color: #e94560;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #0f3460;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
        }
        .community-section {
            background-color: #16213e;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        footer {
            margin-top: 50px;
            padding: 20px;
            text-align: center;
            background-color: #0f3460;
            border-radius: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #533483;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
            }
            nav ul.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .logo {
                font-size: 1.8em;
            }
        }
