/* ========================================
   Casino7Hub - Additional Styles
   Notifications & Animations
   ======================================== */

/* ========================================
   Notification System
   ======================================== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #ea4335;
}

.notification-success .notification-content {
  border-left-color: #34a853;
}

.notification-error .notification-content {
  border-left-color: #ea4335;
}

.notification-warning .notification-content {
  border-left-color: #fbbc04;
}

.notification-icon {
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.notification-success .notification-icon {
  color: #34a853;
}

.notification-error .notification-icon {
  color: #ea4335;
}

.notification-warning .notification-icon {
  color: #fbbc04;
}

.notification-message {
  flex: 1;
  color: #3c4043;
  font-size: 0.938rem;
  line-height: 1.5;
}

.notification-close {
  font-size: 1.5rem;
  color: #80868b;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  color: #202124;
}

/* ========================================
   Form Validation Styles
   ======================================== */
.input-field.input-error {
  border-color: #ea4335;
  background-color: rgba(234, 67, 53, 0.05);
}

.input-field.input-error:focus {
  border-color: #ea4335;
  box-shadow: 0 0 0 3px rgba(234, 67, 53, 0.1);
}

/* ========================================
   Animation Classes
   ======================================== */
.platform-card,
.review-item,
.faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.platform-card.animate-in,
.review-item.animate-in,
.faq-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delay */
.platform-card:nth-child(1) { transition-delay: 0.1s; }
.platform-card:nth-child(2) { transition-delay: 0.2s; }
.platform-card:nth-child(3) { transition-delay: 0.3s; }
.platform-card:nth-child(4) { transition-delay: 0.4s; }
.platform-card:nth-child(5) { transition-delay: 0.5s; }
.platform-card:nth-child(6) { transition-delay: 0.6s; }
.platform-card:nth-child(7) { transition-delay: 0.7s; }
.platform-card:nth-child(8) { transition-delay: 0.8s; }

.review-item:nth-child(1) { transition-delay: 0.1s; }
.review-item:nth-child(2) { transition-delay: 0.2s; }
.review-item:nth-child(3) { transition-delay: 0.3s; }
.review-item:nth-child(4) { transition-delay: 0.4s; }

/* ========================================
   Loading State
   ======================================== */
button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========================================
   Mobile Notification Styles
   ======================================== */
@media (max-width: 768px) {
  .notification {
    right: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }
  
  .notification-content {
    padding: 0.75rem 1rem;
  }
}
