html {
  -ms-touch-action: none;
}
body, canvas, div {
  display: block;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  cursor: default;
  color: #A5F002;
  background-color: #A5F002;
  text-align: center;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  display: flex;
  flex-direction: column;
}
canvas {
  background-color: #A5F002;
}
#GameDiv, #Cocos3dGameContainer, #GameCanvas {
  width: 100%;
  height: 100%;
}
#iframe-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#external-content-frame {
  width: 90%;
  max-width: 800px;
  height: 80%;
  max-height: 600px;
  border: none;
  border-radius: 12px;
  background: transparent;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
#cookie-banner {
  position: fixed;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10001;
  font-size: 12px;
  line-height: 1.2;
  width: max-content;
  max-width: 90vw;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: left;
}
#cookie-banner a {
  color: #00aaff;
  text-decoration: none;
}
#cookie-btn {
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 6px;
  padding: 2px 16px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}