@font-face {
  font-family: 'bankgothic_md_btmedium';
  src:
    url('/maintenance/assets/fonts/bankgthd-webfont.eot');
  src:
    local('☺'),
    url('/maintenance/assets/fonts/bankgthd-webfont.woff') format('woff'),
    url('/maintenance/assets/fonts/bankgthd-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}
body {
  user-select: none;
  background-color: #242424;
  font-family: Lato, 'Open Sans', Helvetica, Arial, sans-serif;
}
h1,
h2,
h3,
h4 {
  color: white;
  font-family: 'bankgothic_md_btmedium';
  font-weight: normal;
  text-shadow: 0 0 20px #48C8FF;
  text-transform: uppercase;
  margin: 0 0 0;
  padding: 0;
  mix-blend-mode: difference;
  white-space: nowrap;
}
h1 { font-size: clamp(1.75rem, 6vw, 4rem); }
h2 { font-size: clamp(1.5rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 4vw, 2.25rem); }
h4 { font-size: clamp(1.125rem, 3.5vw, 1.75rem); }
h5 { font-size: clamp(1rem, 3vw, 1.5rem); }
h6 { font-size: clamp(0.875rem, 2.5vw, 1.25rem); }

h1.top {
  font-size: clamp(1.5rem, 5vw, 3rem);
}
h1.bottom {
    /* Slightly increased per request */
    font-size: clamp(1.95rem, 6.3vw, 3.92rem);
}
#canvas-container {
    user-select: none;
}
canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    user-select: none;
    pointer-events: all;
}
div.dg {
    display: none;
}
#sections {
    height: 100vh;
    width: 100vw;
    overflow-y: auto;
    scroll-snap-type: y proximity;
    overscroll-behavior-y: contain;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    user-select: none;
    pointer-events: none;
    position: absolute;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    mix-blend-mode: difference;
}
#section1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
    user-select: none;
    pointer-events: none;
}
.overlay {
    color: white;
    mix-blend-mode: difference;
    isolation: isolate;
    pointer-events: none;
    user-select: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;

}
#live-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50vw;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    user-select: none;
    pointer-events: none;
}
#logo {
    width: 30vw;
}
.codeby {
  position: fixed;
  right: 12px;
  bottom: 10px;
  z-index: 200; /* above canvas and sections */
  font-size: 8px; /* very small text */
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.75);
  mix-blend-mode: difference; /* keeps it readable on any background */
  pointer-events: auto; /* allow clicking the link */
  user-select: text;
}
.codeby a {
  color: inherit;
  text-decoration: none;
  border-bottom: none;
}
.codeby a:hover {
  color: #fff;
  border-bottom: none;
}
.link-white-bold,
.link-white-bold:visited,
.link-white-bold:hover,
.link-white-bold:active,
.link-white-bold:focus {
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  border-bottom: none !important;
}
.credits {
  position: fixed;
  left: 12px;
  bottom: 10px;
  z-index: 200; /* above canvas and sections */
  font-size: 8px; /* very small text */
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.75);
  mix-blend-mode: difference; /* keeps it readable on any background */
  pointer-events: auto; /* allow clicking the link */
  user-select: text;
}
.credits a {
  color: inherit;
  text-decoration: none;
  border-bottom: none;
}
.credits a:hover {
  color: #fff;
  border-bottom: none;
}
a,
a:visited,
a:hover,
a:active,
a:focus {
  color: #fff;
  text-decoration: none;
  border-bottom: none;
  pointer-events: all;
  white-space: nowrap;
}
.rayden-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    pointer-events: all;
    white-space: nowrap;
    font-family: "Century Gothic", serif !important;

}
a.rayden-link:hover {
    /* Pulse animation */
    animation: raydenPulse 1.25s ease-in-out infinite;
    transform-origin: center;
    will-change: transform, text-shadow, opacity;
}
.rayden-arrow {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    color: #0000ff;
    font-size: 2em;
    margin-top: -0.03em;
}
.netgame-archive {
    margin-top: 1em;
}

/* Rayden arrow pulse animation */
@keyframes raydenPulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0px rgba(0, 0, 255, 0.0), 0 0 0px rgba(72, 200, 255, 0.0);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.2);
    text-shadow: 0 0 6px rgba(0, 0, 255, 0.55), 0 0 14px rgba(72, 200, 255, 0.45);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 0px rgba(0, 0, 255, 0.0), 0 0 0px rgba(72, 200, 255, 0.0);
    opacity: 0.95;
  }
}


