body {
    background-color: #0b0b0b;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    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: 16px;
}
.game:hover {
    border: 3px solid #e71d36;
    background-color: #282828;
    color: #e71d36;
}
.footer_list {
    /* max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    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: #e71d36;
}

.right_container  {
  max-width: 350px;
  width: 100%;
  margin-left: 15px;
}
/* .right_image {
  max-width: 350px;
  width: 100%;
  bottom: 10px;
  position: absolute;
} */
.right_image {
    max-width: 500px;
    width: 100%;
    bottom: 10px;
    position: fixed;
    right: -150px;
}
#quiz-container {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #e71d36;
    box-shadow: 0 0 20px #e71d36;
    /* max-width: 500px; */
    width: 100%;
    text-align: center;
    margin: 10px;
    /* margin-left: 50px; */
}
h1 { color: #e71d36; text-transform: uppercase; letter-spacing: 5px; margin-bottom: 10px; }

.settings-bar { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #333; }
select {
    background: #000;
    color: #ffae00;
    border: 1px solid #ffae00;
    padding: 5px 10px;
    font-family: 'Courier New', monospace;
    cursor: pointer;
}

#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: #e71d36; }

button {
    background: #e71d36;
    color: white;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}
button:hover { background: #ff4d6d; }
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;
  }
  .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;
  }
}
