body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            background-color: #1a1a2e;
            color: #e6e6e6;
        }
        header {
            background-color: #4b0082;
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        nav ul {
            display: flex;
            list-style: none;
            padding: 0;
        }
        nav ul li {
            margin-left: 20px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .content {
            padding: 30px 0;
        }
        h1 {
            font-size: 32px;
            color: #ff6b6b;
            margin-bottom: 20px;
        }
        h2 {
            font-size: 24px;
            color: #4ecdc4;
            margin: 30px 0 15px;
        }
        h3 {
            font-size: 20px;
            color: #a8e6cf;
            margin: 25px 0 10px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #ff6b6b;
            color: white;
            padding: 12px 30px;
            margin: 15px 10px 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #ff5252;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #4ecdc4;
        }
        .game-stats {
            background-color: #16213e;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        .community-section {
            background-color: #0f3460;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        footer {
            background-color: #0f3460;
            color: #e6e6e6;
            padding: 30px 0;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        .footer-links a {
            color: #a8e6cf;
            margin: 0 15px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            nav ul.active {
                display: flex;
                flex-direction: column;
            }
            nav ul li {
                margin: 10px 0;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 22px;
            }
        }
