body {
  padding: 0;
  margin: 0
}

#crabs-container {
  position: fixed;
  width: 100%;
  height: 100%;
}

#crabs-canvas {
  width: 100%;
  height: 100%;
  background: #000000
}

#crabs-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none
}

#crabs-logo {
  width: 256px;
  height: 256px;
  background: url('crawlerLoop.webp') no-repeat center;
  background-size: 256px 256px;
}

.loader {
  width: 120px;
  height: 22px;
  border-radius: 20px;
  color: #00FFAB;
  border: 2px solid white;
  position: relative;
  margin: 10px auto;
  --progress: 0;
}

.loader::before {
  content: "";
  position: absolute;
  margin: 2px;
  inset: 0 calc(100% - (var(--progress) * 100%)) 0 0;
  border-radius: inherit;
  background: currentColor;
}

#fullscreen-button {
  position: absolute;
  bottom: 12px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  display: none;
}

#fullscreen-button img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1) opacity(0.5);
}

#mobile-notification {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  font-family: "Tektur", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  box-sizing: border-box;
  padding: 20px;
}

.mobile-notification-content {
  background-color: #000000;
  border-radius: 20px;
  padding: 24px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 255, 171, 0.2);
  border: 2px solid #00FFAB;
}

.mobile-notification-content h2 {
  color: #00FFAB;
  margin-top: 0;
  font-size: 1.6em;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-notification-content p {
  color: #fff;
  margin-bottom: 24px;
  font-size: 1.1em;
  line-height: 1.5;
  font-weight: 400;
}

.mobile-notification-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#continue-anyway {
  background-color: transparent;
  color: #fff;
  border: 2px solid white;
  padding: 12px 20px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Tektur", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#continue-anyway:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#mobile-notification {
  animation: fadeIn 0.2s ease-out;
}