.main-content {
  padding: 40px 0;
  min-height: calc(100vh - 200px);
}

.hero {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
  border-radius: var(--border-radius);
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '✨';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.hero::after {
  content: '💫';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite 1.5s;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.features {
  margin-bottom: 50px;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.features h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  margin: 15px auto 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card {
  text-align: center;
  padding: 35px 25px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-light);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.footer {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 40px 0;
  text-align: center;
  margin-top: auto;
}

.footer p {
  opacity: 0.9;
  font-weight: 600;
}

.page-header {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
  border-radius: var(--border-radius);
  margin-bottom: 40px;
}

.page-header h1 {
  margin-bottom: 15px;
}

.page-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.section-title h2 {
  margin: 0;
}

.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  text-align: center;
  padding: 25px 20px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-color);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-weight: 700;
  color: var(--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.empty-state {
  text-align: center;
  padding: 60px 40px;
  color: var(--text-light);
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.empty-state h3 {
  color: var(--text-color);
  margin-bottom: 10px;
}

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 107, 157, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 25px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
