
        * {
            transition: 0.3s all cubic-bezier(.86,0,.07,1);
        }

        body {
            margin: 0;
            background-color: rgb(0, 0, 0);
        }
@font-face {
    font-family: 'steelfish';
    src: url('assets/font/steelfish.ttf');
}

@font-face {
    font-family: 'canvasans';
    src: url('assets/font/canvasans.otf');
}


@font-face {
    font-family: 'canvasans-reg';
    src: url('assets/font/canvasans-reg.otf');
}

green {
    color: #29b433;
}

red {
    color: #ff0000;
}

blue {
    color: #0044ff;
}

pink {
    color: pink;
}

input {
    border: solid 1px #29b433;
  background-color: #0f0f0f;
  color: white;
  padding: 6px;
    padding-left: 6px;
  text-align: center;
  font-size: 2em;
  letter-spacing: 0.3em;
  width: 200px;
  border-radius: 6px;
  font-family: steelfish;
  padding-left: 12px;
}

.centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.title {
    color: white;
  font-size: 2.4em;
  font-family: steelfish;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  font-weight: bold;
}

.frameBox {
 position: relative;
 border: solid 1px #29b433;
   margin-block: 1em;
 background-color: white;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
}

.frameBox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;  /* uses the same background */
  filter: blur(12px) opacity(0.1);
  transform: scale(2);
  transform-origin: center;
  z-index: -1;
}

.frame {
  position: relative;
  width: 725px;
  height: 725px;
  display: flex;
  user-select: none;
  overflow: hidden;
}


.loading {
    width: 100%;
  height: 100%;
  background-color: #000000e5;
  z-index: 4;
  position: absolute;
  background-size: 80px;
  color: white;
  font-family: steelfish;
  backdrop-filter: blur(12px) grayscale();
  font-size: 8em;
  justify-content: center;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  pointer-events: none;
  opacity: 0;
}

.loading.active {
  opacity: 1;
}

#loadingText {
    animation: rotate cubic-bezier(.86,0,.07,1) 0.6s alternate infinite;
}

/* Shared styles for both shadows */
.shadow-top,
.shadow-bottom {
  position: absolute;
  left: 50%;
  width: 140%;          /* match frame width */
  height: 125px;        /* adjust as needed */
  transform: translateX(-50%);
  background-image: url('assets/gfx/shadow.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none; /* shadows don't block clicks */
  
}

.shadow-top {
  top: 0;
}

.shadow-bottom {
  bottom: 0;
  transform: translateX(-50%) rotate(180deg); /* flip vertically */
}

    .textbox {
        font-family: steelfish;
  font-size: 86px;
  font-weight: bold;
  font-style: normal;
  color: #ffffff;
  font-kerning: none;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  display: inline;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.8);
  z-index: 3;
  opacity: 0.98;
  width: 100%;
  height: 95%;
  display: flex;
  align-items: end;
  justify-content: center;
    }

    .lines {
        width: 100%;height: 100%;display: flex;align-items: center;justify-content: flex-end;position: absolute;z-index: 2;flex-direction: column;
    }

    .line {
        border-bottom: solid 3px #2ab136;
  width: 95%;
  height: 3px;
    }

    .line.dotted {
border-bottom: dotted #2ab136;width: 70%;margin-bottom: 20px;
    }

        #randomText {
  opacity: 0.98;
  width: 90%;
  text-transform: uppercase;
  text-align: center;
        }

        .green {
            color: #29b433
        }

        .red {
            color: #ff0000;
        }

        .sponsorLayer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	align-items: end;
	justify-content: end;
	display: flex;
	font-family: canvasans-reg;
	font-size: 9px;
	z-index: 2;
	color: white;
	margin-top: 20px;
}

        .sponsorLayer > div {
        opacity: 0.98;
        }

        .onGodLogo {
            position: absolute;inset: 0;width: 100%;height: 100%;align-items: baseline;display: flex;font-family: canvasans-reg;font-size: 9px;z-index: 2;color: white;padding: 6px;
        }

        .logo {
            border-radius: 20px;border: solid 5px #29b433;display: inline-flex;width: 86px;height: 86px;overflow: hidden;
        }

        .logo > img {
            width: 86px;scale: 1.1;
        }

        .logo:active {
            scale: 1.1;
        }

        .line-margin {
  margin-bottom: 8px;
}

.sponsor-content {
  display: flex;
  gap: 8px;
  margin-right: 6px;
}

.sponsor-text {
  margin-top: 3px;
}

.sponsor-logo img {
  width: 26px;
  height: auto;
}


    @keyframes rotate {
        from {
            rotate: 0.01turn;
        }
        to {
            rotate: -0.01turn;
        }
    }