/* Generic page styles: base page layout, stats, 404 */

/* ============================================
   PAGE SECTION STYLES
   ============================================ */

/* Page Section (for non-home pages) */
.page-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.page-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

/* ============================================
   STATS HERO
   ============================================ */

.stats-hero {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.stats-hero-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(108, 171, 221, 0.1) 0%, rgba(28, 44, 91, 0.2) 100%);
  border-radius: 16px;
  border: 1px solid rgba(108, 171, 221, 0.2);
  min-width: 150px;
}

.stats-hero-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
}

.stats-hero-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   404 ERROR PAGE
   ============================================ */

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.error-content {
  text-align: center;
}

.error-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.8;
}

.error-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.error-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.error-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--sky-blue), var(--navy));
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.error-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(108, 171, 221, 0.3);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }

  .error-number {
    font-size: 6rem;
  }

  .stats-hero {
    gap: 1rem;
  }

  .stats-hero-item {
    min-width: 120px;
    padding: 1.5rem 1rem;
  }

  .stats-hero-number {
    font-size: 2rem;
  }
}
