/* ========================================
   WAITING ROOM LINK - Wartehalle Button
   ======================================== */

.waiting-room-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  
  margin-top: 16px;
  padding: 12px 24px;
  
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  
  border: none;
  border-radius: var(--radius-lg);
  
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  transition: var(--transition-base);
  
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(102, 126, 234, 0.3);
  touch-action: manipulation;
}

.waiting-room-link:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.waiting-room-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Pulsing Animation für Aufmerksamkeit */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.6);
  }
}

.waiting-room-link {
  animation: pulse 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .waiting-room-link {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}