.explore-page {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.explore-hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--text-primary, #fff);
  margin-bottom: 1rem !important;
}

.hero-title .hero-icon {
  font-size: 2.5rem;
  color: var(--primary-main, #667eea);
}

.hero-subtitle {
  font-size: 1.1rem !important;
  color: var(--text-secondary, rgba(255, 255, 255, 0.8));
  line-height: 1.6 !important;
  margin-bottom: 1.5rem !important;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.7));
}

.stat-item svg {
  color: var(--primary-main, #667eea);
}

.categories-section {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.75rem !important;
  font-weight: 600 !important;
  color: var(--text-primary, #fff);
  margin-bottom: 2rem !important;
  text-align: center;
}

.category-card {
  background: var(--surface, rgba(255, 255, 255, 0.05)) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.category-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.category-icon svg {
  font-size: 2rem;
  color: #fff;
}

.category-title {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: var(--text-primary, #fff);
  margin-bottom: 0.75rem !important;
}

.category-description {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1.5rem !important;
  flex-grow: 1;
}

.category-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  color: var(--text-secondary, rgba(255, 255, 255, 0.7));
  font-size: 0.75rem;
}

.seo-content h2,
.seo-content h3 {
  color: var(--text-primary, #fff);
}

.seo-content p {
  line-height: 1.7;
}

.benefit-box {
  background: var(--surface, rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}

.benefit-box h3 {
  color: var(--text-primary, #fff);
}

@media (max-width: 768px) {
  .explore-page {
    padding: 1rem;
  }

  .explore-hero {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 1.75rem !important;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-title .hero-icon {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .section-title {
    font-size: 1.5rem !important;
  }
}
