body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: gold;
    cursor: default;
    scroll-behavior: smooth; /* Smooth scroll */
  }
  
  em {
    cursor: no-drop;
    color: crimson;
    font-style: italic;
  }
  
  a {
    text-decoration: none;
    color: gold;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .navbar a {
    margin-left: 20px;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .navbar a:hover {
    color: crimson;
  }
  
  .hero-section {
    position: relative;
    height: 60vh;
    background: url('images/afraid.webp') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 50px 20px;
    color: gold;
    transition: background 0.5s ease; /* Smooth background transition */
  }
  
  .hero-section .hero-text {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .hero-section .hero-text-small {
    font-size: 24px;
  }
  
  .verses {
    padding: 20px;
    text-align: center;
  }
  
  .notification {
    border: 2px solid gold;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: black;
    color: gold;
    border-radius: 10px;
  }
  
  .explanation {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    color: gold;
  }
  
  .explain-image img {
    max-width: 100%;
    border: 2px solid gold;
    border-radius: 10px;
  }
  
  .real-explanation {
    margin: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: gold;
  }
  
  .check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    font-size: 24px;
    color: gold;
  }
  
  .check input[type="checkbox"] {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: gold;
  }
  
  .feedback button {
    background: gold;
    color: black;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .feedback button:hover {
    background: crimson;
    color: white;
  }
  
  @media (max-width: 768px) {
    .hero-text {
        font-size: 28px;
    }
    .hero-text-small {
        font-size: 20px;
    }
    .navbar {
        flex-direction: column;
    }
    .navbar a {
        margin: 10px 0;
    }
    .notification h4 {
        font-size: 14px;
    }
  }
  