/* Options Section */
.options-section {
  background-color: var(--background-dark);
}

.option-title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-medium);
  font-size: var(--fs-2xl);
  color: var(--text-dark);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.option-description {
  font-family: var(--font-secondary);
  font-weight: var(--fw-light);
  font-size: var(--fs-base);
  color: var(--text-dark);
}

/* Options Animation Effects */
.option-title {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.option-description {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.option-icon {
  animation: fadeInRight 0.8s ease-out 0.6s both;
}
