body {
  background-color: #1a1a1a; /* Dark Slate */
  color: #e0e0e0; /* Silver/Grey text */
  font-family: 'Cinzel', serif;
  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 #8b0000;
    background-color: #2a2a2a;
    color: #8b0000;
}
.footer_content h2 {
  color: #f9d71c;
}
.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: #f9d71c;
}

.right_container  {
  max-width: 350px;
  width: 100%;
  /* margin-left: 15px; */
}
.right_image {
  max-width: 350px;
  width: 100%;
  bottom: -1px;
  position: fixed;
  /* right: -100px; */
  filter: grayscale(0.5) contrast(1.2);
}
#quiz-container {
  background: #2a2a2a;
  border: 3px solid #8b0000; /* Dark Blood Red */
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  padding: 30px;
  width: 100%;
  text-align: center;
  margin: 10px;
}
h1 {
  color: #ffd700; /* Gold for the Kings */
  text-transform: uppercase;
  letter-spacing: 5px;
  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: #444;
  color: #ffd700;
  border: 1px solid #ffd700;
  padding: 12px 30px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  background: #8b0000;
  color: #fff;
  box-shadow: 0 0 15px #8b0000;
}
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: #f9d71c; 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;
  }
}
