/* Genel Ayarlar */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Playfair Display', serif;
    background: #060012;
    color: #ededed;
    scroll-behavior: smooth;
  }
  
  /* Giriş Bölümü */
  #intro {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  .logo-title {
    font-size: 3rem;
    letter-spacing: 6px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .main-quote {
    font-size: 1.7rem;
    line-height: 2.4rem;
    font-style: italic;
    padding: 0 20px;
  }
  
  /* Quiz Bölümü */
  #quiz-section {
    width: 100%;
    height: 100vh;
    background-color: #060012;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  }
  
  .hearts {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 1.5rem;
    color: red;
  }
  
  #quiz-container input[type="text"] {
    padding: 10px;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    width: 220px;
    margin-top: 10px;
    text-align: center;
    background-color: #1a1a2e;
    color: #ededed;
  }
  
  #quiz-container button {
    padding: 10px 20px;
    margin-left: 10px;
    background-color: #222;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
  }
  
  #result {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b38eff;
  }
  
  .progress {
    margin-top: 20px;
  }
  
  .dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin: 0 5px;
  }
  
  .dot.correct {
    background-color: #55ff88;
    border-color: #55ff88;
  }
  
  /* Son Soru (Slider) */
  #final-question {
    width: 100%;
    height: 100vh;
    background-color: #060012;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .final-heading {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .final-question {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  #missSlider {
    width: 60%;
    margin: 20px 0;
  }
  
  #sliderValue {
    font-size: 1.5rem;
    color: #b38eff;
  }
  
  /* Devam Et Butonu */
  .continue-btn {
    position: fixed;
    right: 40px;
    bottom: 40px;
    padding: 12px 24px;
    font-size: 1rem;
    background-color: #ededed;
    color: #060012;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .capsule-btn {
    display: block;
    margin: 40px auto;
    padding: 14px 28px;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    background-color: #ededed;
    color: #060012;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  
  .capsule-btn:hover {
    background-color: #d4c6e0;
    color: #060012;
  }
  body {
    background-color: #060012;
    color: #B0B0C0;
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  h1, h2 {
    color: #B0B0C0;
  }
  
  .capsule-title {
    font-size: 2.5rem;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #B0B0C0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
  }
  
  .dashboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px;
  }
  
  .card {
    background-color: #0b001a;
    border-radius: 16px;
    padding: 25px;
    width: 280px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(176, 176, 192, 0.2);
  }
  
  .card h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #ccc;
  }
  
  button {
    background-color: #B48CFC;
    color: #060012;
    border: none;
    padding: 10px 18px;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  button:hover {
    background-color: #c9aaff;
  }
  