body {
  margin: 0;
  padding: 0;
  background-color: #664c38;
  font: 20px "Inter", sans-serif;
  color: #4e3627;
}
/* BACKGROUNDS */
body.bg-light #app, body.bg-dark #app, body.bg-green #app {
  background-position: top left;
}
body.bg-light #app {
  background-image: url("assets/hintergrund-helles-holz.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (orientation: portrait) {
  body.bg-light #app {
    background-repeat: repeat;
    background-size: auto;
  }
}
body.bg-dark #app {
  background-image: url("assets/hintergrund-dunkles-holz.jpg");
  background-repeat: repeat;
  background-size: auto;
}
body.bg-green #app {
  background-image: url("assets/hintergrund-grun.jpg");
  background-repeat: repeat;
  background-size: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  cursor: pointer;
}
a img {
  border: 0;
}
img {
  display: block;
}
h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
}
ul, li {
  list-style: none;
}
/* GAME */
#app {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#game-container {
  width: 100%;
  height: 100vh;
}
/* TOP BAR & SUB BAR COMMON STYLES */
.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 44px;
  box-sizing: border-box;
  padding: 0 16px;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.45);
  color: #ecebe7;
  z-index: 10;
  font-family: "Inter", sans-serif;
  user-select: none;
  -webkit-user-select: none;
}
.top-bar-pages {
  position: relative;
  background-color: #7f6653;
}
/* Left side */
.game-stats {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 600;
  color: #ecebe7;
}
.game-stats span {
  white-space: nowrap;
}
.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  font-weight: 600;
  color: #ecebe7;
  white-space: nowrap;
}
.title-sub-pages a {
  color: #f4f4f3;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.nav-links-container {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.nav-link {
  color: #f4f4f3;
  font-size: 20px;
  text-decoration: none;
  margin-right: 4px;
  margin-left: 4px;
}
.nav-link:hover {
  text-decoration: underline;
}
.nav-link-divider {
  color: #f4f4f3;
  padding: 0 8px;
  font-size: 17px;
}
.hamburger {
  display: none;
  margin-left: auto;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}
.dropdown-container .nav-link-divider {
  display: none;
}
.dropdown-container {
  position: absolute;
  top: calc(100% + 12px);
  right: 10px;
  background-color: #634e3d;
  width: 150px;
  display: none;
  flex-direction: column;
  z-index: 20;
  padding: 15px 10px 15px 15px;
  border-radius: 10px;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.dropdown-container .nav-link {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  text-decoration: none;
  display: block;
  margin: 0;
  user-select: none;
}
.dropdown-container .nav-link:hover {
  text-decoration: underline;
}
.dropdown-container.show {
  opacity: 1;
}
/* ARTICLE */
.article_container {
  background-color: #efe6df;
  width: 100%;
  padding-bottom: 90px;
  box-shadow:
    inset 0 1px 0 #000000, inset 0 2px 0 #606060;
}
.article_container a {
  color: #296bd8;
  text-decoration: none;
}
.article_container a:hover {
  transition: color 0.2s;
  text-decoration: underline;
  cursor: pointer;
}
.article_content {
  max-width: 880px;
  margin: 0 auto;
  padding-top: 26px;
}
/* INDEX ARTICLE HEADER*/
.article_logo {
  display: block;
  width: 201px;
  margin-left: auto;
  margin-right: auto;
}
h1.article_spiel_title {
  font-family: "Grenze Gotisch", serif;
  padding-top: 9px;
  line-height: 0.9;
  font-size: 61px;
  font-weight: 700;
  text-align: center;
}
h2.article_spiel_slogan {
  text-align: center;
  padding-top: 13px;
  padding-bottom: 6px;
  font-size: 22px;
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
h2.article_spiel_slogan::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 8px;
  background-color: #4e3627;
  border-radius: 2px;
}
/* QUICK GUIDE*/
.quick_guide {
  margin-top: 18px;
  padding: 24px 28px;
  background: #ecbb95;
  border-radius: 16px;
  box-sizing: border-box;
}
.quick_guide_title {
  font-size: 24px;
  font-weight: 700;
}
.quick_guide_item {
  margin-top: 14px;
  line-height: 30px;
}
/* REGULAR ARTICLE*/
h1.article_title {
  font-size: 36px;
  font-weight: 700;
  padding-top: 4px;
  text-align: center;
}
h2.article_sub_title {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 700;
}
.article_text {
  margin-top: 18px;
  text-align: justify;
  line-height: 32px;
}
.article_list_item {
  margin-top: 18px;
  position: relative;
  padding-left: 20px;
  text-align: justify;
  line-height: 32px;
  list-style-type: none;
}
.article_list_item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(13px);
  width: 8px;
  height: 8px;
  background-color: #4e3627;
  border-radius: 50%;
}
.article_image {
  margin: 0 auto;
  width: 100%;
  margin-top: 18px;
  border-radius: 16px;
}
/* CONTACT FORM */
.contact_container {
  display: flex;
  justify-content: space-between;
  max-width: 880px;
  background-color: #dbcec5;
  border-radius: 16px;
  box-sizing: border-box;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.contact_form {
  margin: 17px 17px 0px 17px;
  flex: 2;
}
.vorschau_title {
  margin-top: 44px;
  padding-bottom: 8px;
  border-bottom: 2px solid #958070;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
/* GUIDE GRID */
.vorschau_grid {
  display: grid;
  grid-template-columns: repeat(3, 276px);
  gap: 24px 26px;
  margin: 26px 0 0 0;
  justify-content: center;
}
.vorschau_card {
  width: 276px;
  text-align: left;
}
.vorschau_card img {
  width: 276px;
  max-width: 276px;
  height: auto;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.vorschau_card img:hover {
  transform: translateY(-2px);
  opacity: .92;
}
.vorschau_card_title {
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0 6px 0;
}
.vorschau_card_title a {
  color: inherit;
  text-decoration: none;
}
.vorschau_card_title a:hover {
  text-decoration: underline;
}
.vorschau_card_text {
  line-height: 31px;
  margin: 0 0 10px 0;
}
.vorschau_link {
  font-weight: 700;
  text-decoration: none;
}
.vorschau_link:hover {
  text-decoration: underline;
}
/* MAIN GAMES GRID */
.hauptspiele_grid {
  grid-template-columns: repeat(2, 420px);
  gap: 28px 40px;
}
.hauptspiele_grid .vorschau_card {
  width: 420px;
}
.hauptspiele_grid .vorschau_card img {
  width: 420px;
  max-width: 420px;
}
/* GAME PAGE */
.spielseite {
  background-color: #efe6df;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 90px;
  box-shadow: inset 0 1px 0 #000000, inset 0 2px 0 #606060;
}
.spielseite_container {
  width: 100%;
  max-width: 960px;
  padding: 20px;
  margin: 0 auto;
  background-color: #dbcec5;
  border-radius: 10px;
  box-sizing: border-box;
}
.spielseite_fullscreen_button_wrap {
  width: 100%;
  margin-top: 14px;
}
.spielseite_fullscreen_button {
  display: block;
  width: 100%;
  background-color: #a98f7c;
  color: #fff;
  font-size: 26px;
  padding: 14px 20px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  border: 0;
  appearance: none;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.spielseite_fullscreen_button:hover {
  background-color: #7f634f;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.spielseite_fullscreen_button:visited, .spielseite_fullscreen_button:focus, .spielseite_fullscreen_button:active {
  color: #fff;
  text-decoration: none;
}
.spielseite_fullscreen_button:active {
  transform: translateY(0);
}
.spielseite_mobile_startbild {
  display: none;
}
.spielseite_880_600, .spielseite_800_600, .spielseite_880_640 {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.spielseite_880_600 {
  padding-top: 68.18%;
}
.spielseite_800_600 {
  padding-top: 75%;
}
.spielseite_880_640 {
  padding-top: 72.73%;
}
.spielseite_iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.spielseite_info_container {
  width: 100%;
  max-width: 960px;
  padding: 35px 60px 50px 60px;
  margin: 25px auto 0 auto;
  background-color: #dbcec5;
  border-radius: 10px;
  box-sizing: border-box;
}
h1.spielseite_info_title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
h1.spielseite_info_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  background-color: #4e3627;
  border-radius: 2px;
}
.spielseite_info_text {
  padding-top: 16px;
  line-height: 32px;
}
/* FOOTER */
.footer {
  width: 100%;
  background-color: #896d58;
  padding: 55px 40px 34px 40px;
  color: #ffffff;
  box-sizing: border-box;
}
.footer_container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 15px;
  box-sizing: border-box;
  gap: 16px;
}
/* LOGO */
.footer_brand {
  flex: 1;
  padding-right: 60px;
  position: relative;
}
.footer_brand::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 22px;
  right: 40px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}
.footer_brand_link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  line-height: 1;
}
.footer_brand_top {
  font-family: "Grenze Gotisch", serif;
  font-size: 77px;
  font-weight: 700;
  line-height: 0.78;
  color: #ffffff;
  text-align: left;
  margin: -12px 0 0 0;
}
.footer_brand_bottom {
  font-family: "Grenze Gotisch", serif;
  font-size: 41px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-align: left;
  margin: 4px 0 0 0;
}
.footer_brand_slogan {
  max-width: 220px;
  margin-top: 7px;
  font-size: 17px;
  line-height: 28px;
  color: #ffffff;
}
/* LINK COLUMNS */
.footer_column {
  flex: 1;
  min-width: 205px;
  text-align: left;
}
.footer_column:last-child {
  flex: none;
  min-width: auto;
  margin-left: -15px;
}
.footer_column_title {
  margin-bottom: 22px;
  font-weight: 700;
}
.footer_column_links li {
  line-height: 24px;
  margin-bottom: 14px;
}
/* LINKS */
.footer a {
  color: #ffffff;
  text-decoration: none;
}
.footer a:hover {
  color: #ff9945;
  transition: color 0.2s;
}
/* SUBFOOTER */
.subfooter {
  background-color: #6c5645;
  padding: 26px;
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}
/* Desktop/laptop only: smoothly scale the top bar and text on smaller screen widths. */
@media (hover: hover) {
  .top-bar {
    height: clamp(22px, calc(1.964vw + 6.29px), 44px);
  }
  .brand, .title-sub-pages a {
    font-size: clamp(15px, calc(1.339vw + 4.29px), 30px);
  }
  .game-stats {
    font-size: clamp(15px, calc(0.893vw + 2.86px), 20px);
  }
  .nav-link {
    font-size: clamp(15px, calc(0.893vw + 2.86px), 20px);
  }
  .hamburger {
    font-size: clamp(15px, calc(1.339vw + 4.29px), 30px);
  }
}
@media (max-width: 1281px) {
  .nav-links-container {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
@media (max-width: 1080px) {
  .footer {
    padding: 45px 20px 34px 20px;
  }
  .footer_container {
    flex-direction: column;
    align-items: center;
    gap: 34px;
    text-align: center;
  }
  .footer_brand {
    width: auto;
    flex: none;
    padding-right: 0;
    text-align: center;
    position: static;
  }
  .footer_brand::after {
    display: none;
  }
  .footer_brand_link {
    display: inline-block;
    text-align: center;
  }
  .footer_brand_top, .footer_brand_bottom {
    text-align: center;
  }
  .footer_brand_slogan {
    margin: 7px auto 0 auto;
    text-align: center;
  }
  .footer_column {
    width: auto;
    min-width: 0;
    flex: none;
    text-align: center;
  }
  .footer_column:last-child {
    margin-left: 0;
  }
  .footer_column_title {
    margin-bottom: 18px;
  }
  .footer_column_links li {
    line-height: 30px;
    margin-bottom: 10px;
  }
}
/* Touch devices, like tablets and phones, always use hamburger menu */
@media (pointer: coarse) {
  .nav-links-container {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
@media (max-width: 963px) {
  .spielseite_container, .spielseite_info_container {
    border-radius: 0;
  }
}
@media (max-width: 920px) {
  .article_content {
    padding: 26px 20px 0 20px;
  }
  .hauptspiele_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 26px;
  }
  .hauptspiele_grid .vorschau_card {
    width: 100%;
  }
  .hauptspiele_grid .vorschau_card img {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 681px) and (max-width: 900px) {
  .vorschau_grid {
    grid-template-columns: repeat(2, 276px);
    justify-content: center;
    gap: 21px 21px;
  }
  .vorschau_card {
    text-align: left;
  }
}
@media (max-width: 680px) {
  .vorschau_grid {
    grid-template-columns: 276px;
    justify-items: center;
  }
  .vorschau_card {
    text-align: center;
  }
  .hauptspiele_grid {
    grid-template-columns: 276px;
  }
  .hauptspiele_grid .vorschau_card {
    width: 276px;
  }
  .hauptspiele_grid .vorschau_card img {
    width: 276px;
    max-width: 276px;
  }
}
@media (max-width: 600px) {
  .brand, .title-sub-pages a {
    display: none;
  }
  .spielseite_fullscreen_button {
    display: none;
  }
}
@media (max-width: 568px) {
  .spielseite_880_600, .spielseite_800_600, .spielseite_880_640, .spielseite_iframe {
    display: none;
  }
  .spielseite_mobile_startbild {
    display: block;
    max-width: 100%;
    width: 100%;
    padding-top: 1px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .spielseite_mobile_startbild img {
    width: 100%;
    height: auto;
  }
}
@media (pointer: coarse) and (orientation: portrait) {
  .top-bar {
    height: 36px;
  }
  .hamburger {
    font-size: 26px;
  }
}