
    body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(1200px 600px at 50% 20%, #111 0%, #000 70%);
      color: #fff;
      font-family: 'Press Start 2P', monospace;
      text-align: center;
    }

    .container {
      width: 92%;
      max-width: 720px;
      background: #1a1a1a;
      border: 2px solid #FFD700;
      border-radius: 12px;
      padding: 32px 24px;
      box-shadow: 0 0 24px rgba(0,0,0,0.6);
      position: relative;
      overflow: hidden;
    }

    /* CRT distortion overlay */
    .crt::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.05) 0px,
        rgba(255,255,255,0.05) 2px,
        transparent 2px,
        transparent 4px
      );
      pointer-events: none;
      mix-blend-mode: overlay;
    }
    .crt::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.1);
      animation: flicker 0.15s infinite;
      pointer-events: none;
    }
    @keyframes flicker {
      0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 0.1; }
      20%, 22%, 24%, 55% { opacity: 0.3; }
    }

    h1 {
      margin: 0 0 16px;
      color: #FFD700;
      letter-spacing: 2px;
      animation: flash 1s infinite alternate;
    }
    @keyframes flash {
      from { opacity: 0.6; }
      to   { opacity: 1; }
    }

    .subtitle {
      margin: 0 0 24px;
      color: #00e5ff;
      font-size: 0.9rem;
    }

    .badge {
      display: inline-block;
      margin: 18px 0 24px;
      padding: 10px 16px;
      border: 2px solid #00e5ff;
      border-radius: 8px;
      color: #00e5ff;
      text-transform: uppercase;
      letter-spacing: 1px;
      animation: glow 2s ease-in-out infinite;
    }
    @keyframes glow {
      0%,100% { box-shadow: 0 0 0 rgba(0,229,255,0); }
      50%     { box-shadow: 0 0 12px rgba(0,229,255,0.5); }
    }

    .card {
      border: 2px dashed #FFD700;
      border-radius: 8px;
      padding: 16px;
      background: #141414;
      margin: 12px 0;
      text-align: left;
    }
    .card h3 {
      margin: 0 0 8px;
      color: #FFD700;
      font-size: 0.9rem;
    }
    .card p {
      margin: 0;
      font-size: 0.85rem;
      line-height: 1.6;
    }

    .actions {
      margin-top: 24px;
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-block;
      padding: 10px 16px;
      border: 2px solid #FFD700;
      border-radius: 8px;
      color: #fff;
      background: transparent;
      text-decoration: none;
      transition: transform 0.12s ease, box-shadow 0.12s ease;
    }
    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(255,215,0,0.25);
    }

    .note {
      margin-top: 10px;
      font-size: 0.75rem;
      color: #bfbfbf;
    }
	/* Loading screen */
#loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

#loading-screen p {
  margin-bottom: 20px;
  font-size: 1rem;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0.5; }
}

.progress-bar {
  width: 300px;
  height: 20px;
  border: 2px solid #FFD700;
  background: #333;
}

.progress {
  height: 100%;
  width: 0;
  background: #FFD700;
  animation: load 3s linear forwards;
}

@keyframes load {
  from { width: 0; }
  to { width: 100%; }
}
button.animated {
  position: relative;
  overflow: hidden;
}

button.animated::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shine 3s infinite;
}
.btn a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
}