body {
    background-color: #0a0e14; /* Deep Midnight Blue */
    color: #f4e1d2; /* Parchment/Off-white */
    font-family: 'Garamond', 'Georgia', serif; /* More 'magical' font */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: row;
}
.left_container {
  max-width: 350px;
  width: 100%;
  margin: 15px;
  height: 100%;
}
.logo_div_header {
  display: none;
}
.logo {
  max-width: 350px;
  width: 100%;
  margin-top: 25px;
}
.menu-toggle {
  display: none;
}
.game-list {
    display: grid;
    gap: 20px;
    padding: 15px;
}
.game_list_a {
    text-decoration: none;
}
.game {
    /* background-color: #fff; */
    /* padding: 15px; */
    border: 3px solid #cfcfcf;
    border-radius: 10px;
    text-align: center;
    color: #cfcfcf;
    font-size: 12px;
    margin-top: 7px;
}
.game:hover {
    border: 3px solid #d4af37;
    background-color: #1c2530;
    color: #d4af37;
}
.footer_list {
    gap: 20px;
    bottom: 0px;
    position: absolute;
    max-width: 350px;
}
.footer_social {
    text-align: center;
}
.social-icon-link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    /* width: 50px; */
}
.social_icons {
    font-size: 40px;
    color: #fff;
}
.social_icons:hover {
    color: #d4af37;
}

.right_container  {
  max-width: 350px;
  width: 100%;
  margin-left: 15px;
}
.right_image {
    max-width: 500px;
    width: 100%;
    bottom: 10px;
    position: fixed;
    right: -100px;
    filter: sepia(1) hue-rotate(-30deg) saturate(1.5); /* Gives images a golden glow */
}
#quiz-container {
    background: #1c2530;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #d4af37; /* Hogwarts Gold */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    width: 100%;
    text-align: center;
    margin: 10px;
}
h1 {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 2px 2px #000;
}
.settings-bar { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #333; }
select {
    background: #000;
    color: #d4af37;
    border: 1px solid #d4af37;
}

#question { font-size: 1.2rem; margin-bottom: 20px; min-height: 80px; display: flex; align-items: center; justify-content: center; }

input[type="text"] {
    width: 80%;
    padding: 12px;
    background: #000;
    border: 1px solid #444;
    color: white;
    margin-bottom: 20px;
    outline: none;
    font-size: 1rem;
}
input[type="text"]:focus { border-color: #d4af37; }

button {
    background: #740001; /* Gryffindor Red */
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

button:hover {
    background: #ae0001;
    box-shadow: 0 0 10px #d4af37;
}
button:disabled { background: #555; cursor: not-allowed; }

#feedback { margin-top: 20px; font-weight: bold; height: 24px; }
#score-board { margin-top: 20px; font-size: 0.9rem; color: #888; }

/* Social Share Styling */
.share-container { margin-top: 30px; border-top: 1px solid #333; padding-top: 20px; }
.share-links a { color: #fff; font-size: 1.5rem; margin: 0 10px; text-decoration: none; transition: 0.3s; }
.share-links a:hover { color: #e71d36; transform: scale(1.2); }

.hidden { display: none; }



@media (max-width: 1220px) {
  .left_container,
  .right_container,
  .right_image,
  .footer_list {
    max-width: 250px;
  }
  .social_icons {
      font-size: 20px;
  }
  .right_image {
    right: 0;
  }
}
@media (max-width: 920px) {
  body {
    flex-direction: column;
    height: 100%;
    margin-top: 90px;
  }
  header {
    position: static;
    /* height: 100%; */
    width: 100%;
  }
  #quiz-container {
    max-width: 100%;
    width: auto;
  }
  .menu-toggle {
      display: block;
      position: absolute;
      top: 10px;
      left: 10px;
  }
  .logo_div {
    display: none;
  }
  .logo_div_header {
    display: block;
    right: 10px;
    top: 10px;
    position: absolute;
  }
  .logo {
    height: 75px;
    margin: 0 auto;
  }
  .left_container {
      position: fixed;
      /* top: 0; */
      left: -350px; /* Hide off-screen */
      width: 280px;
      height: 100%;
      background: #282828;
      z-index: 1000;
      transition: 0.3s;
      box-shadow: 2px 0 10px rgba(0,0,0,0.5);
      margin: 0 auto;
      /* padding-top: 60px;  */
  }

  /* When the menu has the 'open' class */
  .left_container.open {
      left: 0;
      top: 0;
  }
  .right_container {
    position: relative;
    max-width: 750px;
  }
  .right_image {
    max-width: 100%;
    bottom: auto;
    position: absolute;
    width: auto;
  }
  .footer_list {
    width: 100%;
  }
  .footer_content h2 {
    font-size: 24px;
  }
  body.menu-open {
      overflow: hidden;
  }
}
@media (max-width: 600px) {
  body {
    margin-top: 75px;
  }
  #quiz-container {
    margin-top: 50px;
  }
}
@media (max-width: 490px) {
  .logo {
    height: 50px;
  }
  .logo_div_header {
    max-width: 250px;
  }
}
