body {
    background: #fef9f3;
    font-family: 'Pretendard', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .container {
    text-align: center;
  }
  
  .card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 320px;
  }
  
  .question-number {
    font-size: 18px;
    color: #555;
    margin-bottom: 8px;
  }
  
  .question-text {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .options {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .option-button {
    padding: 12px 16px;
    background: #f8e5db;
    border: 2px solid #d4b0a6;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .option-button:hover {
    background: #e2b8a3;
    color: white;
  }
  
  .option-button.selected {
    background: #e2b8a3;
    color: white;
    border: 2px solid #c07f6b;
  }
  
  .next-button {
    margin-top: 20px;
    padding: 12px 20px;
    background: #222;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
  }
  
  .next-button:hover {
    background: #555;
  }
  