html {
  background: linear-gradient(135deg, #0f0f0f, #1a0033);
  background-attachment: fixed;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 50px;
  background: linear-gradient(135deg, #0f0f0f, #1a0033); 
  color: #00ffee;
  font-family: 'Press Start 2P';
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #0f0f0f, #1a0033); 
  z-index: -1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.landing {
  text-align: center;
  padding: 2rem;
}

.glow-container {
  max-width: 800px;
  margin: auto;
}

.glow {
  font-size: 1.75rem;
  color: #ff00c8;
  text-shadow: 0 0 5px #ff00c8, 0 0 10px #ff00c8, 0 0 20px #00ffee;
  margin-bottom: 1.5rem;
  animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
  from { opacity: 1; }
  to { opacity: 0.85; }
}

a.start-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  border: 2px dashed #ff00c8;
  background: #111;
  color: #00ffee;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 0 10px #ff00c8;
  transition: 0.3s ease;
  border-radius: 999px; 
}

a.start-button:hover {
  background: #ff00c8;
  color: black;
  box-shadow: 0 0 20px #ff00c8;
}

p {
  margin: 0.5rem 0;
}

.logo-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #0d1024; 
  display: flex;
  align-items: center;
  z-index: 9999;
  padding: 0 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cyan-logo {
  height: 60px;
  width: auto;
}

.wbb-logo {
  height: 155px;
  width: auto;
  padding-top: 15px;
}

main.landing {
  padding-top: 90px;
}

main.landing {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; 
}

main.landing h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  text-shadow: 0 0 5px #ff00c8, 0 0 15px #00ffee;
}

main.landing p {
  font-size: 1rem;
  margin: 0.3rem 0;
  line-height: 1.6;
  text-shadow: 0 0 5px #ff00c8;
}

main.landing .start-button {
  margin-top: 2rem;
}

body {
  position: relative;
}

:root {
  --border: 3px;
  --speed: 12s;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  padding: var(--border);
  pointer-events: none;
  z-index: 9998;

  background: linear-gradient(
    90deg,
    rgba(170, 0, 255, 0.22),  
    rgba(0, 170, 255, 0.22),   
    rgba(255, 0, 200, 0.22),   
    rgba(170, 0, 255, 0.22) 
  );
  background-size: 300% 100%;
  animation: neonFlow var(--speed) linear infinite;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  border-radius: 10px;
  opacity: 0.7;
}

@keyframes neonFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


@media (max-width: 600px) {
  main.landing h1 {
    font-size: clamp(1.8rem, 8vw, 3rem); 
    line-height: 1.2;
  }

  main.landing p {
    font-size: clamp(0.8rem, 2.7vw, 0.95rem);
    line-height: 1.4;
  }

  a.start-button {
    font-size: clamp(0.9rem, 3.25vw, 0.95rem);
    padding: 0.6rem 1.2rem;                 
    margin-top: 1.5rem;  
  }
}