:root{
  --bg0: #06010d;
  --bg1: #12002b;
  --neonA: #00fff0;
  --neonB: #ff2bd6;
  --neonC: #ffe66d;
  --txt: #f7f3ff;
  --muted: rgba(247, 243, 255, 0.75);
  --panel: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.18);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body{
  margin: 0;
  font-family: Verdana, system-ui, sans-serif;
  color: var(--txt);
  background:
    radial-gradient(900px 600px at 80% 20%, rgba(255, 43, 214, 0.16), transparent 60%),
    radial-gradient(900px 600px at 20% 45%, rgba(0, 255, 240, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

/* Simple scanlines overlay (no blend modes) */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 2px,
    transparent 5px
  );
  opacity: 0.25;
}

/* Headings */
h1, h2, h3{
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--neonA);
  text-shadow: 0 0 10px rgba(0, 255, 240, 0.35);
}

/* Body text */
p, li{
  color: var(--muted);
  line-height: 1.6;
}

/* Links */
a{
  color: var(--neonB);
  text-decoration: none;
}
a:hover{
  color: var(--neonC);
  text-decoration: underline;
}

/* Generic “panel/card” utility */
.panel, .card, .box{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* Buttons */
button, .btn{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 240, 0.35);
  background: rgba(255, 255, 255, 0.10);
  color: var(--txt);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
button:hover, .btn:hover{
  border-color: rgba(255, 43, 214, 0.45);
}

/* Optional terminal block */
.terminal{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: rgba(0, 0, 0, 0.55);
  border: 1px dashed rgba(0, 255, 240, 0.40);
  color: rgba(247, 243, 255, 0.85);
  padding: 14px;
  border-radius: 14px;
}

/* Floating side junk layer */
.float-layer{
  position: fixed;
  inset: 0;
  pointer-events: none; /* so links/buttons still clickable */
  z-index: 5; /* above background, below your main content if needed */
}

.floatie{
  position: absolute;
  width: 180px;
  padding: 8px;
  border: 2px outset #ff2bd6;
  background: rgba(0,0,0,0.65);
  color: #cfc7ff;
  font-family: "Comic Sans MS", Verdana, sans-serif;
  font-size: 12px;
  line-height: 1.25;
  text-align: left;

  transform: rotate(-4deg);
  box-shadow: 0 12px 25px rgba(0,0,0,0.55);
}

.floatie img{
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #222;
}

.floatie .tiny{
  font-size: 11px;
  color: #9bfffa;
}

/* Left and right anchors */
.floatie.left { left: 10px; }
.floatie.right{ right: 10px; }

/* Slight bobbing animation */
@keyframes bob{
  0%   { transform: translateY(0px) rotate(var(--rot, -4deg)); }
  50%  { transform: translateY(-12px) rotate(var(--rot, -4deg)); }
  100% { transform: translateY(0px) rotate(var(--rot, -4deg)); }
}

.floatie{
  animation: bob var(--dur, 6s) ease-in-out infinite;
}

@media (max-width: 920px){
  .float-layer{ display:none; }
}

