@font-face {
    font-family: RedditSans;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/RedditSans-Regular.otf') format('opentype');
  }
  
  @font-face {
    font-family: RedditSans-Bold;
    font-display: swap;
    src: url('../fonts/RedditSans-Bold.otf') format('opentype');
  }
  
  @font-face {
    font-family: RedditSansLight;
    font-display: swap;
    src: url('../fonts/RedditSans-Light.otf') format('opentype');
  }
  
  @font-face {
    font-family: RedditSansExtraBold;
    font-display: swap;
    src: url('../fonts/RedditSans-ExtraBold.otf') format('opentype');
  }
  
  :root {
    --primary-color: #FF4500;
    --primary-color-hover: #e75538;
    --text-color: #333;
    --light-text-color: rgba(51, 51, 51, 0.8);
    --background-color: #fff8f0;
    --card-background: url('/background.png');
    --border-color: #e5e5e5;
    --selection-border: #f56042;
    
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
  
    color: var(--text-color);
    /* background: linear-gradient(135deg, #ffdfcf, #ffc1a9); */
  
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body {
    margin: 0;
    display: flex;
    min-width: 320px;
    min-height: 100vh;
    font-family: RedditSans;
  }
  
  #app {
    max-width: 90vw;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    font-family: RedditSans;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  h1, h2, h3, h4 {
    line-height: 1.2;
    font-family: RedditSans-Bold;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  button, a {
    font-family: RedditSans-Bold;
  }
  
  /* Button styles */
  .primary-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 50px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .primary-button:hover {
    background-color: var(--primary-color-hover);
  }
  
  .secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .secondary-button:hover {
    background-color: var(--primary-color);
    color: #fff;
  }
  
  /* Card container */
  .card-container {
    background-image: var(--card-background);
    background-size: 100% 100%;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    /* max-width: 100; */
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
    height: 100%;
  }
  
  /* Options grid */
  .options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 30px 0;
  }
  
  .option-item {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .option-item:hover {
    transform: translateY(-3px);
  }
  
  .option-item.selected {
    border-color: var(--selection-border);
  }
  
  .option-item img {
    max-width: 100%;
    height: auto;
  }
  
  .option-label {
    margin-top: 8px;
    font-weight: 500;
  }
  
  /* Navigation buttons */
  .navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
  }
  
  /* Progress indicator */
  .progress-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .step-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e0e0e0;
    margin: 0 5px;
  }
  
  .step-indicator.active {
    background-color: var(--primary-color);
  }
  
  /* Form inputs */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    background-color: #f9f9f9;
  }
  
  .form-input:focus {
    outline: none;
    border-color: var(--primary-color);
  }
  
  /* Responsive adjustments */
  @media (max-width: 640px) {
    #app {
      padding: 1rem;
    }
    
    .options-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .eta {
    position: absolute;
    right: 6%;
    top: 65px;
    display: flex;
    flex-direction: column;
  }
  
  .eta img {
    width: 100px;
  }
  
  /* .eta::before {
    content: "";
    background-image: url('/dots.png');
    background-size: 100% 100%;
    height: 100px;
    width: 100px;
    position: absolute;
    top: -100px;
    left: -25px;
  } */
  
  .selected {
    position: relative;
  }
  
  .selected::before {
    content: "";
    background-image: url('/upvote.png');
    background-size: 100% 100%;
    height: 25px;
    width: 25px;
    position: absolute;
    top: 0;
    z-index: 1000;
    margin: 5px 3px;
  }
  
  .selected {
    position: relative;
  }
  
  .selected::before {
    content: "";
    background-image: url('/upvote.png');
    background-size: 100% 100%;
    height: 25px;
    width: 25px;
    position: absolute;
    top: 0;
    left: 3px;
    z-index: 1000;
    margin: 5px 3px;
    
    /* Animation properties */
    animation: upvoteAppear 0.4s ease-out forwards;
    transform-origin: center bottom;
  }
  
  @keyframes upvoteAppear {
    0% {
      opacity: 0;
      transform: scale(0.2) translateY(10px);
    }
    50% {
      opacity: 1;
      transform: scale(1.2) translateY(0);
    }
    75% {
      transform: scale(0.9) translateY(0);
    }
    100% {
      transform: scale(1) translateY(0);
    }
  }
  
  /* Optional: Add a transition for when the selected class is removed */
  *::before {
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }
  
  
  .card-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .navigation-buttons {
    min-width: 500px;
  }
  
  h2.progress {
    margin: unset !important;
    font-family: RedditSans-Bold;
  }
  
  h1.question {
    margin-top: unset;
  }
  
  ::marker {
    font-family: RedditSansExtraBold !important;
  }

  ol, li {
    font-family: RedditSans;
  }
  
  ol li span,
  ol li b {
    font-family: RedditSansExtraBold  !important;
  }
  
  .text-center {
    text-align: center;
    font-family: RedditSansExtraBold  !important;
    text-decoration: underline;
  }
  
  /* Animation for .eta section */
  .fade-slide-enter-active {
    transition: all 0.5s ease;
  }
  
  .fade-slide-leave-active {
    transition: all 0.3s ease;
  }
  
  .fade-slide-enter-from, 
  .fade-slide-leave-to {
    opacity: 0;
    transform: translateY(20px);
  }