/* Ana sayfa özel stilleri */
.page-home .hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(238, 41, 81, 0.15);
}

.page-home .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(238, 41, 81, 0.12), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.08), transparent 40%);
  pointer-events: none;
}

.page-home .hero-title,
.page-home .hero-subtitle,
.page-home .hero-tags {
  position: relative;
}

.page-home .tag {
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-home .tag:hover {
  background: rgba(238, 41, 81, 0.15);
  border-color: rgba(238, 41, 81, 0.3);
  color: var(--text);
}

.page-home .site-card,
.page-home .bonus-card {
  transition: all 0.25s ease;
}

.page-home .site-card:hover,
.page-home .bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.page-home .search-bar {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(26, 29, 38, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 14px 18px;
}

.page-home .search-bar input {
  background: transparent;
}
