body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; background-color: #f5f5ff; }
        h1 { color: #ff4500; text-align: center; }
        h2 { color: #0066cc; border-bottom: 2px solid #0066cc; padding-bottom: 5px; }
        h3 { color: #2e8b57; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; color: #ff4500; text-align: center; margin: 20px 0; }
        .download-btn { background-color: #4CAF50; color: white; padding: 12px 24px; text-align: center; display: inline-block; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .login-btn { background-color: #2196F3; color: white; padding: 12px 24px; text-align: center; display: inline-block; margin: 15px 10px; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .nav { background-color: #333; overflow: hidden; display: flex; justify-content: center; flex-wrap: wrap; }
        .nav a { color: white; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 17px; }
        .nav a:hover { background-color: #ddd; color: black; }
        .mobile-nav-toggle { display: none; background-color: #333; color: white; padding: 10px; cursor: pointer; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .table-container { overflow-x: auto; margin: 20px 0; }
        table { width: 100%; border-collapse: collapse; }
        th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
        th { background-color: #f2f2f2; }
        @media (max-width: 768px) {
            .nav { flex-direction: column; display: none; }
            .nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
        }
