body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #e74c3c; font-size: 2.5em; text-align: center; margin-bottom: 30px; }
        h2 { color: #2980b9; font-size: 1.8em; margin-top: 40px; }
        h3 { color: #27ae60; font-size: 1.4em; }
        .nav { background: #f39c12; padding: 15px; position: sticky; top: 0; z-index: 100; }
        .nav-mobile { display: none; background: #f39c12; padding: 10px; text-align: center; }
        .nav-links { display: flex; justify-content: space-around; }
        .nav-links a { color: white; text-decoration: none; font-weight: bold; }
        .logo { font-size: 1.8em; font-weight: bold; color: #c0392b; text-align: center; margin: 20px 0; }
        .download-btn { background: #2ecc71; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; display: inline-block; margin: 15px 0; }
        .login-btn { background: #3498db; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; display: inline-block; margin: 15px 0; }
        .game-image { width: 100%; height: auto; margin: 20px 0; }
        .table-container { overflow-x: auto; margin: 20px 0; }
        table { width: 100%; border-collapse: collapse; }
        th, td { border: 1px solid #ddd; padding: 12px; text-align: left; }
        th { background: #f2f2f2; }
        .footer { background: #34495e; color: white; padding: 20px; text-align: center; margin-top: 50px; }
        @media (max-width: 768px) {
            .nav-links { flex-direction: column; }
            .nav-links a { padding: 10px 0; }
            .nav-mobile { display: block; }
            .nav { display: none; }
        }
