@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

*:focus {
  outline: 2px solid #f8bc17;
  outline-offset: 4px;
}

body {
  background-color: #000;
  background-image: url(img/ricepaper-black.png);
}
.no-scroll {
  overflow: hidden;
  height: 100vh;
}
.btn {
  padding: 15px 25px;
  border-radius: 32px;
  border: none;
  box-shadow: 0 6px 6px hsl(0deg 0% 0% / 0.3);
  cursor: pointer;
  font-weight: bold;
  transition: all 1s;
}
.btn:hover {
  box-shadow: 0 10px 16px hsl(0deg 0% 0% / 0.3);
  transform: translateY(-1px);
}
.btn.primary {
  color: #fff;
  background-color: #121212;
}
/* Nav */
nav {
  position: fixed;
  width: 100%;
  background-color: #121212;
  background-image: url(img/ricepaper-black.png);
  padding: 10px;
  box-shadow: 0 6px 6px hsl(0deg 0% 0% / 0.3);
  z-index: 100;
}
nav > div {
  width: 100%;
  height: 40px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-items: center;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
nav > div > a {
  font-size: 1.4em;
  text-decoration: none;
  color: #f8bc17;
  font-weight: 700;
}
.menu_btn {
  display: none;
  cursor: pointer;
}
.bar1,
.bar2,
.bar3 {
  display: block;
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px auto;
  transition: 0.4s;
}
.menu_btn.active .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}
.menu_btn.active .bar2 {
  opacity: 0;
}
.menu_btn.active .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 2em;
}
.main-nav a,
.main-nav .menu-item button {
  color: #fff;
  text-decoration: none;
  transition: color 0.5s;
}
.main-nav .menu-item {
  position: relative;
}
.main-nav .menu-item button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}
.main-nav .menu-item .menu-items {
  display: none;
  white-space: nowrap;
}
.main-nav a:focus,
.main-nav .menu-item button:focus,
.main-nav a:hover,
.main-nav .menu-item button:hover {
  color: #f8bc17;
}
.main-nav .menu-item button::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
}

@media screen and (min-width: 1201px) {
  .main-nav .menu-item:focus-within .menu-items,
  .main-nav .menu-item:hover .menu-items {
    position: absolute;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(6, auto);
    gap: 1em;
    width: fit-content;
    background-color: #121212;
    background-image: url(img/ricepaper-black.png);
    padding: 10px 20px 20px 20px;
    box-shadow: 0 6px 6px hsl(0deg 0% 0% / 0.3);
    border-radius: 0 0 8px 8px;
  }
  .main-nav .menu-item:focus-within button::after,
  .main-nav .menu-item:hover button::after {
    content: "▲";
  }
}
.main-nav .menu-item .menu-items a {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  justify-items: center;
  gap: 5px;
}
.main-nav .menu-item .menu-items a span {
  font-size: 12px;
  color: #fff;
}

.main-nav a,
.main-nav button {
  padding: 12px 16px;
  font-size: 18px;
}

.nav-overlay,
.nav-overlay.open {
  display: none;
}

@media screen and (max-width: 1200px) {
  nav {
    z-index: 200;
  }
  .menu_btn {
    display: inline-block;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    line-height: 1;
    width: 40px;
    height: 40px;
  }
  .main-nav {
    position: fixed;
    justify-items: center;
    align-items: center;
    justify-content: flex-start;
    right: 0;
    top: 60px;
    display: flex;
    flex-direction: column;
    gap: 2em;
    background: #121212;
    background-image: url(img/ricepaper-black.png);
    width: 100%;
    max-width: 300px;
    height: 0;
    max-height: 500px;
    overflow: hidden;
    transition: height 0.5s;
    box-sizing: border-box;
    border-radius: 0 0 0 20px;
    box-shadow: 0 6px 6px hsl(0deg 0% 0% / 0.3);
  }
  .nav-overlay {
    display: none;
  }
  .nav-overlay.open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(000, 000, 000, 0.8);
    z-index: 100;
  }
  .main-nav.open {
    display: flex;
    height: calc(100% - 60px);
    overflow-y: auto;
    padding: 2em 0;
    z-index: 200;
  }
  .main-nav .menu-item {
    position: relative;
    width: 100%;
    text-align: center;
  }
  .main-nav .menu-item .menu-items {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    width: 95%;
    margin: auto;
    background: rgba(000, 000, 000, 0.4);
    transform: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-items: center;
    gap: 1em;
    padding: 20px 0 20px 0;
    margin-top: 10px;
    box-shadow: none;
    border-radius: 12px;
  }
  .main-nav .menu-item .menu-items.open {
    display: flex;
  }
  .main-nav > a,
  .main-nav .menu-item > button {
    opacity: 0;
    transition: opacity 0.2s ease-out;
  }
  .main-nav.open > a,
  .main-nav.open .menu-item > button {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.3s;
  }
  .main-nav .menu-item button[aria-expanded="true"]::after {
    content: "▲";
  }
}
/* Nav */

/* Header */
header {
  position: relative;
  top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100%;
  background-image: url("img/the-big-mmorpg-list-banner.jpg");
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  z-index: 0;
  padding: 115px 0;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(000, 000, 000, 0.5);
  z-index: 1;
}

header > * {
  position: relative;
  z-index: 2;
}

header div {
  width: 100%;
  max-width: 1400px;
  text-align: center;
  padding: 20px;
  color: #fff;
  text-shadow: 4px 4px 10px #000;
}
header div h1 {
  font-size: clamp(2em, 5vw, 3em);
  margin-bottom: 20px;
}

header div p {
  font-size: clamp(0.9em, 2.5vw, 1em);
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 20px;
  line-height: 1.5em;
}
header form {
  position: relative;
  text-align: center;
}
header form input[type="text"] {
  font-size: 16px;
  width: calc(100% - 200px);
  min-width: 200px;
  max-width: 300px;
  border-radius: 35px 0 0 35px;
  padding: 10px;
  box-shadow: 4px 4px 10px #000;
  outline: none;
  border: 0;
  margin-right: -5px;
}
header form button {
  font-weight: bold;
  position: relative;
  top: 0px;
  height: 40px;
  border-radius: 0 35px 35px 0;
  border: 0;
  outline: 0;
  background: #f8bc17;
  cursor: pointer;
  padding: 0 10px;
  transition: background 0.5s;
  box-shadow: 4px 4px 10px #000;
  font-size: 16px;
  color: #000;
}
header form button:hover {
  background-color: rgba(248, 188, 23, 0.75);
}

header form #suggestions {
  border: 0;
  width: 100%;
  max-width: 380px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(000, green, blue, alpha);
}

header form #suggestions .suggestion-item {
  position: relative;
  cursor: pointer;
  background: rgba(000, 000, 000, 0.8) url(img/ricepaper-black.png);
  padding: 10px;
  border-radius: 35px;
  flex: 0 0 calc(30% - 10px);
  box-sizing: border-box;
  box-shadow: 4px 4px 10px #000;
  text-align: center;
  color: #f8bc17;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  display: block;
  transition: background 0.5s;
  z-index: 1000;
  margin-bottom: 10px;
}

header form #suggestions .suggestion-item:nth-last-child {
  margin-bottom: 0;
}

header form #suggestions .suggestion-item:hover {
  font-weight: bold;
  background: rgba(000, 000, 000, 1) url(img/ricepaper-black.png);
}

header .btn {
  display: block;
  width: fit-content;
  margin: auto;
  background-color: #f8bc17;
  box-shadow: 4px 4px 10px #000;
  border-radius: 35px;
  padding: 10px 14px;
  font-weight: bold;
  font-size: 0.8em;
  cursor: pointer;
  transition: background-color 0.5s;
  border: 0;
  text-decoration: none;
  color: #000;
  text-shadow: none;
  margin-top: 10px;
}

header .btn:hover {
  background-color: rgba(248, 188, 23, 0.95);
}

@media (max-width: 550px) {
  header {
    padding: 0 0 115px 0;
  }

  header.game {
    padding: 0;
  }
}
/* Header */

/* Spacer */
.spacer {
  top: 60px;
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #121212;
  background-image: url(img/ricepaper-black.png);
  box-shadow: 4px 4px 10px #000;
}
/* Spacer */

/* Main Wrapper */
.main-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  height: fit-content;
  top: 80px;
  padding: 0 10px;
}

.main-wrapper h2 {
  color: #f8bc17;
  text-align: center;
  margin-bottom: 20px;
  text-wrap: pretty;
}

.common-section {
  background-color: #121212;
  background-image: url(img/ricepaper-black.png);
  border-radius: 35px;
  box-shadow: 4px 4px 10px #000;
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
}
/* Main Wrapper */

/* Recently Added */
.recently-added > div {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.recently-added-game {
  display: flex;
  flex-direction: column;
  justify-items: center;
  justify-content: center;
  align-items: center;
  gap: 1.3em;
  text-decoration: none;
}
.recently-added-game h3 {
  color: #fff;
  font-size: 1.2em;
  text-align: center;
}
.recently-added-game img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border-radius: 35px;
  box-shadow: 4px 4px 10px #000;
}
.recently-added-game span {
  display: block;
  width: 100%;
  max-width: 200px;
  background-color: #f8bc17;
  box-shadow: 4px 4px 10px #000;
  border-radius: 35px;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.5s;
  border: 0;
  color: #000;
  text-align: center;
  font-size: 0.8em;
}
.recently-added-game:hover span,
.recently-added-game:focus-within span {
  background-color: rgb(255, 219, 146);
}

@media screen and (max-width: 850px) {
  .recently-added > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}

@media screen and (max-width: 550px) {
  .recently-added > div {
    display: flex;
    flex-direction: column;
  }
}
/* Recently Added */

/* Categories */
.game-categories > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 20px;
  flex-flow: wrap;
  padding-bottom: 30px;
}
.game-categories > div > a {
  background: #121212 url(img/ricepaper-black.png);
  padding: 20px;
  border-radius: 35px;
  flex: 0 0 calc(30% - 10px); /* three columns with spacing */
  box-sizing: border-box;
  box-shadow: 4px 4px 10px #000;
  text-align: center;
  color: #f8bc17;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  display: block;
  transition: background-color 0.5s;
}
.game-categories > div > a > span {
  color: #fff;
  font-weight: normal;
}
.game-categories > div > a:hover {
  background-color: rgba(000, 000, 000, 0.1);
}

.game-categories .info {
  display: none;
  text-align: center;
  color: #fff;
  font-size: 0.8em;
  margin-bottom: 20px;
}

@media screen and (max-width: 875px) {
  .game-categories > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}

@media screen and (max-width: 550px) {
  .game-categories > h2 {
    margin-bottom: 10px;
  }

  .game-categories > div {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 500px;
    overflow: auto;
    align-content: flex-start; /* <– this makes columns start at the left */
  }

  .game-categories .info {
    display: block;
  }

  .game-categories > div > a {
    width: 280px;
  }
}

/* Categories */

/* News */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-item {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  height: 300px;
  display: flex;
  align-items: flex-end;
  border-radius: 35px;
  overflow: hidden;
  padding: 20px;
  background-color: gray;
  box-shadow: 4px 4px 10px #000;
  text-decoration: none;
}

.news-item:first-child {
  grid-column: span 2;
}

.news-wrapper {
  position: relative;
}

.news-content {
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 18px;
  text-align: left;
  transition: background 0.5s;
}

.news-item:hover .news-content {
  background: rgba(0, 0, 0, 0.9);
}

.news-content h2 {
  text-align: left;
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 0.9em;
}

.news-content p {
  font-size: 0.8em;
}

.news-grid.scroll-mode {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-right: 40px;
}

.news-grid.scroll-mode .news-item {
  flex: 0 0 80%;
  scroll-snap-align: start;
}

.scroll-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}

.scroll-btn.left {
  left: -20px;
}

.scroll-btn.right {
  right: -20px;
}

.scroll-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 850px) {
  .news-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-right: 40px;
  }

  .news-item {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  .news-grid::-webkit-scrollbar {
    display: none;
  }

  .scroll-btn {
    display: block;
  }
}

/* News */

/* Featured Games */
.featured-games > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 20px;
  flex-flow: wrap;
}
.featured-game-cat {
  background: #121212 url(img/ricepaper-black.png);
  padding: 20px;
  border-radius: 35px;
  flex: 0 0 calc(50% - 10px); /* two columns with space between */
  box-sizing: border-box;
  box-shadow: 4px 4px 10px #000;
}
.featured-game-cat h3 {
  color: #f8bc17;
  text-align: center;
  margin-bottom: 20px;
}
.featured-game > div {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.featured-game {
  display: flex;
  flex-direction: column;
  justify-items: center;
  justify-content: center;
  align-items: center;
  gap: 1.3em;
  text-decoration: none;
}
.featured-game h4 {
  color: #fff;
  font-size: 1.2em;
  text-align: center;
}
.featured-game img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border-radius: 35px;
  box-shadow: 4px 4px 10px #000;
}
.featured-game span,
.cat-btn {
  width: 100%;
  max-width: 300px;
  background-color: #f8bc17;
  box-shadow: 4px 4px 10px #000;
  border-radius: 35px;
  padding: 10px 14px;
  font-weight: bold;
  font-size: 0.8em;
  cursor: pointer;
  transition: background-color 0.5s;
  border: 0;
  color: #000;
  text-decoration: none;
  text-align: center;
}
.featured-game:hover span,
.featured-game:focus-within span,
.cat-btn:hover {
  background-color: rgb(255, 219, 146);
}

@media (max-width: 850px) {
  .featured-games > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 20px;
    flex-flow: wrap;
  }
  .featured-game-cat {
    background: #121212 url(img/ricepaper-black.png);
    padding: 20px;
    border-radius: 35px;
    flex: 0 0 calc(100%);
    box-sizing: border-box;
    box-shadow: 4px 4px 10px #000;
  }
}
/* Featured Games */

/* Game Page */
.main-wrapper.game {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.game-description {
  white-space: pre-wrap;
  color: #fff;
  text-align: left;
  margin: 20px 0;
  line-height: 1.5em;
}

.left-col {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.left-col .game-section-wrapper {
  background-color: #121212;
  background-image: url(img/ricepaper-black.png);
  box-shadow: 4px 4px 10px #000;
  padding: 20px;
  text-align: center;
  border-radius: 32px;
  margin-bottom: 20px;
}

.left-col .game-section-wrapper:last-of-type {
  margin-bottom: 0;
}

.left-col .game-section-wrapper p {
  color: #fff;
  text-align: left;
  margin: 20px 0;
  line-height: 1.5em;
}

.left-col .game-section-wrapper ul {
  margin-left: 30px;
}

.left-col .game-section-wrapper ul li {
  color: #fff;
  text-align: left;
}

.left-col .game-section-wrapper.faq > p {
  text-align: center;
}

.right-col {
  max-width: 250px;
  width: 100%;
  flex-shrink: 0;
}

.right-col h3 {
  color: #f8bc17;
  background-color: #121212;
  background-image: url(img/ricepaper-black.png);
  box-shadow: 4px 4px 10px #000;
  padding: 10px;
  text-align: center;
  border-radius: 32px;
}

.right-col ul {
  list-style: square outside;
}

.right-col ul li {
  margin: 15px 15px 15px 30px;
}

.right-col ul li::marker {
  color: gray;
}

.right-col ul li a {
  color: #f8bc17;
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}

.right-col ul li a:hover {
  color: rgb(255, 219, 146);
}

.right-col ul li span {
  color: #fff;
  font-size: 0.8rem;
}

@media (max-width: 800px) {
  .main-wrapper.game {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .right-col {
    margin-top: 20px;
    max-width: 100%;
    width: 100%;
    flex-shrink: 0;
  }
}
/* Game Page */

/* Slide Show */
.slideshow-container {
  position: relative;
  width: 100%;
  margin: auto;
}
.main-image,
.cat-image {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 4px 4px 10px #000;
}
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(248, 188, 23, 0.8);
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 32px;
  box-shadow: 4px 4px 10px #000;
  transition: background 0.5s ease-in-out;
  line-height: 40px;
}
.nav-button:hover {
  background: rgba(248, 188, 23, 1);
}
.nav-left {
  left: 10px;
}
.nav-right {
  right: 10px;
}
.thumbnails {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
  flex-wrap: wrap;
}
.thumbnail {
  width: 100%;
  max-width: 150px;
  height: auto;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  box-shadow: 4px 4px 10px #000;
}
.thumbnail.selected {
  border-color: #f8bc17;
}

@media (max-width: 380px) {
  .thumbnail {
    max-width: 120px;
  }
}
/* Slide Show */

/* FAQs */
.faq-item {
  margin-bottom: 20px;
}

.faq-item:last-of-type {
  margin-bottom: 0;
}

.faq-question {
  background: rgba(0, 0, 0, 0.5);
  color: #f8bc17;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 32px;
  transition: background 0.5s ease-in-out;
  width: 100%;
  text-align: left;
  border: none;
  text-wrap: pretty;
  line-height: 1.6rem;
}

.faq-question:hover,
.faq-question:focus {
  background: rgba(0, 0, 0, 0.8);
  outline: 2px solid #f8bc17;
}

.faq-answer {
  padding: 15px;
  color: #fff;
}
/* FAQs */

/* Categories */
.cat-btn {
  display: block;
  margin: auto;
  width: 100%;
  max-width: fit-content;
}

.left-col .game-section-wrapper p.center-game-desc {
  text-align: center;
}
/* Categories */

/* Footer */
footer {
  background-color: #121212;
  background-image: url(img/ricepaper-black.png);
  position: relative;
  top: 100px;
  padding: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 4px 4px 10px #000;
}

footer p {
  margin: 10px;
  line-height: 2rem;
}

footer p a {
  color: #f8bc17;
  transition: color 0.5s ease-in-out;
  text-decoration: none;
}

footer p a:hover {
  color: rgb(255, 219, 146);
}

footer .footer-links {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

footer .footer-links a::after {
  color: #fff;
  content: "|";
  margin-left: 10px;
}

footer .footer-links a:last-child::after {
  content: none;
}

footer .credits {
  text-wrap: pretty;
}

@media (max-width: 425px) {
  footer .footer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  footer .footer-links a::after {
    content: "";
    margin-left: 0;
  }
}
/* Footer */

/* Pageination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.pagination > * {
  width: 45px;
  height: 45px;
  flex: none;
  text-align: center;
  line-height: 30px;
  box-sizing: border-box;
}

.pagination a {
  padding: 8px 12px;
  margin: 0 4px;
  text-decoration: none;
  background: #f8bc17;
  color: #000;
  border-radius: 4px;
  transition: background 0.5s ease-in-out;
}
.pagination a:hover {
  background: rgb(255, 219, 146);
}
.pagination a.active {
  background-color: #121212;
  background-image: url(img/ricepaper-black.png);
  color: #fff;
}
/* Pageination */

/* Master List */
.pageTracker {
  display: block;
  color: #fff;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: center;
}

table {
  width: 100%;
  text-align: left;
  margin-bottom: 40px;
  border-collapse: collapse;
  border-spacing: 0;
  color: #fff;
}

table tr th,
table tr td {
  padding: 15px 10px;
  margin: 0;
  font-size: clamp(0.9em, 1.5vw, 1em);
}

table tbody tr:nth-child(even),
table thead tr {
  background-color: rgba(000, 000, 000, 0.8);
}

table tbody tr:hover,
table thead tr:hover {
  background-color: rgba(000, 000, 000, 1);
}

table tr th {
  color: #fff;
  font-size: clamp(0.9em, 1.5vw, 1em);
}

table a {
  color: #f8bc17;
  text-decoration: none;
}

@media (max-width: 950px) {
  table tr th,
  table tr td {
    text-align: left;
  }
  table .m-hide {
    display: none;
  }
}
/* Master List */

/* Submit a Game */
.submit-game {
  margin-bottom: 0;
}

.submit-game form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.submit-game form label {
  color: #f8bc17;
  font-weight: bold;
}

.submit-game form input,
.submit-game form select,
.submit-game form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(000, 000, 000, 0.5);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 20px;
  font-size: 16px;
}

.submit-game form input:focus,
.submit-game form select:focus,
.submit-game form textarea:focus {
  background-color: rgba(000, 000, 000, 0.8);
}

.submit-game form textarea {
  resize: none;
  height: 200px;
}

.submit-game form input::placeholder,
.submit-game form select::placeholder,
.submit-game form textarea::placeholder {
  color: #fff;
}

.submit-game form .btn {
  margin: auto;
  margin-top: 20px;
  width: 100%;
  max-width: 300px;
  background: #f8bc17;
  transition: background 0.5s ease-in-out;
  font-size: 16px;
  color: #000;
}
.submit-game form .btn:hover {
  background: rgb(255, 219, 146);
}
/* Submit a Game */

/* News Page */
.news-header {
  width: 100%;
  background-color: rgba(000, 000, 000, 0.5);
  padding: 10px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 6px 6px hsl(0deg 0% 0% / 0.3);
}
.news-header span {
  color: #f8bc17;
}
.news-header span strong {
  color: #fff;
}
.news-header span a {
  color: #f8bc17;
  text-decoration: none;
}
/* News Page */

/* Not Found */
.not-found {
  display: block;
  color: #fff;
  text-align: center;
}
/* Not Found */

/* Legal Pages */
.main-wrapper.legal {
  width: 100%;
  font-size: clamp(1em, 2.5vw, 1.2em);
  padding: 20px;
  background-color: #121212;
  background-image: url(img/ricepaper-black.png);
  box-shadow: 4px 4px 10px #000;
  color: #fff;
  border-radius: 35px;
}

.main-wrapper.legal h3,
.main-wrapper.legal h4 {
  color: #f8bc17;
}

.main-wrapper.legal ul {
  margin: 20px 30px;
}

.main-wrapper.legal ul li {
  margin: 10px 0;
  line-height: 1.5em;
}

.main-wrapper.legal p {
  margin: 20px 0;
  line-height: 1.5em;
}

.main-wrapper.legal p strong {
  color: #fff;
}

.main-wrapper.legal a {
  color: #f8bc17;
  text-decoration: none;
  font-weight: bold;
}
/* Legal Pages */

/* HP Field */
#your-last-name {
  opacity: 0;
  height: 0;
  pointer-events: none;
  position: absolute;
}
/* HP Field */

/* Form Error */
.form-error,
.form-success {
  width: 100%;
  font-size: clamp(1em, 2.5vw, 1.2em);
  padding: 20px;
  background-color: #3a1a1a;
  background-image: url(img/ricepaper-black.png);
  box-shadow: 4px 4px 10px #000;
  color: #fff;
  border-radius: 35px;
  margin-bottom: 20px;
}

.form-error {
  background-color: #3a1a1a;
}

.form-success {
  background-color: #225520;
}
/* Form Error */

/* Article Page */
.article-head-desc a {
  color: #f8bc17;
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}

.article-head-desc a:hover {
  color: rgb(255, 219, 146);
}

.article-text {
  margin-top: 20px;
}
/* Article Page */
