.hero-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  margin-bottom: var(--space-4xl);
}

.hero-content {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.hero-text {
  flex: 1;
  padding-right: var(--space-4xl);
  text-align: left;
}

.hero-image {
  flex-shrink: 0;
  width: 500px;
  height: 500px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
  font-weight: 400;
}

.marketplace-tags {
  margin-bottom: var(--space-3xl);
}

.active-marketplaces {
  margin-bottom: var(--space-md);
}

.coming-soon {
  opacity: 0.6;
}

.tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.tag.active {
  background: var(--primary-teal);
  color: white;
}

.tag.inactive {
  background: var(--bg-tertiary);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.user-welcome {
  margin-bottom: var(--space-3xl);
}

.welcome-text {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  font-weight: 500;
}

.welcome-username {
  font-weight: 700;
  color: var(--primary-teal);
}

.action-buttons {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.auth-buttons {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 208, 206, 0.15);
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: var(--space-4xl) 0;
  }

  .hero-content {
    flex-direction: column;
    gap: var(--space-3xl);
  }

  .hero-text {
    text-align: center;
    padding-right: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-image {
    width: 300px;
    height: 300px;
  }

  .action-buttons,
  .auth-buttons {
    justify-content: center;
  }
}