body {
  margin: 0;
  padding: 0;
  background-color: #826a60;
  font-family: "Inter", sans-serif;
  font-size: 19px;
  color: #513419;
}
a img {
  border: 0;
}
img {
  display: block;
}
h1, h2 {
  padding: 0;
  border: 0;
  margin: 0;
}
p {
  padding: 0;
  border: 0;
  margin: 0;
}
li, ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  color: #fff;
}
a:hover {
  text-decoration: underline;
  cursor: pointer;
}
/* GAME */
#app {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#game-container {
  width: 100%;
  height: 100vh;
}
/* HEADER */
.header_game {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  z-index: 10;
}
.header_sub {
  position: relative;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8px 2px 8px;
  box-sizing: border-box;
  background-color: #584841;
  color: #fff;
  z-index: 10;
}
.header_game_title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.header_sub_title {
  font-size: 18px;
  font-weight: 600;
}
.header_game_links {
  position: absolute;
  right: 60px; /* space before hamburger */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 25px;
}
.header_game_link {
  color: #ffffff;
  font-size: 18px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.header_game_link:hover {
  opacity: 1;
  text-decoration: underline;
}
/* DROPDOWN */
.hamburger {
  position: absolute;
  right: 8px;
  top: 52%;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
  font-size: 22px;
  line-height: 1;
  padding: 6px 10px;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 8px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.hamburger:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.hamburger:hover {
  /* Hover state */
  opacity: 1;
}
.dropdown_menu {
  position: absolute;
  top: 40px;
  right: 10px;
  display: none;
  flex-direction: column;
  width: 180px;
  margin: 10px 2px 0 0;
  padding: 20px;
  gap: 12px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .25);
  border-radius: 10px;
  z-index: 1000;
}
.dropdown_menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
  pointer-events: auto;
  background: transparent;
  display: block;
}
.dropdown_menu.open {
  display: flex;
}
.dropdown_item {
  display: block;
  line-height: 32px;
  padding: 0 4px;
  color: #ffffff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
}
.dropdown_item:hover, .dropdown_item:focus {
  text-decoration: underline;
}
/* ARTICLE */
.article_bloc {
  background-color: #fbf2e3;
  width: 100%;
  padding-bottom: 90px;
}
.article_bloc a {
  color: #1e61e9;
  text-decoration: none;
}
.article_bloc a:hover {
  transition: color 0.2s;
  text-decoration: underline;
  cursor: pointer;
}
.article_contenu {
  max-width: 800px;
  margin: 0 auto;
}
h1.article_headline {
  padding-top: 30px;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
h2.article_subheading {
  padding-top: 12px;
  font-size: 24px;
  font-weight: 700;
}
.article_texte {
  padding-top: 14px;
  text-align: justify;
  line-height: 32px;
}
.article_li {
  margin-top: 14px;
  position: relative;
  padding-left: 20px;
  text-align: justify;
  line-height: 30px;
  list-style-type: none;
}
.article_li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(13px);
  width: 6px;
  height: 6px;
  background-color: #38383b;
  border-radius: 50%;
}
.article_img {
  margin: 0 auto;
  margin-top: 15px;
  width: 100%;
  border-radius: 20px;
}
/* FOOTER */
#footer_bloc {
  width: 100%;
}
#footer_contenu {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
nav.footer_li {
  background-color: #826a60;
  text-align: center;
  padding-top: 65px;
  padding-bottom: 70px;
  border-top: 1px solid #000000;
}
nav.footer_li li {
  font-size: 24px;
  display: inline;
  margin: 0 20px;
  font-weight: 600;
}
nav.footer_li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 0;
  margin: 0;
}
nav.footer_li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
}
nav.footer_li a:hover::after {
  opacity: 1;
}
/*ADS*/
.ann_left_300 {
  z-index: 9;
  position: absolute;
  top: 5.5%;
  left: 13px;
  width: 300px;
  height: 600px;
  background-color: indianred
}
.ann_right_300 {
  z-index: 10;
  position: absolute;
  top: 5.5%;
  right: 13px;
  width: 300px;
  height: 600px;
  background-color: indianred
}
.ann_left_160 {
  display: none;
}
.ann_right_160 {
  display: none;
}
@media (max-width: 1600px) {
  .ann_left_300, .ann_right_300 {
    display: none;
  }
  .ann_left_160 {
    display: block;
    z-index: 9;
    position: absolute;
    top: 5.5%;
    left: 13px;
    width: 160px;
    height: 600px;
    background-color: chocolate
  }
  .ann_right_160 {
    display: block;
    z-index: 9;
    position: absolute;
    top: 5.5%;
    right: 13px;
    width: 160px;
    height: 600px;
    background-color: chocolate
  }
}
@media (max-width: 1350px) {
  .ann_left_160, .ann_right_160 {
    display: none;
  }
}
/*ESPONSIVE*/
@media (max-width: 1500px) {
  nav.footer_li li {
    padding-bottom: 16px;
    padding-top: 16px;
    display: block;
  }
}
@media (max-width: 963px) {
  h2.article_subheading {
    text-align: center;
  }
  .article_contenu {
    padding: 0 20px;
  }
}
@media (max-width: 400px) {
  .header_game_links {
    display: none;
  }
}