/* ==========================================================================
   WorldPlay — Deprecation Notice Page Styles
   ========================================================================== */

.notice-hero {
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  text-align: center;
  position: relative;
}

.notice-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.notice-status-pill .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  display: inline-block;
}

.notice-section {
  padding: var(--spacing-2xl) 0 var(--spacing-3xl);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.reason-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
}

.reason-card.card-warning::before {
  background: linear-gradient(180deg, #ef4444 0%, #f59e0b 100%);
}

.reason-card.card-legal::before {
  background: linear-gradient(180deg, #8b5cf6 0%, #ef4444 100%);
}

@media (hover: hover) and (pointer: fine) {
  .reason-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
  }
}

.reason-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-lg);
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  margin-bottom: var(--spacing-lg);
}

.reason-card.card-legal .reason-icon {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.reason-title {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.reason-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Thank You Section */
.thank-you-card {
  background: linear-gradient(135deg, rgba(18, 103, 255, 0.06) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(18, 103, 255, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-3xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-3xl);
}

.thank-you-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.thank-you-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xl);
  background: var(--gradient-primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(18, 103, 255, 0.3);
}

.thank-you-title {
  font-size: 1.85rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
}

.thank-you-body {
  color: var(--text-primary);
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 400;
}

/* Archive / Next Steps Section */
.archive-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.archive-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

.archive-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  .thank-you-card {
    padding: var(--spacing-xl);
  }
  .thank-you-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .archive-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
