
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  color: #0DD99F;
  position: fixed;
}


body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,255,0,0.05) 2px,
      rgba(0,0,0,0.25) 8px,
      rgba(0,0,0,0) 6px
    ),
    radial-gradient(circle at center, rgba(0,0,0,0) 60%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 1000;
}

@keyframes scanBeam { 0% { top: -100px; } 100% { top: 100%; } }

/* The Moving Scan-Beam */
body::before {
    content: " ";
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0) 100%);
    animation: scanBeam 8s linear infinite;
    pointer-events: none;
    z-index: 101;
}

body::before, body::after {
  max-width: 100vw;
  max-height: 100vh;
}



.container {
  width: 1920px;
  height: 1080px;
  position: relative;
  transform-origin: top left;
}


.title {
  position: absolute;
  left: 95px;
  top: 22px;
  font-size: 30px;
  white-space: pre;
  text-shadow:1px 1px 50px #0DD99F
}


.spider {
  position: absolute;
  left: 800px;
  top: -140px;
  font-size: 48px;
  white-space: pre;
  text-shadow:1px 1px 50px #0DD99F
}


.spider-mobile {
  display: none;
}


.button {
  position: absolute;
  width: 540px;
  height: 105px;
  background:#03412f36;
;
  border: 3px solid #0DD99F;
  box-shadow: 
  0 0 60px #0dd99f34;
  display: flex;
  align-items: center;
  padding-left: 20px;
  font-size: 64px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  user-select: none;
  text-shadow:1px 1px 60px #0dd99fbb
}
.button:hover {
  background: #03412f;
  color: #fff;
}


#tiktok { top: 300px; left: 103px; }
#tumblr { top: 416px; left: 103px; }
#artfight { top: 532px; left: 103px; }
#instagram { top: 648px; left: 103px; }


.footer {
  position: absolute;
  left: 0px;
  top: 860px;
  font-size: 40px;
  white-space: pre;
  text-shadow:1px 1px 50px #0DD99F
}

/* MOBILE */

@media (max-width: 1024px) {
  html, body {
    overflow-y: hidden;
    overflow-x: auto;
    height: auto;
    width: 100%;
  }

  
  .spider-desktop {
    display: none;
  }

  
  .spider-mobile {
    display: block;
    white-space: pre;
    font-family: 'JetBrains Mono', monospace;
    font-size: 2px; 
    line-height: 1.1; 
    transform: scale(0.4); 
    transform-origin: center; 
    text-shadow: 0 0 10px #0DD99F;
  }

  .spider-wrapper {
    width: 100%;
    height: 300px; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: -30px 0px -60px 0px; 
  }

  .container {
    width: 100%; 
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 20px;
    transform: none !important; 
  }

  
  .title, .spider, .button, .footer, .button-container {
    position: static; 
    margin: 10px 0;
    text-align: center;
  }

  .title {
    font-size: 10px; 
    line-height: 1.2;
    white-space: pre;
    overflow-x: hidden;
  }

  .spider {
    font-size: 12px; 
    margin-top: -20px;
    line-height: 1;
  }

  .button-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 85%;
    align-items: center;
  }

  .button {
    width: 90%; 
    height: 70px;
    font-size: 32px; 
    justify-content: center; 
    padding-left: 0;
  }

  .footer {
    position: static; 
    width: 100%;      
    text-align: center; 
    font-size: 16px;  
    margin-top: 20px;
    white-space: normal;
  }
}



