* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #1f261d;
  color: #e2ddc8;
  font-family: Arial, Helvetica, sans-serif;
  border-top: 3px solid #6f8f3a;
}

img {
  user-select: none;
}

/* GESAMTLAYOUT */

.layout {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

/* SIDEBAR */

.sidebar {
  width: 260px;
  min-width: 260px;
  min-height: 100vh;
  background: linear-gradient(180deg, #2d241d 0%, #3a2d23 45%, #2a211b 100%);
  padding: 28px 18px;
  border-right: 1px solid #1a120e;

  position: relative;
  overflow: visible;

  box-shadow:
    inset -10px 0 22px rgba(0, 0, 0, 0.28),
    inset 4px 0 8px rgba(120, 90, 60, 0.12);
}

/* LOGO */

.logo,
.intro-logo {
  margin-bottom: 24px;
}

.game-logo {
  font-family: Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
}

.logo-owner {
  display: block;
  color: #efe4d0;
  font-size: 17px;
  letter-spacing: 5px;
  margin-bottom: 8px;
  text-shadow:
    2px 2px 0 #000,
    0 0 8px rgba(140, 100, 55, 0.35);
}

.game-logo strong {
  display: block;
  font-weight: 900;
  line-height: 0.9;
  text-shadow:
    3px 3px 0 #000,
    0 0 10px rgba(0, 0, 0, 0.9);
}

.logo strong {
  font-size: 35px;
}

.logo-life {
  color: #d8b84a;
}

.logo-in {
  color: #f0e8d8;
}

.logo-wild {
  display: inline-block;
  color: #9f2f21;
  font-size: 52px;
  letter-spacing: 1px;
}

/* GROSSES LOGO */

.big-game-logo {
  margin-bottom: 0;
}

.big-game-logo .logo-owner {
  font-size: 24px;
  letter-spacing: 7px;
  margin-bottom: 14px;
}

.big-game-logo strong {
  font-size: 64px;
}

.big-game-logo .logo-wild {
  font-size: 96px;
}

/* SPRACHE */

.language-box {
  background: transparent;
  margin-bottom: 12px;
  color: #eadfce;
}

.language-box label {
  color: #eadfce;
  margin-right: 5px;
}

.language-box select {
  background: #d8ccb9;
  color: #211914;
  border: 1px solid #7a6754;
  padding: 3px 5px;
}

.language-select-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 28px;
  height: 24px;

  font-size: 22px;
  line-height: 1;

  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.6));
}

/* MUSIK-STEUERUNG */

.music-box {
  margin-bottom: 20px;
  padding: 10px 12px;

  background: rgba(26, 18, 14, 0.35);
  border-left: 3px solid #a67933;
  border: 1px solid rgba(166, 121, 51, 0.45);
}

.music-title {
  color: #eadfce;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 14px;
}

.music-toggle {
  width: 100%;
  padding: 9px 10px;
  margin-bottom: 10px;

  background: linear-gradient(180deg, #5b4a39 0%, #47382c 100%);
  color: #e0c06b;

  border: 1px solid #33261d;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}

.music-toggle:hover {
  background: linear-gradient(180deg, #735f49 0%, #5f4d3b 100%);
  color: #ffffff;
}

.volume-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.volume-label {
  display: block;
  color: #eadfce;
  font-size: 13px;
}

.volume-value {
  color: #e0c06b;
  font-size: 13px;
  font-weight: bold;
  min-width: 40px;
  text-align: right;
}

.volume-slider {
  width: 100%;
  accent-color: #b88a24;
  cursor: pointer;
}

/* MOBILE BUTTON */

.mobile-menu-button {
  display: none;
}

/* MENÜ */

.sidebar-menus {
  display: block;
}

.menu-title {
  background: linear-gradient(180deg, #62503f 0%, #4e3f32 100%);
  color: #eadfce;
  padding: 11px 16px;
  font-size: 22px;
  margin: 20px 0 12px;
  text-transform: uppercase;
  border-left: 3px solid #a67933;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

.menu-title.external {
  margin-top: 28px;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 8px;
  border-left: 4px solid #a67933;
}

.menu a {
  display: flex;
  align-items: center;
  gap: 8px;

  background: linear-gradient(180deg, #5b4a39 0%, #47382c 100%);
  color: #e0c06b;
  text-decoration: none;

  padding: 13px 12px;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.2s;

  border: 1px solid #33261d;

  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.25;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -2px 4px rgba(0, 0, 0, 0.18);
}

.menu a:hover,
.menu a.active {
  background: linear-gradient(180deg, #735f49 0%, #5f4d3b 100%);
  color: #ffffff;
  padding-left: 18px;
}

.icon {
  width: 18px;
  min-width: 18px;
  display: inline-block;
  color: #eadfce;
}

/* HAUPTBEREICH */

.page {
  flex: 1;
  padding: 32px 34px 80px;
  max-width: none;
  min-width: 0;
}

.panel,
.content-section {
  background: #3c4736;
  border: 1px solid #242b20;
  margin-bottom: 22px;
  box-shadow: inset 0 0 0 1px rgba(216, 207, 170, 0.04);
}

.panel h1,
.panel h2,
.content-section h2 {
  margin: 0;
  color: #c9e28b;
  font-weight: 400;
  text-transform: uppercase;
  background: #46513c;
  padding: 13px 18px;
  letter-spacing: 1px;
}

/* SLIDESHOW */

.slider {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #151a13;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 48px;
  height: 48px;

  border: 2px solid rgba(226, 221, 200, 0.55);
  background: rgba(35, 43, 30, 0.78);
  color: #f0e7c8;

  font-size: 42px;
  cursor: pointer;
  border-radius: 6px;
  line-height: 38px;
}

.arrow:hover {
  background: rgba(111, 143, 58, 0.55);
  border-color: #c9e28b;
}

.arrow.left {
  left: 14px;
}

.arrow.right {
  right: 14px;
}

/* INTRO */

.intro {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  padding: 36px 48px;
  align-items: center;
}

.intro-text p,
.content-section p,
.normal-content p {
  font-size: 20px;
  line-height: 1.55;
  color: #e2ddc8;
}

/* CONTENT */

.content-section {
  position: relative;
  padding-bottom: 42px;
  text-align: center;
}

.content-section h2 {
  color: #f0e7c8;
  text-transform: none;
  background: transparent;
  padding: 22px 18px 12px 18px;
  font-size: 26px;
  line-height: 1.25;
}

.content-section p {
  max-width: 850px;
  margin: 24px auto 34px;
  padding: 0 20px;
}

.content-section img {
  width: min(900px, 92%);
  border: 1px solid #242b20;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
}

.normal-content {
  padding: 30px;
}

/* EIN-/AUSKLAPPEN */

.content-section.collapsible {
  position: relative;
}

.collapse-btn {
  position: absolute;
  left: -24px;
  top: 8px;

  width: 20px;
  height: 20px;

  background: #2d241d;
  color: #e0c06b;

  border: 2px solid #a67933;
  border-radius: 2px;

  font-size: 15px;
  font-weight: bold;
  line-height: 14px;
  padding: 0;

  cursor: pointer;
  z-index: 20;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.35);
}

.collapse-btn:hover {
  background: #735f49;
  color: #ffffff;
}

.collapsible-body {
  overflow: hidden;
  max-height: 1800px;
  opacity: 1;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
}

.content-section.collapsed .collapsible-body {
  max-height: 0;
  opacity: 0;
}

.content-section.collapsed {
  padding-bottom: 0;
  min-height: auto;
}

.content-section.collapsed h2 {
  padding: 8px 50px;
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  min-height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.content-section.collapsed .collapse-btn {
  top: 9px;
}

/* DOWNLOAD BUTTON */

.download-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 25px;

  background: #b88a24;
  color: #1f261d;

  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

.download-button:hover {
  background: #c9e28b;
}

/* FOOTER */

.site-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  background: #1b1f1f;
  color: #ffffff;

  padding: 18px 24px 34px;

  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid #1c6cb5;

  font-size: 14px;
}

.footer-copyright {
  color: #ffffff;
}

.footer-back-top {
  color: #ffd400;
  text-decoration: none;
  font-weight: bold;
}

.footer-back-top:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* SOURCE WARNUNG */

.source-warning {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 99999;
}

.source-warning.show {
  display: flex;
}

.source-warning-box {
  width: min(430px, 90%);
  background: linear-gradient(180deg, #3a2d23 0%, #241b15 100%);
  border: 2px solid #a67933;
  color: #eadfce;
  padding: 28px;
  text-align: center;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.75);
}

.source-warning-box h2 {
  margin: 0 0 14px;
  color: #e0c06b;
  text-transform: uppercase;
  font-size: 26px;
}

.source-warning-box p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.source-warning-box button {
  background: #b88a24;
  color: #1f261d;
  border: none;
  padding: 12px 22px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}

.source-warning-box button:hover {
  background: #c9e28b;
}

/* TABLET */

@media (max-width: 1200px) {
  .page {
    padding: 26px 24px 70px;
  }

  .intro {
    grid-template-columns: 320px 1fr;
    gap: 28px;
    padding: 30px;
  }

  .big-game-logo strong {
    font-size: 54px;
  }

  .big-game-logo .logo-wild {
    font-size: 78px;
  }

  .slider {
    height: 380px;
  }
}

/* HANDY / KLEINES TABLET */

@media (max-width: 900px) {
  .layout {
    display: block;
  }

  .sidebar {
    width: 100%;
    min-width: 100%;
    min-height: auto;
    padding: 20px;
  }

  .logo {
    text-align: center;
    margin-bottom: 18px;
  }

  .logo-owner {
    font-size: 15px;
    letter-spacing: 4px;
  }

  .logo strong {
    font-size: 32px;
  }

  .logo-wild {
    font-size: 46px;
  }

  .language-box {
    text-align: center;
    margin-bottom: 14px;
  }

  .language-select-row {
    justify-content: center;
  }

  .language-box select {
    padding: 6px 10px;
  }

  .music-box {
    max-width: 420px;
    margin: 0 auto 18px;
  }

  .mobile-menu-button {
    display: block;
    width: 100%;
    padding: 13px 15px;
    margin: 12px 0 18px;

    background: linear-gradient(180deg, #5b4a39 0%, #47382c 100%);
    color: #e0c06b;

    border: 1px solid #33261d;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-menu-button:hover {
    background: linear-gradient(180deg, #735f49 0%, #5f4d3b 100%);
    color: #ffffff;
  }

  .sidebar-menus {
    display: none;
  }

  .sidebar-menus.open {
    display: block;
  }

  .menu-title {
    font-size: 18px;
    padding: 10px 14px;
  }

  .menu a {
    padding: 12px;
    font-size: 14px;
  }

  .page {
    padding: 18px;
  }

  .panel h1,
  .panel h2 {
    font-size: 22px;
    padding: 12px 14px;
  }

  .slider {
    height: 260px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 34px;
    line-height: 30px;
  }

  .intro {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    text-align: center;
  }

  .big-game-logo strong {
    font-size: 44px;
  }

  .big-game-logo .logo-wild {
    font-size: 64px;
  }

  .intro-text p,
  .content-section p,
  .normal-content p {
    font-size: 17px;
  }

  .content-section h2 {
    font-size: 20px;
    padding: 18px 14px 10px;
  }

  .content-section.collapsed h2 {
    font-size: 16px;
    min-height: 36px;
    padding: 8px 42px;
  }

  .content-section img {
    width: 96%;
  }

  .collapse-btn {
    left: 8px;
    top: 8px;
  }

  .content-section.collapsed .collapse-btn {
    top: 8px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    padding: 18px 14px 28px;
  }

  .source-warning-box {
    width: 92%;
    padding: 22px;
  }

  .source-warning-box h2 {
    font-size: 22px;
  }

  .source-warning-box p {
    font-size: 16px;
  }
}

/* SEHR KLEINE HANDYS */

@media (max-width: 480px) {
  .sidebar {
    padding: 16px;
  }

  .logo strong {
    font-size: 28px;
  }

  .logo-wild {
    font-size: 40px;
  }

  .page {
    padding: 12px;
  }

  .slider {
    height: 210px;
  }

  .panel,
  .content-section {
    margin-bottom: 16px;
  }

  .intro {
    padding: 20px 14px;
  }

  .big-game-logo strong {
    font-size: 36px;
  }

  .big-game-logo .logo-wild {
    font-size: 54px;
  }

  .intro-text p,
  .content-section p,
  .normal-content p {
    font-size: 16px;
  }

  .content-section h2 {
    font-size: 18px;
  }

  .content-section.collapsed h2 {
    font-size: 15px;
  }

  .download-button {
    width: 100%;
    text-align: center;
  }
}