body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #eee;
    margin: 0;
    padding: 0 20px 40px;
  }
  
  header {
    text-align: center;
    padding: 20px 0;
    background: #d12f2f;
    color: #fff;
    border-bottom: 6px solid #222;
    box-shadow: 0 4px 10px rgba(209, 47, 47, 0.7);
  }
  
  h1 {
    margin: 0;
    font-size: 2.8em;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 2px 2px #222;
  }
  
  #scoreboard {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 1px 1px #222;
  }
  
  #quiz-container {
    max-width: 600px;
    margin: 20px auto;
    background: #222;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px #d12f2f;
    color: #f4f4f4;
  }
  
  #question-counter {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffa500;
  }
  
  #question-text {
    font-size: 1.5em;
    margin-bottom: 25px;
    text-shadow: 1px 1px 1px #000;
  }
  
  #answer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  button.answer-btn {
    background: #d12f2f;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px #a62121;
    transition: background-color 0.3s ease;
    flex: 1 1 calc(50% - 20px);
  }
  
  button.answer-btn:hover {
    background: #ffa500;
    color: #222;
    box-shadow: 0 4px 10px #ff9d00;
  }
  
  #testimonials-section {
    max-width: 600px;
    margin: 40px auto;
    background: #d12f2f;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px #ffa500;
    color: #fff;
  }
  
  .testimonial-carousel div {
    padding: 10px;
    font-style: italic;
    text-align: center;
    font-size: 1.1em;
  }
  
  .testimonial-carousel p:last-child {
    margin-top: 8px;
    font-weight: 700;
    font-style: normal;
  }
  
  #gallery {
    max-width: 700px;
    margin: 50px auto;
    text-align: center;
  }
  
  #gallery h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #d12f2f;
    text-shadow: 1px 1px #222;
  }
  
  #gallery a {
    display: inline-block;
    margin: 10px;
    border: 3px solid #d12f2f;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 12px #d12f2f;
    transition: transform 0.3s ease;
  }
  
  #gallery a:hover {
    transform: scale(1.05);
  }
  
  #gallery img {
    width: 160px;
    height: 120px;
    object-fit: cover;
    display: block;
  }
  
  .ui-dialog-titlebar {
    background: #d12f2f;
    color: #fff;
    border: none;
    font-weight: 700;
    text-shadow: 1px 1px #000;
  }
  
  .highlight-box {
    border: 3px solid #d12f2f;
    padding: 15px;
    border-radius: 10px;
    background-color: #3b0000;
    margin-bottom: 40px;
  }
  