/* === Base Styles === */
body {
  background-color: #e5e4e4; /* soft light gray */
  font-family: Tahoma, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

/* === Page Content Box === */
img.left { 
  float: left; 
  margin: 0.5rem 1rem 1rem 0; /* 8px 16px 16px 0 */
  border: 0.0625rem solid #999; /* 1px */
  clear: left; 
}

.page-content {
  max-width: 43.75rem; /* 700px */
  margin: 3.75rem auto; /* 60px */
  padding: 1.875rem 1.5625rem; /* 30px 25px */
  background-color: #fefefe;
  border-radius: 0.625rem; /* 10px */
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.05); /* 0 2px 10px */
  color: #333;
}

.page-content h1 {
  font-family: Georgia, serif;
  font-size: 1.8rem; /* 28.8px */
  text-align: center;
  margin-bottom: 1.25rem; /* 20px */
  color: #444;
}

.page-content p {
  font-size: 1rem; /* 16px */
  line-height: 1.6;
  margin-bottom: 0.9375rem; /* 15px */
}

/* === Hamburger Menu === */
.hamburger-menu {
  position: fixed;
  top: 1.25rem; /* 20px */
  left: 1.25rem;
  z-index: 1000;
}

.hamburger-icon {
  width: 1.875rem; /* 30px */
  height: 1.875rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0.3125rem; /* 5px */
  background-color: #bfc3bd;
  border-radius: 0.3125rem; /* 5px */
  box-shadow: 0 0.125rem 0.3125rem rgba(0,0,0,0.2); /* 0 2px 5px */
  transition: all 0.3s ease;
}

.hamburger-icon:hover {
  background-color: #a8aca6;
  transform: translateY(-0.0625rem); /* 1px */
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.3); /* 4px 8px */
}

.hamburger-icon span {
  width: 1.25rem; /* 20px */
  height: 0.1875rem; /* 3px */
  background-color: #333;
  border-radius: 0.125rem; /* 2px */
  transition: all 0.3s ease;
}

.hamburger-dropdown {
  display: none;
  position: absolute;
  top: 2.8125rem; /* 45px */
  left: 0;
  background-color: #bfc3bd;
  min-width: 13.75rem; /* 220px */
  border-radius: 0.625rem; /* 10px */
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3); /* 8px 16px */
  overflow: hidden;
}

#hamburgerMenu.visible {
  display: block;
}

.hamburger-dropdown a {
  display: block;
  color: #333;
  padding: 0.9375rem 1.25rem; /* 15px 20px */
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 0.875rem; /* 14px */
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-bottom: 0.0625rem solid #a8aca6; /* 1px */
}

.hamburger-dropdown a:hover {
  background-color: #a8aca6;
}

.hamburger-dropdown a:first-child {
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}

.hamburger-dropdown a:last-child {
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  border-bottom: none;
}

/* === Go-To Buttons === */
.goto-container {
  position: absolute;
  top: 6.25rem; /* 100px */
  right: 3.125rem; /* 50px */
  display: flex;
  flex-direction: column;
}

.goto-container > div {
  margin-top: 0.625rem; /* 10px */
}

.goto-button {
  background-color: #bfc3bd;
  color: #333;
  border: none;
  padding: 0.75rem 1.25rem; /* 12px 20px */
  font-size: 0.875rem; /* 14px */
  font-family: Georgia, serif;
  border-radius: 1.5625rem; /* 25px */
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.2); /* 4px 8px */
  font-weight: bold;
  display: inline-block;
}

.goto-button:hover {
  background-color: #a8aca6;
  transform: translateY(-0.125rem); /* 2px */
  box-shadow: 0 0.375rem 0.75rem rgba(0,0,0,0.3); /* 6px 12px */
}

/* === Navigation Buttons === */
.nav-button {
  background-color: #9bb0a4;
  color: #333;
  border: none;
  padding: 0.75rem 1.25rem; /* 12px 20px */
  font-size: 0.875rem; /* 14px */
  font-family: Georgia, serif;
  border-radius: 1.5625rem; /* 25px */
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.2);
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nav-button:hover {
  background-color: #a8aca6;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 0.75rem rgba(0,0,0,0.3);
}

.nav-button:active {
  transform: translateY(0);
}

/* === Game Button (Main CTA) === */
.game-button {
  background-color: #8d7ecf;
  color: white;
  font-size: 1rem; /* 16px */
  padding: 0.9375rem 1.5625rem; /* 15px 25px */
  grid-column: 1 / -1;
  margin-bottom: 1.25rem; /* 20px */
  display: inline-block;
}

.game-button:hover {
  background-color: #7a6bb8;
}

/* === WOR Home Page Specific === */
.page-content.wor-home {
  text-align: center;
  padding: 1.25rem; /* 20px */
  position: relative;
}

.page-content.wor-home h1 {
  margin-bottom: 2.5rem; /* 40px */
  font-size: 2rem; /* 32px */
  color: #c86b57;
}

/* === Dropdowns, Grids, Misc === */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #bfc3bd;
  min-width: 10rem; /* 160px */
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2); /* 8px 16px */
  border-radius: 0.625rem; /* 10px */
  z-index: 1;
  top: 100%;
  right: 0;
}

.dropdown-content a {
  color: #333;
  padding: 0.75rem 1rem; /* 12px 16px */
  text-decoration: none;
  display: block;
  font-family: Georgia, serif;
  font-size: 0.875rem; /* 14px */
}

.dropdown-content a:hover {
  background-color: #a8aca6;
}

#dropdownMenu.visible {
  display: block;
}

.dropdown-header {
  background-color: #9da199;
  color: #333;
  padding: 0.5rem 1rem; /* 8px 16px */
  font-weight: bold;
  font-size: 0.75rem; /* 12px */
  text-transform: uppercase;
  letter-spacing: 0.03125rem; /* 0.5px */
}

.goto-dropdown-content {
  top: 100%;
}

.button-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem; /* 20px */
  max-width: 37.5rem; /* 600px */
  margin: 1.875rem auto; /* 30px */
  padding: 0 1.25rem; /* 20px */
}
