/* 🌈 Background gradient sesuai mockup kamu */
body {
    background: linear-gradient(0deg, #ECEFCA 0%, #94B4C1 50%, #547792 100%);
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
  }
  
  /* ✨ Biar quiz dan result nggak center */
  body.quiz-active {
    display: block;
  }

  
  
  .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 700px;
    padding: 2rem;
    background-color: #C7D9DD;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px; /* Tambahin biar nggak terlalu lebar */
    margin: 0 auto;
    top: 0;
    margin-top: 10vh;
  }

  
  /* ✅ Start screen center */
  #startScreen {
    text-align: center;
  }
  
  /* ✅ Quiz dan result screen kiri */
  #quizScreen {
    text-align: left;
    width: 100%;  /* Pastikan lebar 100% */
    margin: 0 auto;
    padding: 20px;
  }

  #resultScreen{
    text-align: center;
  }
  
  /* 🧠 Typography and button styling */
  .title {
    font-size: 2rem;
    font-weight: bold;
  }
  
  .highlight {
    color: #547792;
  }
  
  .subtitle {
    margin-bottom: 1.5rem;
  }
  
  .question {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .options label {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .nav-buttons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
  }
  
  /* 🟦 Button styling */
  .btn-primary {
    background-color: #ADB2D4;
    color: white;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .btn-primary:hover {
    background-color: #8e94c0;
  }
  
  .btn-secondary {
    background-color: #D5E5D5;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .btn-secondary:hover {
    background-color: #c0d4c0;
  }
  
  /* 🙈 Utility */
  .hidden {
    display: none;
  }
  