.interests-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}

.interest-card {
  background: rgba(10, 10, 10, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  user-select: none;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interest-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.interest-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
}

.interest-card:hover::before {
  opacity: 1;
}

.interest-card.selected {
  background: rgba(251, 191, 36, 0.15);
  border-color: #fbbf24;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
  transform: scale(1.05);
}

.interest-card.selected::before {
  opacity: 1;
}

.interest-card:active {
  transform: scale(0.98);
}

.interest-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.selected-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-align: center;
}

.selected-count.highlight {
  color: #fbbf24;
  font-weight: 600;
}

.continue-button {
  margin-top: 1rem;
  width: 100%;
  max-width: 300px;
}

.continue-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.min-requirement {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .interests-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .interest-card {
    padding: 1.25rem 0.75rem;
    min-height: 90px;
  }

  .interest-name {
    font-size: 1rem;
  }
}

