    @import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;700&display=swap');
    :root {
      --neon-text-color: #f40;
      --neon-border-color: #08f;
      --primary-text: #0f0;
      --secondary-text: #00ccff;
      --warning-text: #f40;
      --background-color: #000;
      --panel-bg: rgba(0, 30, 60, 0.7);
      --success-color: #0f0;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Fira Code', monospace; }
    body {
      background-color: var(--background-color);
      color: var(--primary-text);
      overflow-x: hidden;
      min-height: 100vh;
      background-image: 
        radial-gradient(circle at 50% 50%, rgba(0, 25, 50, 0.7) 0%, rgba(0, 0, 0, 1) 100%),
        repeating-linear-gradient(
          0deg,
          rgba(0, 255, 0, 0.05) 0px,
          rgba(0, 255, 0, 0.05) 1px,
          transparent 1px,
          transparent 30px
        ),
        repeating-linear-gradient(
          90deg,
          rgba(0, 255, 0, 0.05) 0px, 
          rgba(0, 255, 0, 0.05) 1px,
          transparent 1px,
          transparent 30px
        );
    }
    .container { max-width: 900px; margin: 0 auto; padding: 20px; }
    .main-title {
      text-align: center;
      margin: 20px 0;
      font-size: 32px;
      color: var(--secondary-text);
      text-shadow: 
        0 0 5px #00f,
        0 0 10px #00f,
        0 0 15px #0af,
        0 0 20px #0af;
      animation: pulse 2s infinite alternate;
    }
    @keyframes pulse {
      from { text-shadow: 0 0 5px #00f, 0 0 10px #00f, 0 0 15px #0af, 0 0 20px #0af; }
      to { text-shadow: 0 0 5px #00f, 0 0 10px #00f, 0 0 15px #0af, 0 0 20px #0af, 0 0 30px #0af; }
    }
    .panel {
      background-color: var(--panel-bg);
      border: 1px solid var(--neon-border-color);
      border-radius: 5px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 0 5px rgba(0, 136, 255, 0.5), inset 0 0 10px rgba(0, 0, 0, 0.8);
    }
    .panel-header {
      border-bottom: 1px solid var(--neon-border-color);
      padding-bottom: 10px;
      margin-bottom: 15px;
      display: flex;
      justify-content: space-between;
    }
    .panel-title {
      color: var(--secondary-text);
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .status-indicator {
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #f00;
      margin-right: 5px;
      box-shadow: 0 0 5px #f00;
      animation: blink 1s infinite alternate;
    }
    .status-active {
      background-color: var(--success-color);
      box-shadow: 0 0 5px var(--success-color);
    }
    @keyframes blink { from { opacity: 0.7; } to { opacity: 1; } }
    .form-group { margin-bottom: 15px; }
    .form-label { display: block; margin-bottom: 5px; color: var(--secondary-text); }
    .form-control {
      width: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      border: 1px solid var(--neon-border-color);
      color: var(--primary-text);
      padding: 10px;
      border-radius: 3px;
      font-size: 14px;
      transition: all 0.3s;
    }
    .form-control:focus { outline: none; box-shadow: 0 0 5px var(--neon-border-color); }
    select.form-control {
      appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg fill='green' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
      background-repeat: no-repeat;
      background-position: right 10px center;
    }
    .btn {
      background-color: transparent;
      color: var(--neon-text-color);
      border: 1px solid var(--neon-text-color);
      padding: 12px 20px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 3px;
      text-transform: uppercase;
      letter-spacing: 2px;
      transition: all 0.3s;
      display: block;
      width: 100%;
      text-align: center;
      box-shadow: 0 0 5px rgba(255, 68, 0, 0.5);
    }
    .btn:hover {
      background-color: rgba(255, 68, 0, 0.1);
      box-shadow: 0 0 5px rgba(255, 68, 0, 0.7), 0 0 10px rgba(255, 68, 0, 0.5);
    }
    .checkbox-wrapper { display: flex; align-items: center; margin: 15px 0; }
    .toggle {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 30px;
      margin-right: 10px;
    }
    .toggle input { opacity: 0; width: 0; height: 0; }
    .slider {
      position: absolute;
      cursor: pointer;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.7);
      border: 1px solid var(--neon-border-color);
      transition: .4s;
      border-radius: 30px;
    }
    .slider:before {
      position: absolute;
      content: "";
      height: 22px;
      width: 22px;
      left: 4px;
      bottom: 3px;
      background-color: var(--neon-border-color);
      transition: .4s;
      border-radius: 50%;
    }
    input:checked + .slider { background-color: rgba(0, 255, 0, 0.2); }
    input:checked + .slider:before { transform: translateX(30px); background-color: var(--success-color); }
    .terminal {
      background-color: rgba(0, 0, 0, 0.8);
      border: 1px solid var(--neon-border-color);
      padding: 15px;
      font-family: 'Fira Code', monospace;
      height: 300px;
      overflow-y: auto;
      margin-bottom: 20px;
      display: none;
    }
    .terminal.active { display: block; }
    .terminal-line { margin-bottom: 5px; line-height: 1.4; }
    .terminal-progress { margin: 10px 0; height: 3px; background-color: rgba(0, 255, 0, 0.2); position: relative; }
    .terminal-progress-bar {
      position: absolute;
      height: 100%;
      background-color: var(--success-color);
      width: 0%;
      transition: width 0.3s;
      box-shadow: 0 0 5px var(--success-color);
    }
    .terminal-header {
      color: var(--warning-text);
      text-shadow: 0 0 5px rgba(255, 68, 0, 0.5);
      margin-bottom: 10px;
      font-weight: bold;
    }
    .system-info {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 30px;
    }
    .system-info-item {
      padding: 10px;
      border: 1px solid var(--neon-border-color);
      background-color: rgba(0, 0, 0, 0.7);
      box-shadow: 0 0 5px rgba(0, 136, 255, 0.3);
    }
    .info-label { color: var(--secondary-text); margin-bottom: 5px; font-size: 12px; }
    .info-value { font-size: 14px; }
    .warning {
      color: var(--warning-text);
      padding: 10px;
      border: 1px solid var(--warning-text);
      margin: 20px 0;
      text-align: center;
      animation: warning-flash 2s infinite alternate;
    }
    @keyframes warning-flash {
      from { box-shadow: inset 0 0 5px rgba(255, 68, 0, 0.3); }
      to { box-shadow: inset 0 0 15px rgba(255, 68, 0, 0.5); }
    }
    .verification-panel { display: none; text-align: center; padding: 20px; }
    .verification-panel.active { display: block; }
    .verification-header {
      color: var(--warning-text);
      font-size: 24px;
      margin-bottom: 20px;
      text-shadow: 0 0 5px rgba(255, 68, 0, 0.5);
    }
    .recent-activity { margin-top: 30px; }
    .activity-header {
      display: flex;
      justify-content: space-between;
      padding: 10px;
      border-bottom: 1px solid var(--neon-border-color);
    }
    .activity-row {
      display: flex;
      align-items: center;
      padding: 10px;
      border-bottom: 1px solid rgba(0, 136, 255, 0.3);
      font-size: 1em;
      color: #0f0;
      background: rgba(0, 0, 0, 0.5);
    }
    .flag { width: 24px; height: 16px; margin-right: 10px; }
    .username { color: var(--secondary-text); margin-right: 10px; }
    .activity-amount { color: var(--success-color); margin-right: 10px; }
    .activity-time {
      color: rgba(255, 255, 255, 0.5);
      font-size: 12px;
      margin-left: auto;
    }
    .logo-container { text-align: center; margin: 20px 0; animation: flicker 5s infinite alternate; }
    @keyframes flicker {
      0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% { opacity: 1; }
      20%, 21.999%, 63%, 63.999%, 65%, 69.999% { opacity: 0.8; }
    }
    .hidden { display: none; }
    .matrix-bg {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: -1;
      opacity: 0.15;
      pointer-events: none;
    }
    @media (max-width: 768px) {
      .system-info { grid-template-columns: 1fr; }
      .main-title { font-size: 24px; }
    }
    .loading-dots {
    display: inline-block;
    margin-left: 8px;
    }
    .loading-dots .dot {
    display: inline-block;
    font-size: 18px;
    opacity: 0.5;
    animation: blinkDot 1.2s infinite;
    }
    .loading-dots .dot:nth-child(2) { animation-delay: 0.2s; }
    .loading-dots .dot:nth-child(3) { animation-delay: 0.4s; }
    @keyframes blinkDot {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
    }