/* Notification System Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 300px;
  max-width: 500px;
  padding: 16px;
  border-radius: 8px;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.notification.error {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border-left: 4px solid #c0392b;
}

.notification.success {
  background: linear-gradient(135deg, #00d2d3, #54a0ff);
  border-left: 4px solid #0097e6;
}

.notification.warning {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  border-left: 4px solid #f39c12;
}

.notification.info {
  background: linear-gradient(135deg, #54a0ff, #5f27cd);
  border-left: 4px solid #2f3542;
}

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

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification-content i {
  font-size: 16px;
  flex-shrink: 0;
}

.notification-content span {
  flex: 1;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Video Play Button */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.video-play-button:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .notification {
    left: 20px;
    right: 20px;
    min-width: unset;
    max-width: unset;
    transform: translateY(-100%);
  }
  
  .notification.show {
    transform: translateY(0);
  }
}

/* Animation for entrance */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification {
  animation: slideIn 0.3s ease;
}