@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap");

.gorillas-section {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Inconsolata", monospace;
  font-size: 14px;
  color: white;
  user-select: none;
  -webkit-user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  background: #000;
}

.pinned-section__inner {
  height: 100%;
  width: 100%;
}

button {
  cursor: pointer;
  border: none;
  color: white;
  background: transparent;
  font-family: "Inconsolata", monospace;
  padding: 10px;
  font-size: 16px;
}

button:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

#bomb-grab-area {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  cursor: grab;
}
.game-text-wrapper{
    position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
}
#game-banner {
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  pointer-events: none;
  line-height: 1.3;
  transition: opacity 0.5s;
}

#game-mode {
  font-size: 20px;
  color: #ccc;
  text-align: center;
  pointer-events: none;
  transition: opacity 0.5s;
}

#instructions {
  position: absolute;
  text-align: left;
  white-space: nowrap;
  pointer-events: none;
  transition: visibility 0s, opacity 0.5s linear;
}

#instructions h1 {
  font-size: 16px;
  color: #ccc;
  letter-spacing: normal;
}

#congratulations {
  position: absolute;
  transition: visibility 0s, opacity 0.5s linear;
  background-color: rgb(255 255 255 / 95%);
  color: white;
  padding: 50px 70px;
  opacity: 0;
  visibility: hidden;
  max-width: 400px;
  backdrop-filter: blur(5px);
}

#congratulations h1{
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: normal;
    color: #000000;
}

#congratulations p a {
  color: inherit;
}

#congratulations button {
  border: 1px solid rgb(0 0 0);
    color: #000000;
    font-size: 16px;
}

#settings {
    position: absolute;
    top: calc(30px + 16.385px - 10px);
    display: flex;
    align-items: center;
    gap: 10px;
    right: 15em;
}

#settings {
  opacity: 0;
  transition: opacity 3s;
}

@media (max-width: 450px) {
  #settings {
    opacity: 0;
  }
  #instructions {
    visibility: hidden;
  }
}

/* Basic CSS for the dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn:after {
  content: "▼";
  margin-left: 7px;
  font-size: 0.8em;
  vertical-align: text-top;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
}

.dropdown-content a {
  color: #ccc;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  font-size: 16px;
}

.dropdown-content a:hover {
  background-color: #444;
  color: #fff;
}

/* Show dropdown content when hovering over the button */
.dropdown:hover .dropdown-content {
  display: block;
}

#windmill {
  position: absolute;
  right: 0;
  fill: rgba(200, 200, 200, 0.3);
  transform-origin: bottom;
}

#windmill-head {
  animation-name: rotate;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#wind-info {
  position: absolute;
  width: 100px;
  text-align: center;
  margin-bottom: 30px;
}

/** Youtube logo by https://codepen.io/alvaromontoro */
#youtube {
  z-index: 2;
  display: block;
  width: 30px;
  height: 21px;
  background: red;
  position: relative;
  border-radius: 50% / 11%;
  transition: transform 0.5s;
  color: black;
}

#youtube:hover,
#youtube:focus {
  transform: scale(1.2);
}

#youtube::before {
  content: "";
  display: block;
  position: absolute;
  top: 7.5%;
  left: -6%;
  width: 112%;
  height: 85%;
  background: red;
  border-radius: 9% / 50%;
}

#youtube::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 11px;
  width: 15px;
  height: 10px;
  border: 5px solid transparent;
  box-sizing: border-box;
  border-left: 10px solid white;
}

#youtube span {
  font-size: 0;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

#youtube-card {
  display: none;
}

#youtube:hover + #youtube-card {
  color: black;
  display: block;
  position: absolute;
  top: -20px;
  right: -20px;
  padding: 25px 60px 25px 25px;
  width: 200px;
  background-color: white;
}

#fullscreen {
  all: unset;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.dropdown{
    margin: auto;
    display: flex;
    justify-content: center;
}

body.game-active {
  overflow: hidden !important;
}

.game-active header,
.game-active footer,
.game-active nav,
.game-active .mxd-menu__contain,
.game-active .mxd-cursor,
.game-active .preloader {
  display: none !important;
}

canvas#game {
  display: block;
}

.gorillas-section:-webkit-full-screen {
  padding: 0 !important;
  margin: 0 !important;
  height: 100vh !important;
  height: 100dvh !important;
  width: 100vw !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  background: #000 !important;
}

.gorillas-section:fullscreen {
  padding: 0 !important;
  margin: 0 !important;
  height: 100vh !important;
  height: 100dvh !important;
  width: 100vw !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  background: #000 !important;
}
.gorillas-wrapper {
    height: 300vh; /* extra scroll duration */
}
#gorillas-section {
    position: sticky;
    top: 0;
    height: 100vh;
}