.welcome-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bs-dark);
  color: white;
  padding-top: 80px;
}

.welcome-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.welcome-subtitle {
  font-size: 1.5rem;
  opacity: 0.8;
  margin-bottom: 3rem;
}

.option-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.option-card {
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.option-card:hover {
  background-color: #C1FF72;
  transform: translateY(-10px);
  border-color: #C1FF72;
  box-shadow: 0 20px 40px rgba(193, 255, 114, 0.2);
}

.option-card:hover .card-icon,
.option-card:hover .card-text {
  color: var(--bs-dark) !important;
}

.card-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.card-text {
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.3s ease;
}