 :root{
  --primary-accent:#60a5fa;
  --secondary-accent:#22c55e;
  --panel-bg:rgba(17, 24, 39, 0.88);

  /*  theme reference */
  --internal-token: flag{css_controls_the_surface};
}
    body {
      margin: 0;
      padding: 0;
      background: radial-gradient(circle at top, #0b1220 0%, #05070b 55%, #020408 100%);
      color: #d1d5db;
      font-family: "Courier New", Courier, monospace;
    }

    .wrapper {
      max-width: 950px;
      margin: 50px auto;
      padding: 32px;
      border: 1px solid #1f3b73;
      border-radius: 14px;
      background: rgba(8, 12, 20, 0.94);
      box-shadow: 0 0 30px rgba(37, 99, 235, 0.15);
    }

    .topbar {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
      margin-bottom: 28px;
      padding-bottom: 20px;
      border-bottom: 1px solid #1e293b;
    }

    .logo-wrap {
      flex: 0 0 auto;
    }

    .title-wrap {
      flex: 1 1 320px;
      min-width: 280px;
    }

    h1 {
      margin: 0 0 8px 0;
      color: #60a5fa;
      font-size: 2rem;
      letter-spacing: 1px;
    }

    .subtitle {
      margin: 0;
      color: #9ca3af;
      font-size: 1rem;
      line-height: 1.5;
    }

    .terminal-line {
      margin-top: 12px;
      color: #86efac;
      font-size: 1rem;
      white-space: nowrap;
    }

    .cursor {
      display: inline-block;
      width: 10px;
      margin-left: 3px;
      color: #ef4444;
      animation: blink 1s step-end infinite;
    }
	

    @keyframes blink {
      0%, 50% {
        opacity: 1;
      }
      50.01%, 100% {
        opacity: 0;
      }
    }

    .panel {
      margin-top: 22px;
      padding: 20px;
      background-color: rgba(17, 24, 39, 0.88);
      border: 1px solid #23314f;
      border-radius: 10px;
    }

    .label {
      color: #93c5fd;
      font-weight: bold;
      margin-bottom: 8px;
    }

    #systemTime {
      font-size: 1.15rem;
      color: #f9fafb;
    }

    .flag-box {
      margin-top: 24px;
      padding: 18px;
      border: 1px dashed #60a5fa;
      border-radius: 8px;
      background-color: rgba(30, 41, 59, 0.6);
    }

    .flag-box strong {
      color: #93c5fd;
    }

    .notice {
      margin-top: 24px;
      padding: 16px;
      background-color: rgba(127, 29, 29, 0.16);
      border: 1px solid #7f1d1d;
      border-radius: 8px;
      color: #fecaca;
      line-height: 1.5;
    }

    .footer-note {
      margin-top: 26px;
      color: #6b7280;
      font-size: 0.95rem;
    }
	.footer-note a{
	 color:#555;
	 text-decoration:none;
	 
	}
.ghost-link {
  color: #0b1220;
  text-decoration: none;
  margin-left: 6px;
}

.ghost-link:hover,
.ghost-link:focus {
  color: #93c5fd;
}
    code {
      color: #86efac;
      background-color: rgba(15, 23, 42, 0.95);
      padding: 2px 6px;
      border-radius: 4px;
    }

    .logo-text {
      text-align: center;
      margin-top: 6px;
      color: #9ca3af;
      letter-spacing: 3px;
      font-size: 0.8rem;
    }

    .pulse-node {
      animation: pulseNode 2s ease-in-out infinite;
      transform-origin: center;
    }

    @keyframes pulseNode {
      0%, 100% {
        opacity: 1;
        transform: scale(1);
      }
      50% {
        opacity: 0.55;
        transform: scale(1.08);
      }
    }

    .scan-line {
      animation: scanMove 3s linear infinite;
    }

    @keyframes scanMove {
      0% {
        transform: translateY(-4px);
        opacity: 0.15;
      }
      50% {
        transform: translateY(4px);
        opacity: 0.45;
      }
      100% {
        transform: translateY(-4px);
        opacity: 0.15;
      }
    }
  