@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&family=Orbitron:wght@400;600&display=swap');
html, body { margin:0; padding:0; background:#111; overflow:hidden; cursor: default; }
canvas { display:block; margin:0 auto; background:#000; cursor: default; }
#debug {
  position:absolute; top:10px; left:10px;
  color:#0f0; font-family:monospace;
  background:rgba(0,0,0,0.6); padding:8px 12px; border-radius:8px;
}
#splash {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.85);
display: flex;
align-items: center;
justify-content: center;
z-index: 10000;
}

.splash-box {
  text-align: center;
  font-family: Orbitron, monospace;
  color: #FFD100;
}

.splash-box h1 {
    font-size: 20px;
}

.splash-box h2 {
    font-size: 18px;
}

.splash-box button {
  display: inline-block;
  margin: 12px auto;
  padding: 12px 32px;
  font-size: 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  color: #fff;
  background-color: #0d6efd; /* bootstrap primary */
  border: 1px solid #0d6efd;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

.splash-box button:hover {
  background-color: #0b5ed7;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.25);
}



.splash-box button:active {
  transform: translateY(1px);
}

.splash-box button.secondary {
  background-color: #6c757d; /* bootstrap secondary */
  border-color: #6c757d;
}

.splash-box button.secondary:hover {
  background-color: #5c636a;
  box-shadow: 0 0 0 4px rgba(108,117,125,0.25);
}

.button-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 12px 0;
}

.splash-help {
  margin-top: 12px;
  color: #ffffff;
  font-size: 15px;
line-height: 1.0;
  opacity: 0.9;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: 'VT323', 'Press Start 2P', monospace;
  background: #777;
  padding: 10px;
  border-radius: 10px;
}

.splash-help p{

line-height: 1.2;
margin: 0 auto;

}

.splash-credits {
  margin-top: 14px;
  color: #aaaaaa;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 20px;
  opacity: 0.8;
  font-family: 'VT323', 'Press Start 2P', monospace;
}

a.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;


  border-radius: 6px;

  background: #2b2b2b;   /* zelfde als button */
  color: #fff;
  text-decoration: none;

  font: inherit;
  cursor: pointer;
      display: inline-block;
    margin: 12px auto;
    padding: 12px 32px;
    font-size: 18px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    color: #fff;
    background-color: #fd350d;
    border: 1px solid #fd350d;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #fd350d;
    border-right-color: #fd350d;
    border-bottom-color: #fd350d;
    border-left-color: #fd350d;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

a.secondary:hover {
  background: #3a3a3a;
}