::-webkit-scrollbar {
  width: 6px;
  height: 0;
}
::-webkit-scrollbar-track {
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.15);
}
::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.3);
}

html, body {
  overflow: hidden;
  height: 100%;

  position: fixed;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}



body {
  font-family: Ubuntu;

 
  font-size: 14px;

 /* background-image: url("https://cdn.glitch.global/f9f685e6-1738-4a8a-8532-8f1a5ffb59e5/background.png?v=1713557239119");  the background image lol*/
  background-image: url("https://cdn.glitch.global/0719a336-46d8-4612-bdf3-0a5eac2faf67/f660c60f-971f-41c3-b91d-0a404ed21bb9.image.png?v=1743789166767"); /*  the background image lol*/
  background-color: #484848;

  -webkit-animation: slide 300s;
}

@-webkit-keyframes slide {
    from { background-position: 0 0; }
    to { background-position: -20000px 8000px; }
}

hr {
  border: 0.5px solid rgba(0, 0, 0, 0.15);
  margin: 18px 0 18px;
}

html, body, canvas {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
canvas {
image-rendering: auto;
}





h1 {
  padding: 0;
  margin: 0;
  color: black;
  text-align: center;
  font: bold 40px/1.1 Ubuntu;
}

h1:active {
     animation:pfpDefault 800ms linear both;
}


body.mobile h1 {
  font-size: 32px;
}
h4 {
  text-align: center;
  padding: 0;
  margin: 0;
    background-color: yellow;
  color: red;
}
div.optionsHeader {
  display: block;
  margin: 10px 0 4px;
  font: bold 13px/1 Ubuntu;
  color: #000000;
  text-align: center;

 
}

h3 {
  font-size: 14px;
  color: #484848;
  text-align: center;
  line-height: 30px; /* centers text vertically */
  border-radius: 3px;
  padding: 0;
  margin: 0px 0;
  width: 100%;
  height: 30px;
  box-sizing: border-box;
  background: #b1d5fc;
    border-bottom: 2px solid #70b5ff;
  box-shadow: inset 0 -2px #70b5ff;
  border: 0;
  opacity: 1
}
#startMenuSlidingTrigger:hover > h3 {
  color: #323232;
  opacity: 0.8
}
#startMenuSlidingTrigger:active > h3 {
  color: #323232;
     animation:pfpDefault 800ms linear both;
}

#startMenuSlidingTrigger:hover > h3 > i.arrow {
  border-color: #323232;
}

.serverSelector {
  height: 80px;
  width: 710px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 13px;
  padding-left: 10px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.15);
  
}
.serverSelector tr {
  color: #828282;
  cursor: pointer;
}
.serverSelector tr.featured {
  color: #e8ae00;
  text-shadow: /*#ffe500 0 0 4px,*/ #fff27e 0 0 6px;
}
.serverSelector tr.selected {
  color: #8ABC3F;
  cursor: default;
}

.shadowScroll {
  overflow-y: scroll;
  background:
    /* Shadow covers */
    linear-gradient(#dde6eb 30%, rgba(255, 255, 255, 0)), /*dde6eb*/
    linear-gradient(rgba(255, 255, 255, 0), #dde6eb 70%) 0 100%,
    /* Shadows */
    radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0)),
    radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, .2), rgba(0, 0, 0, 0)) 0 100%;
  background-repeat: no-repeat;
  background-color: #dde6eb;
  background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
  background-attachment: local, local, scroll, scroll;
}
a:link, a:visited {
  color: #484848;
}
a:link:hover, a:visited:hover {
  color: #909090;
}

input {
  text-align: center;
  width: 100%;
  padding: 10px;
  border: solid 1px #dcdcdc;
  box-sizing: border-box;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  outline: none;
  font-family: Ubuntu;
  transition: border 0.3s, background 0.3s, color 0.3s;
}

#playerNameInput {
  padding: 10px;
  font-size: larger;
}

#playerKeyInput {
  padding: 5px;
}

input:focus {
  border: solid 1px #CCCCCC;
}

input.error {
  border: solid 1px #f00;
  background: #fee;
  color: #a00;
}

#mainWrapper {
  padding: 80px 20px 0;

}

#startMenu {
  position: relative;
  margin: 0 auto;
  max-height: 500px; 
  padding: 10px;
  border-radius: 20px;
  background-color: #dde6eb;
  box-sizing: border-box;
  overflow: hidden;
}


#changelogMenu {
  position: fixed;       /* sticks to the viewport */
   max-height: 500px; 
  top: 50px;             /* distance from top of page */
  right: 0px;              /* sticks to the right edge */
  width: 350px;          /* small fixed width */

  overflow-y: auto;      /* allows scrolling if content is long */
  background: #eef;      /* light background */
  border-left: 2px solid #70b5ff; /* subtle border */
  border-radius: 5px 0 0 5px;     /* rounded left side */
  padding: 10px;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2); /* slight shadow */
  z-index: 1000;         /* above other content */
     transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 1; /* fully visible */
}


.menuTabs {
  height: 26px;
  margin: 0 8px;
}

body.mobile #mainWrapper { padding: 50px 50px 0; }
body.mobile #startMenu { max-height: 340px; }
body.mobile #linkHolder { display: none; }

.referral {
  display: block;
  width: 336px;
  height: 280px;
  margin: 0 8px 6px 7px;
}

.referral-fallback {
  display: none;
}

.respawn-banner {
  position: absolute;
  width: 728px;
  bottom: 30px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.startMenuHolder {
  width: 720px;
  height: 470px;
  padding: 10px;
  overflow: hidden;
  display: inline-block;
  vertical-align: text-top;
  position: relative;

}



a.menuTab {
  float: right;
  height: 13px;
  font: 13px Ubuntu;
  padding: 6px 10px 7px 10px;
  border-radius: 5px 5px 0 0;
 color: #ffffff !important; 


  text-decoration: none;
  margin-right: 10px;
}
a.menuTab.discord {
   padding: 6px 10px 7px 28px;
      animation:pfpDefault 800ms linear both;
  background: #7289DA url("https://cloud-cube.s3.amazonaws.com/m660o440l0wv/public/svg0.svg") 4px 3px/21px no-repeat;
}
a.menuTab.youtube {
   padding: 6px 10px 7px 28px;
      animation:pfpDefault 800ms linear both;
  background: #bf2e2e url("https://cdn.glitch.global/0719a336-46d8-4612-bdf3-0a5eac2faf67/logoyt-removebg-preview.png?v=1715207063888") 4px 3px/21px no-repeat;
}

a.menuTab.homepage {
   padding: 6px 10px 7px 28px;
      animation:pfpDefault 800ms linear both;
  background: red;
}
  a.menuTab.catto {
      background: #f00 url("https://cloud-cube.s3.amazonaws.com/m660o440l0wv/public/coder.png") 8px 6px no-repeat;
  padding: 6px 10px 7px 28px;
        animation:pfpDefault 800ms linear both;
}
a.menuTab.stat {
  background: #1E8449  url("https://cloud-cube.s3.amazonaws.com/m660o440l0wv/public/play.png") 3px 2px/23px no-repeat;
  padding: 6px 10px 7px 28px;
      animation:pfpDefault 800ms linear both;
}
a.menuTab:link:hover, a.menuTab:visited:hover {
  text-decoration: underline;
      animation:pfpHoverOn 800ms linear both;
}

.changelogSelectorContainer {
  height: 25px;
  font: bold 20px Ubuntu;
  text-align: center;
  padding: 0 15px 5px 0;
  overflow: auto hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.changelogSelectorContainer::before, .changelogSelectorContainer::after {
  content: '';
  position: absolute;
  display: block;
  height: 15px;
  width: 8px;
  pointer-events: none;
}
.changelogSelectorContainer::before {
  background: linear-gradient(to right, rgba(221, 230, 235, 1) 0%, rgba(221, 230, 235, 0.3) 100%);
}
.changelogSelectorContainer::after {
  top: 10px;
  right: 10px;
  background: linear-gradient(to left, rgba(221, 230, 235, 1) 0%, rgba(221, 230, 235, 0.3) 100%);
}
.changelogSelector {
  width: 340px;
}
.changelogSelector span {
  color: #222;
  cursor: pointer;
}

.changelogSelector span:hover {
  transition: color 200ms;
  color: #555;
}
.changelogSelector span.active {
  color: #777;
  cursor: default;
}

.changelogSelector span:not(:first-child)::before {
  content: ' ';
  color: #aaa;
  margin: 0 3px 0 0;
}
.changelogSelector span:not(:last-child)::after {
  content: ' |';
  color: #aaa;
  margin: 0 0 0 3px;
}

.sliderHolder {
  width: 720px;
  height: 400px;
  overflow: hidden;
}
body.mobile .sliderHolder {
  height: 245px;
}

table {
  width: 100%;
}
body.mobile .controlTable {
  display: none;
}
.resetControls {
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 1000ms, margin 1000ms;
  margin: 0 -6px;
}
.resetControls.spin {
  transition: transform 500ms, opacity 1000ms 150ms, margin 1000ms 150ms;
  transform: rotate(360deg);
}
.resetControls.active {
  opacity: 1;
  margin: 0 5px;
  cursor: pointer;
}
.moreControls {
  cursor: pointer;
}
.controlTable {
  border-collapse: collapse;
  margin: 0 2px;
}
.controlTable tr {
  border: 0;
  transition: opacity 500ms;
}
.controlTable tr.hidden {
  opacity: 0;
  pointer-events: none;
}
.controlTable td {
  transition: padding 500ms;
}
.controlTable div {
  position: relative;
  top: 0px;
  height: 18px;
  transition: height 500ms, top 500ms;
}
.controlTable tr.hidden td {
  padding: 0 1px;
}
.controlTable tr.hidden div {
  top: -20px;
  height: 0;
}
.controlTable td b {
  display: inline-block;
  width: 12px;
  height: 16px;
  cursor: pointer;
  text-align: right;
  vertical-align: bottom;
}
.controlTable td b:hover {
  color: #777;
}
.controlTable td.editing b {
  background: #fff;
  color: #333;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  padding: 1px 4px;
  margin: -2px -7px -2px -3px;
  text-align: center;
  cursor: text;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.controlTable td.editing span {
  visibility: hidden;
}

#optColors {
  width: 220px;
}
#optMobile {
  display: none;
}
#optBorders {
  width: 120px;
}
body.mobile #optColors {
  width: 346px;
  margin-bottom: 4px;
}
body.mobile #optMobile, body.mobile #optBorders {
  width: 170px;
  margin-bottom: 4px;
  display: inline-block;
}

.slider {
  position: relative;
  top: 0px;
  opacity: 1;
  width: 100%;
    transition: top 700ms, opacity 600ms;
  animation:pfpDefault 800ms linear both;
  	transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

.slided .slider {
  top: -275px;
}
body.mobile .slided .slider {
  top: -225px;
}

.startMenuSlidingContent {
  height: 350px;
}
body.mobile .startMenuSlidingContent {
  height: 225px;
}

#startMenuSlidingTrigger {
  cursor: pointer;
  height: 50px;
}

.icon {
  display: block;
  width: 130px;
  margin: 0 auto;
  padding-top: 4px;
  height: 130px;
  padding-bottom: -3px;
  border-radius: 50%;
   animation:pfpDefault 800ms linear both;
}

.icon:hover {
     animation:pfpHoverOn 800ms linear both;
}

.icon:active {
     animation:pfpDefault 400ms linear both;
}


body.mobile .icon {
  width: 55px;
  height: 55px;
}

#patchNotes {
  max-width: 330px;
  height: calc(100% - 40px);
  padding: 5px 10px 10px;
  overflow: hidden auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.15);
}

#patchNotes ul {
  padding-left: 15px;
  margin-left: 10px;
}

#patchNotes table.poll-list {
  margin: 8px 0px 20px 5px;
}
#patchNotes table.poll-table {
  text-align: center;
  margin: 0 0 12px;
}
#patchNotes table.poll-table thead {
  font-weight: bold;
}
#patchNotes b small {
  color: #444;
}
#patchNotes b small a {
  margin-left: 10px;
}

#patchNotes div {
  transition: max-height 500ms, opacity 500ms, line-height 500ms;
  max-height: 1500px;
  opacity: 1;
  margin-bottom: 0;
  line-height: 1.2;
}
#patchNotes div hr {
  transition: margin 500ms;
}
#patchNotes.updates .balance,
#patchNotes.updates .patch,
#patchNotes.events .update,
#patchNotes.events .poll,
#patchNotes.events .balance-update,
#patchNotes.events .balance,
#patchNotes.events .patch,
#patchNotes.balances .update,
#patchNotes.balances .poll,
#patchNotes.balances .event-poll,
#patchNotes.balances .event,
#patchNotes.balances .patch {
  max-height: 0px;
  opacity: 0;
  line-height: 0;
}
#patchNotes.updates .balance hr,
#patchNotes.updates .patch hr,
#patchNotes.events .update hr,
#patchNotes.events .poll hr,
#patchNotes.events .balance-update hr,
#patchNotes.events .balance hr,
#patchNotes.events .patch hr,
#patchNotes.balances .update hr,
#patchNotes.balances .poll hr,
#patchNotes.balances .event-poll hr,
#patchNotes.balances .event hr,
#patchNotes.balances .patch hr {
  margin: 0;
}

#startButton {
  margin: 0;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  color: white;
  margin-top: -16px;
    animation:pfpDefault 800ms linear both;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2);
  background: #A9D86D;
  font-size : 99px;
  border: 0;
  border-bottom: 2px solid #8ABC3F;
  cursor: pointer;
  box-shadow: inset 0 -2px #8ABC3F;
  border-radius: 5px;
  font: 16px sans-serif;
}
#startButton:hover {
  margin-top: -15px;
  height: 49px;
  border-bottom: 1px solid #8ABC3F;
}

#startButton:active {
  margin-top: -16px;
  height: 49px;
  background: #8ABC3F;
  border-bottom: 0px;
  outline: none;
  box-shadow: none;
}

#bottomHolder > a {
  display: inline-block;
  position: relative;
  margin: 2px;
  border: 0px;
  padding: 5px;
  width: 100px;
  height: 16px;
  font-size: smaller;
  color: white;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  cursor: pointer;
  background: #B58EFD;
  border-radius: 5px;
  box-shadow: inset 0 -4px rgba(0, 0, 0, 0.15);
}
#bottomHolder > a:hover {
  top: 1px;
  height: 15px;
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.15);
}
#bottomHolder > a:active {
  top: 4px;
  height: 12px;
  box-shadow: inset 0 -25px rgba(0, 0, 0, 0.15);
}

#startMenuWrapper {
  transition: top 1s;
  position: relative;
  top: 0px;
  z-index: 2;
  max-width: 755px;
  margin: 0 auto;
}
body.mobile #startMenuWrapper { max-width: 750px; }

#gameAreaWrapper {
  position: absolute !important;
  top: 0;
  left: 0;
  opacity: 0;
  
}

*:focus {
  outline: 1px solid transparent;
}

/* Customize the label (the container) */
.count {
  display: inline-block;
  width: 20px;
  font: bold 12px Ubuntu;
}
.count span {
  font-size: 10px;
}

.container {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container input {
  position: absolute;
  visibility: hidden;
  width: 0;
  height: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  border-radius: 4px;
  background-color: #eee;
  border: 1px solid #ccc;
}

.container:hover input ~ .checkmark {
  background-color: #ccc;
}

.container input:disabled ~ .checkmark {
  background-color: #ddd;
}

.container input:checked ~ .checkmark {
  background-color: #8ABC3F;
  border: 1px solid #8ABC3F;
}

.container:hover input:checked ~ .checkmark {
  background-color: #7FA843;
  border: 1px solid #7FA843;
}

.container input:disabled:checked ~ .checkmark {
  background-color: #a1c172;
  border: 1px solid #a1c172;
}

.container .checkmark:after {
  content: '';
  position: absolute;
  display: none;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.container input:checked ~ .checkmark:after {
  display: block;
}

.radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background-color: #eee;
  border: 1px solid #ccc;
}

.container:hover input ~ .radio {
  background-color: #ccc;
}

.container input:disabled ~ .radio {
  background-color: #ddd;
}

.container input:checked ~ .radio {
  background-color: #8ABC3F;
  border: 1px solid #8ABC3F;
}

.container:hover input:checked ~ .radio {
  background-color: #7FA843;
  border: 1px solid #7FA843;
}

.container input:disabled:checked ~ .radio {
  background-color: #a1c172;
  border: 1px solid #a1c172;
}

.container .radio:after {
  content: '';
  display: none;
  margin: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.container input:checked ~ .radio:after {
  display: block;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: 13px/1 Ubuntu;
  padding: 2px 28px 2px 8px;
  height: 21px;
  margin-left: 3px;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAAwklEQVQoU42QMQrCQBBFZxeGgJ7BI1jYa2GzTTY3sRUECy1yA0svEQhhEHIHLdRrqF2a5EuCkbgmmin/zLz5f5QxZsTMK2ZeR1F0p5ay1i7zPD+LiLT1S01Za7dEtCGiY5Zl8zRNH81h3/d3SqkFgFOSJJNOUBAEAwAHIpq6sAbkprWexXF86QSVjTaY53nhy8lfSBWtvuDAKhlAL8gHyHUGAFrr8a84zZhvR7VojBkyc1gUxV5Erl0/cfUvUN9Fd+4JA1JkCdbmVf8AAAAASUVORK5CYII=) 100% no-repeat #eee;
  /*
  let canvas = document.body.appendChild(document.createElement('canvas'))
  canvas.width = Math.ceil(8 * Math.sqrt(2)) + 6
  canvas.height = Math.ceil(5 * Math.sqrt(2))
  let ctx = canvas.getContext('2d')
  ctx.strokeStyle = '#4c4c4c'
  ctx.translate(4 * Math.sqrt(2), -3 * Math.sqrt(2))
  ctx.rotate(Math.PI * 0.25)
  ctx.lineCap = 'round'
  ctx.lineJoin = 'round'
  ctx.lineWidth = 2
  ctx.beginPath()
  ctx.moveTo(1, 7)
  ctx.lineTo(7, 7)
  ctx.lineTo(7, 1)
  ctx.stroke()
  copy(canvas.toDataURL())
  */
  border-radius: 4px;
  border: 1px solid #ccc;
}
select:hover {
  background-color: #ccc;
}
select:active {
  background-color: #eee;
}

.tooltip {
  position: relative;
  bottom: 1px;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  text-align: center;
  background: rgb(0, 0, 0, 0.6);
  font: bold 10px/15px Ubuntu;
  color: #fff;
  margin: 0 4px;
}

.tooltip::before {
  content: '?';
}

.tooltip span {
  position: absolute;
  width: 160px;
  background-color: #444444;
  color: #fff;
  font: bold 11px Ubuntu;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  z-index: 1;
  margin-left: -80px;
  left: 50%;
  transition: opacity 200ms, bottom 200ms;
  pointer-events: none;
  opacity: 0;
  bottom: 200%;
}
.tooltip span::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #444444 transparent transparent transparent;
}
.tooltip:hover span {
  pointer-events: unset;
  opacity: 1;
  bottom: 150%;
}

i {
  transition: transform 500ms;
}
i.arrow {
  border: solid #484848;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
}
i.reset {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: #000 2px solid;
  border-right-color: transparent;
  border-radius: 50%;
  position: relative;
  top: 3px;
}
i.reset::after {
  content: '';
  display: inline-block;
  border: 3px solid;
  border-color: transparent #000 #000 transparent;
  position: relative;
  left: 3px;
  bottom: 8px;
}
i.cross {
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 0 5px -3px;
  padding: 6px;
}
i.cross.x {
  transform: rotate(135deg);
}
i.cross::before, i.cross::after {
  content: '';
  display: inline-block;
  background-color: #000;
  border-radius: 2px;
  float: left;
}
i.cross::before {
  width: 12px;
  height: 2px;
  margin-left: -5px;
}
i.cross::after {
  width: 2px;
  height: 12px;
  margin-top: -7px;
}
i.flag {
  display: inline-block;
  width: 2px;
  height: 12px;
  background: #000;
  margin: 0 15px 0 5px;
}
i.flag::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 7px;
  background-color: #000;
  margin: 0 0 5px 3px;
  transition: margin-bottom 500ms;
}
i.flag.down::before {
  margin-bottom: 2px;
}
@keyframes pfpHoverOn { 
  0% { transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% { transform: matrix3d(1.032, 0, 0, 0, 0, 1.041, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.7% { transform: matrix3d(1.045, 0, 0, 0, 0, 1.06, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% { transform: matrix3d(1.066, 0, 0, 0, 0, 1.089, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  9.41% { transform: matrix3d(1.088, 0, 0, 0, 0, 1.117, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% { transform: matrix3d(1.094, 0, 0, 0, 0, 1.123, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% { transform: matrix3d(1.112, 0, 0, 0, 0, 1.133, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  14.11% { transform: matrix3d(1.114, 0, 0, 0, 0, 1.133, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% { transform: matrix3d(1.121, 0, 0, 0, 0, 1.124, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  18.72% { transform: matrix3d(1.121, 0, 0, 0, 0, 1.119, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% { transform: matrix3d(1.12, 0, 0, 0, 0, 1.107, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  24.32% { transform: matrix3d(1.115, 0, 0, 0, 0, 1.096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% { transform: matrix3d(1.113, 0, 0, 0, 0, 1.094, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% { transform: matrix3d(1.106, 0, 0, 0, 0, 1.09, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.93% { transform: matrix3d(1.105, 0, 0, 0, 0, 1.09, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  35.54% { transform: matrix3d(1.098, 0, 0, 0, 0, 1.096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% { transform: matrix3d(1.097, 0, 0, 0, 0, 1.098, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.04% { transform: matrix3d(1.096, 0, 0, 0, 0, 1.102, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% { transform: matrix3d(1.097, 0, 0, 0, 0, 1.103, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  52.15% { transform: matrix3d(1.099, 0, 0, 0, 0, 1.101, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% { transform: matrix3d(1.101, 0, 0, 0, 0, 1.099, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  63.26% { transform: matrix3d(1.101, 0, 0, 0, 0, 1.099, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% { transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.49% { transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% { transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% { transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } 
}

@keyframes pfpDefault { 
  0% { transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  3.4% { transform: matrix3d(1.068, 0, 0, 0, 0, 1.059, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  4.7% { transform: matrix3d(1.055, 0, 0, 0, 0, 1.04, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.81% { transform: matrix3d(1.034, 0, 0, 0, 0, 1.011, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  9.41% { transform: matrix3d(1.012, 0, 0, 0, 0, 0.983, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  10.21% { transform: matrix3d(1.006, 0, 0, 0, 0, 0.977, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  13.61% { transform: matrix3d(0.988, 0, 0, 0, 0, 0.967, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  14.11% { transform: matrix3d(0.986, 0, 0, 0, 0, 0.967, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  17.52% { transform: matrix3d(0.979, 0, 0, 0, 0, 0.976, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  18.72% { transform: matrix3d(0.979, 0, 0, 0, 0, 0.981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  21.32% { transform: matrix3d(0.98, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  24.32% { transform: matrix3d(0.985, 0, 0, 0, 0, 1.004, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.23% { transform: matrix3d(0.987, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.03% { transform: matrix3d(0.994, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  29.93% { transform: matrix3d(0.995, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  35.54% { transform: matrix3d(1.002, 0, 0, 0, 0, 1.004, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  36.74% { transform: matrix3d(1.003, 0, 0, 0, 0, 1.002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  41.04% { transform: matrix3d(1.004, 0, 0, 0, 0, 0.998, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  44.44% { transform: matrix3d(1.003, 0, 0, 0, 0, 0.997, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  52.15% { transform: matrix3d(1.001, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  59.86% { transform: matrix3d(0.999, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  63.26% { transform: matrix3d(0.999, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.28% { transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  85.49% { transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  90.69% { transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% { transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } 
}

h1 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: sans-serif;   /*sans-serif;*/
  font-size: 35px;
  text-align: center;
    background: linear-gradient(to bottom, 	#99aab5, #000000 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




button {
  border-radius: 4px;
  background-color: 	#7289da;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

button:hover span {
  padding-right: 25px;
}

button:hover span:after {
  opacity: 1;
  right: 0;
}


a.changelogbttn{
  animation-name: rgpb;
  animation-duration: 4s;
 animation-transition: all 0.3s ease;
  animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes rgpb {
  0% {background-color: #d92a2a}
  10% {background-color: #60e10a}
  20% {background-color: #b23298}
  30% {background-color: #00aaff}
  40% {background-color: #00f7ff}
  50% {background-color: #f6ff00}
  60% {background-color: #ff00cc}
  70% {background-color: #d000ff}
  80% {background-color: #00ffbb}
  90% {background-color: #ff6a00}
  100% {background-color: #0026ff}
}


#jumpscare {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: black;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#jumpscare img {
  max-width: 100%;
  max-height: 100%;
}

#jumpscare2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: black;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#jumpscare2 img {
  max-width: 100%;
  max-height: 100%;
  transform: scale(4);
 /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 0.5s;

  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}



@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(4deg); }
  50% { transform: translate(-1px, 2px) rotate(-4deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-8deg); }
  80% { transform: translate(-1px, -1px) rotate(9deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-9deg); }
}




/* Keyframe to define the flicker effect */
@keyframes flicker {
    0% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    60% {
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* The flicker class */
.flicker {
    animation: flicker 1s infinite;  /* Apply the flickering animation */
}

/* Optional: the body/container where the flicker effect will happen */
body.flicker {
    animation: flicker 1s infinite;  /* Apply flicker to the whole body */
}



.crosshair-cursor {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><line x1="16" y1="0" x2="16" y2="6" stroke="black" stroke-width="2"/><line x1="16" y1="26" x2="16" y2="32" stroke="black" stroke-width="2"/><line x1="0" y1="16" x2="6" y2="16" stroke="black" stroke-width="2"/><line x1="26" y1="16" x2="32" y2="16" stroke="black" stroke-width="2"/><circle cx="16" cy="16" r="4" stroke="black" stroke-width="2" fill="none"/></svg>') 16 16, auto;
}

#recommendBox {
    display: none; /* hidden by default */
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(-200px); /* center and raise by 200px */
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: sans-serif;
    z-index: 9999;
    max-width: 300px;
    text-align: left;
}

#recommendBox ul {
    margin: 10px 0 0 15px;
    padding: 0;
    list-style: disc;
}

#recommendBox button {
    margin-top: 10px;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

#recommendBox button:hover {
    background: #45a049;
}





