/* body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-color: #fffbe7;
    margin: 0;
    padding: 20px;
  } */
  
  h4 {
    color: #2e8b57;
    font-size: 2em;
  }
  
  #question {
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #e65100;
  }
  
  #image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  #gameContainer {
    display: flex;
    flex-direction: column;
    justify-content: center; /* عموديًا */
    align-items: center;      /* أفقيًا */
    height: 30vh;            /* يأخذ كامل ارتفاع الشاشة */
    text-align: center;
  }
  
  #image-container img {
    width: 120px;
    height: 120px;
    cursor: pointer;
    border: 4px solid transparent;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  #image-container img:hover {
    transform: scale(1.05);
  }
  
  #feedback {
    font-size: 1.2em;
    margin-top: 20px;
    height: 30px;
    color: #ff5722;
  }
  
  #startButton {
    font-size: 24px;
    padding: 15px 40px;
    background: linear-gradient(to right, #ff9800, #ffc107);
    border: none;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }
  
  #startButton:hover {
    transform: scale(1.05);
  }
  
  #endScreen {
    font-size: 1.5em;
    color: #388e3c;
    margin-top: 30px;
  }
  
  .fadeInZoom {
    animation: fadeZoom 0.6s ease-out forwards;
  }
  
  @keyframes fadeZoom {
    0% { opacity: 0; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
  }
  