<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  height: 100%;
  overflow: hidden;
  width: 100%;
  position: fixed;
  padding: 0;
  margin: 0;
  touch-action:none;
}

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

@media (min-width: 768px) {
  #unity-container {
    position: absolute;
    width: 60vh;
    height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/assets/unity/bg.jpg") no-repeat center center fixed;
    background-size: cover;
    filter: blur(8px);
    z-index: -1;
  }
}

#unity-canvas {
  width: 100%;
  height: 100%;
  background: #231F20
}

#loading-screen {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url("/assets/unity/bg.jpg") center no-repeat;
  background-size: cover;
  z-index: 1;
  display: block;
}

.ios-clipboard-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: flex-end;
}

.popup {
  width: 100%;
  height: 25%;
  background-color: #351268ff;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.popup button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  background: #271743;
  border: #000 solid 1px;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

@keyframes fade {
  0%, 100% {
    opacity: 1.0;
  }
  50% {
    opacity: 0.6;
  }
}
.popup button:active {
  animation: fade 0.2s;
}

.unity-loading-container {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  height: 25px;
}

.unity-loading-background {
  background: #250D47;
  border: 2px solid #250D47;
  border-radius: 4px;
  box-shadow: inset 0 1px rgba(255,255,255,0.3);
  width: 100%;
  height: 100%;
}

.unity-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #BC16CA, #C262CD);
  border-radius: 3px;
  box-shadow: inset 0 1px rgba(255,255,255,0.8);
}

.bounce-loader {
  position: absolute;
  bottom: -0.5%;
  transform: scale(0.4);
}

.unity-loading-image {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%) scale(0.5);
}

/* Modal container */
.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* Hide the modal by default */
.hidden {
  display: none !important;
}

/* Modal content */
.modal-content {
  background-color: rgba(0, 0, 0, 0.0);
  padding: 130px 24px;
  border-radius: 8px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  z-index: 9999999;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

/* Close button */
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Connect button */
#connect-line-button {
  background-color: #06C755;
  width: 280px;
  height: 48px;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
}

#connect-line-button:hover {
  background-color: #04E060;
}

#connect-dapp-button {
  background-color: #06C755;
  width: 280px;
  height: 48px;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  margin: 0 auto;
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
}

#connect-dapp-button:hover {
  background-color: #04E060;
}

.minidapp-logo {
  margin-right: 10px;
}

.divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.divider:not(:empty)::before {
  margin-right: 0.5em;
}

.divider:not(:empty)::after {
  margin-left: 0.5em;
}

.divider span {
  font-weight: 500;
  color: #888;
}
</pre></body></html>