body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: #004d99; color: white; padding: 15px; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu { display: none; }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu { display: block; }
        }
        h1 { color: #0066cc; border-bottom: 3px solid #ff9900; padding-bottom: 10px; }
        h2 { color: #0088cc; margin-top: 30px; }
        h3 { color: #00aacc; }
        .download-btn { background: #ff6600; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; display: inline-block; margin: 15px 0; }
        .login-btn { background: #0088cc; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; display: inline-block; margin: 15px 10px; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        .game-stats { background: #f0f8ff; padding: 15px; border-radius: 8px; margin: 20px 0; }
        .community-post { border-left: 4px solid #ff9900; padding: 10px 15px; margin: 15px 0; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; }
