/**
 * Ontario Location Popup Styles
 * 
 * Styles for the Ontario redirect popup that appears when users
 * from Ontario visit Rest of Canada casino review pages.
 */

.ontario-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.ontario-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.ontario-popup-content {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: ontarioPopupSlideIn 0.3s ease-out;
}

@keyframes ontarioPopupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ontario-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.25rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

.ontario-popup-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.ontario-popup-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.ontario-popup-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.ontario-popup-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 2rem;
}

.ontario-popup-text strong {
  color: #1f2937;
  font-weight: 700;
}

.ontario-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ontario-popup-btn {
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.ontario-popup-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
}

.ontario-popup-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.ontario-popup-btn-secondary {
  background: #f3f4f6;
  color: #4b5563;
}

.ontario-popup-btn-secondary:hover {
  background: #e5e7eb;
  color: #374151;
}

.ontario-popup-footer {
  font-size: 0.875rem;
  color: #9ca3af;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .ontario-popup-content {
    padding: 2rem 1.5rem;
  }

  .ontario-popup-title {
    font-size: 1.5rem;
  }

  .ontario-popup-text {
    font-size: 1rem;
  }
}
