/* ============================================================
   JARVIS v4.0 — Iron Man MCU HUD Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --cyan:       #00d4ff;
  --cyan-dim:   #00aacc;
  --cyan-glow:  rgba(0, 212, 255, 0.2);
  --red:        #ff2d2d;
  --red-dim:    #aa1111;
  --gold:       #f5a623;
  --bg:         #020810;
  --bg-panel:   rgba(0, 20, 40, 0.88);
  --text:       #ffffff;
  --text-dim:   #7ab8d4;
  --border:     rgba(0, 212, 255, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Share Tech Mono', monospace;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Scan line overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  pointer-events: none;
  z-index: 1000;
}

/* Radial background glow */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 60, 100, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Canvas (arc reactor) ───────────────────────────────── */
#reactor-canvas {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
}

/* === Arc Reactor CSS Animation === */
.arc-reactor {
  position: relative;
  width: 280px;
  height: 280px;
}

.arc-reactor .core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 20%, #00ffff 50%, #00d4ff 80%, #003344 100%);
  box-shadow:
    0 0 40px #00ffff,
    0 0 80px #00d4ff,
    0 0 120px #00d4ff,
    0 0 180px #00ffff,
    0 0 250px rgba(0, 255, 255, 0.5),
    0 0 350px rgba(0, 212, 255, 0.3);
  animation: core-pulse 2s ease-in-out infinite;
}

.arc-reactor .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid transparent;
}

.arc-reactor .ring-1 {
  width: 80px;
  height: 80px;
  border-color: rgba(0, 212, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5), inset 0 0 10px rgba(0, 212, 255, 0.2);
}

.arc-reactor .ring-2 {
  width: 130px;
  height: 130px;
  border-color: rgba(0, 212, 255, 0.6);
  border-style: dashed;
  border-width: 4px;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
  animation: ring-spin 15s linear infinite reverse;
}

.arc-reactor .ring-3 {
  width: 180px;
  height: 180px;
  border-color: rgba(0, 212, 255, 0.4);
  border-style: dashed;
  border-width: 5px;
  box-shadow: 0 0 6px rgba(0, 212, 255, 0.3);
  animation: ring-spin 10s linear infinite;
}

.arc-reactor .ring-4 {
  width: 230px;
  height: 230px;
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 0 4px rgba(0, 212, 255, 0.2);
}

.arc-reactor .dashes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  animation: ring-spin 12s linear infinite reverse;
}

.arc-reactor .dash {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 12px;
  background: #00d4ff;
  box-shadow: 0 0 6px #00d4ff;
  transform-origin: 50% 0;
}

.arc-reactor .dashes .dash:nth-child(1)  { transform: rotate(0deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(2)  { transform: rotate(20deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(3)  { transform: rotate(40deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(4)  { transform: rotate(60deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(5)  { transform: rotate(80deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(6)  { transform: rotate(100deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(7)  { transform: rotate(120deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(8)  { transform: rotate(140deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(9)  { transform: rotate(160deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(10) { transform: rotate(180deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(11) { transform: rotate(200deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(12) { transform: rotate(220deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(13) { transform: rotate(240deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(14) { transform: rotate(260deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(15) { transform: rotate(280deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(16) { transform: rotate(300deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(17) { transform: rotate(320deg) translateY(-89px); }
.arc-reactor .dashes .dash:nth-child(18) { transform: rotate(340deg) translateY(-89px); }

@keyframes core-pulse {
  0%, 100% {
    box-shadow:
      0 0 40px #00ffff,
      0 0 80px #00d4ff,
      0 0 120px #00d4ff,
      0 0 180px #00ffff,
      0 0 250px rgba(0, 255, 255, 0.5),
      0 0 350px rgba(0, 212, 255, 0.3);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow:
      0 0 60px #00ffff,
      0 0 100px #00ffff,
      0 0 160px #00d4ff,
      0 0 240px #00ffff,
      0 0 320px rgba(0, 255, 255, 0.7),
      0 0 450px rgba(0, 212, 255, 0.5);
    transform: translate(-50%, -50%) scale(1.15);
  }
}

@keyframes ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── HUD corner brackets ────────────────────────────────── */
.hud-corner {
  position: fixed;
  width: 60px;
  height: 60px;
  z-index: 10;
  opacity: 0.7;
}
.hud-corner::before,
.hud-corner::after {
  content: '';
  position: absolute;
  background: var(--cyan);
}
.hud-corner::before { width: 100%; height: 2px; }
.hud-corner::after  { width: 2px; height: 100%; }

.hud-corner.tl { top: 16px; left: 16px; }
.hud-corner.tr { top: 16px; right: 16px; transform: scaleX(-1); }
.hud-corner.bl { bottom: 16px; left: 16px; transform: scaleY(-1); }
.hud-corner.br { bottom: 16px; right: 16px; transform: scale(-1); }

/* ── Top status bar ─────────────────────────────────────── */
#top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  background: linear-gradient(180deg, rgba(0,212,255,0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.top-bar-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan);
}

.top-bar-stats {
  display: flex;
  gap: 32px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 2px;
}

.stat-item span { color: var(--cyan); margin-left: 6px; }

#mic-status { color: var(--cyan); }
#mic-status.muted { color: #ff4444; }

#disk-stat { color: var(--cyan); }
#disk-stat.muted { color: #ff4444; }

.logout-btn {
  background: transparent;
  color: #ff6b6b;
  border: 1px solid #8b2020;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
}
.logout-btn:hover {
  background: rgba(255, 68, 68, 0.15);
  border-color: #ff4444;
  color: #ff8888;
  text-shadow: 0 0 8px rgba(255, 68, 68, 0.5);
}

/* ── Bottom status bar ──────────────────────────────────── */
#bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  background: linear-gradient(0deg, rgba(0,212,255,0.08) 0%, transparent 100%);
  border-top: 1px solid var(--border);
  z-index: 20;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 2px;
}

.bottom-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  margin-right: 8px;
  animation: pulse-dot 2s infinite;
}
.status-dot.offline { background: var(--red); box-shadow: 0 0 6px var(--red); }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ── Side panels ────────────────────────────────────────── */
.side-panel {
  position: fixed;
  top: 80px;
  bottom: 60px;
  width: 220px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
}
.side-panel.left  { left: 0; }
.side-panel.right { right: 0; }

.panel-block {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 12px;
  position: relative;
}
.panel-block::before {
  content: attr(data-label);
  position: absolute;
  top: -8px;
  left: 10px;
  background: var(--bg);
  padding: 0 6px;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--cyan-dim);
}

.panel-block h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--cyan-dim);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 10px;
  color: var(--text-dim);
}
.bar-row span:first-child { width: 30px; }
.bar-track {
  flex: 1;
  height: 3px;
  background: rgba(0,212,255,0.1);
  border: 1px solid var(--border);
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-dim), var(--cyan));
  box-shadow: 0 0 4px var(--cyan);
  transition: width 1s ease;
}
.bar-fill.hot { background: linear-gradient(90deg, var(--red-dim), var(--red)); box-shadow: 0 0 4px var(--red); }

.phase-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  margin-bottom: 6px;
  color: var(--text-dim);
}
.phase-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--text-dim);
  flex-shrink: 0;
}
.phase-dot.active { background: var(--cyan); border-color: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.phase-dot.done   { background: var(--gold); border-color: var(--gold); }

/* ── Main chat area ─────────────────────────────────────── */
#main {
  position: fixed;
  top: 48px;
  bottom: 40px;
  left: 220px;
  right: 220px;
  display: flex;
  flex-direction: column;
  z-index: 10;
  padding: 16px;
}

#chat-window {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan-dim) transparent;
}
#chat-window::-webkit-scrollbar { width: 4px; }
#chat-window::-webkit-scrollbar-thumb { background: var(--cyan-dim); }

/* Message bubbles */
.message {
  max-width: 85%;
  animation: msg-in 0.3s ease;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.message.user  { align-self: flex-end; }
.message.jarvis { align-self: flex-start; }
.message.system { align-self: center; max-width: 100%; }

.message-label {
  font-size: 9px;
  letter-spacing: 3px;
  margin-bottom: 4px;
  color: var(--text-dim);
}
.message.user .message-label  { text-align: right; color: var(--gold); }
.message.jarvis .message-label { color: var(--cyan-dim); }

.message-body {
  padding: 12px 16px;
  border: 1px solid;
  line-height: 1.7;
  font-size: 15px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  position: relative;
}
.message.user .message-body {
  border-color: rgba(245,166,35,0.5);
  background: rgba(245,166,35,0.08);
  color: #ffd080;
}
.message.jarvis .message-body {
  border-color: var(--border);
  background: var(--bg-panel);
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.15);
}
.message.system .message-body {
  border-color: rgba(0,212,255,0.2);
  background: rgba(0,212,255,0.05);
  color: var(--cyan-dim);
  font-size: 11px;
  letter-spacing: 1px;
  text-align: center;
}

/* Thinking indicator */
#thinking {
  align-self: flex-start;
  display: none;
  padding: 10px 16px;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  color: var(--cyan-dim);
  font-size: 11px;
  letter-spacing: 2px;
}
#thinking.visible { display: flex; gap: 6px; align-items: center; }

.think-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  animation: think-bounce 1.2s infinite;
}
.think-dot:nth-child(2) { animation-delay: 0.2s; }
.think-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes think-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* ── Input area ─────────────────────────────────────────── */
#input-area {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 12px 0 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

#msg-input {
  flex: 1;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  letter-spacing: 0.5px;
}
#msg-input:focus { border-color: var(--cyan); box-shadow: 0 0 12px var(--cyan-glow); }
#msg-input::placeholder { color: var(--text-dim); letter-spacing: 1px; }

.hud-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  white-space: nowrap;
}

#image-btn {
  padding: 12px 14px;
  min-width: 100px;
}
.hud-btn:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}
.hud-btn:active { transform: scale(0.97); }

#mute-btn {
  border-color: var(--cyan);
  color: var(--cyan);
  font-weight: 700;
}
#mute-btn:hover {
  background: var(--cyan-glow);
  box-shadow: 0 0 12px var(--cyan-glow);
}
#mute-btn.muted {
  border-color: #ff4444;
  color: #ff4444;
  box-shadow: 0 0 12px rgba(255, 68, 68, 0.3);
}

.hud-btn.voice {
  border-color: var(--red-dim);
  color: var(--red);
  opacity: 0.5;
  cursor: not-allowed;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  display: grid;
  place-items: center;
  padding: 10px;
  box-sizing: border-box;
  height: 80px;
  width: 80px;
  white-space: normal;
  border-radius: 50%;
}
.hud-btn.voice.active {
  opacity: 1;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255,45,45,0.3);
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  display: grid;
  place-items: center;
  padding: 10px;
  box-sizing: border-box;
  height: 80px;
  width: 80px;
  white-space: normal;
  border-radius: 50%;
}

/* ── Legacy JavaScript DOM IDs ──────────────────────────────── */
#transcript {
  font-size: 1.5rem;
  margin: 2rem 0;
  min-height: 4rem;
  padding: 1rem 2rem;
  border-left: 3px solid var(--cyan);
  text-align: left;
  background: rgba(0,212,255,0.05);
}

#response {
  font-size: 1.2rem;
  margin: 1.5rem 0;
  padding: 1rem 2rem;
  border: 1px solid var(--border);
  text-align: left;
  min-height: 5rem;
  background: rgba(0,212,255,0.02);
}

#mic-btn {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  border-radius: 50%;
  border: 3px solid var(--cyan);
  background: transparent;
  color: var(--cyan) !important;
  font-size: 0.55rem !important;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 2px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2 !important;
}

#mic-btn:hover {
  background: rgba(0,212,255,0.2);
  box-shadow: 0 0 30px var(--cyan);
}

#mic-btn.listening {
  background: var(--cyan);
  color: #000;
  animation: mic-pulse 1s infinite;
}

@keyframes mic-pulse {
  0% { box-shadow: 0 0 20px var(--cyan); }
  50% { box-shadow: 0 0 60px var(--cyan), 0 0 80px var(--cyan); }
  100% { box-shadow: 0 0 20px var(--cyan); }
}

#login-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

#login-form input {
  background: rgba(0,0,0,0.9);
  border: 2px solid var(--cyan);
  color: var(--cyan);
  font-family: monospace;
  font-size: 1rem;
  padding: 0.875rem 1.25rem;
  width: 16rem;
  outline: none;
  text-align: center;
}

#login-form button {
  background: var(--cyan);
  border: 2px solid var(--cyan);
  color: #000;
  cursor: pointer;
  font-family: monospace;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

#login-form button:hover {
  background: transparent;
  color: var(--cyan);
}

/* ── Utility classes ─────────────────────────────────── */
.hidden { display: none !important; }

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  height: 2rem;
  margin-top: 1.5rem;
}

.waveform span {
  width: 4px;
  height: 20px;
  background: var(--cyan);
  animation: wave 1s ease-in-out infinite;
}

.waveform span:nth-child(2) { animation-delay: 0.1s; }
.waveform span:nth-child(3) { animation-delay: 0.2s; }
.waveform span:nth-child(4) { animation-delay: 0.3s; }
.waveform span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
  0%, 100% { height: 10px; }
  50% { height: 30px; }
}

/* ── Image Preview ───────────────────────────────────────── */
#image-preview {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 8px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-height: 200px !important;
  overflow: hidden;
  z-index: 12;
  position: relative;
  width: fit-content;
}
#image-preview.hidden { display: none; }
.image-preview-label {
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--cyan-dim);
  text-transform: uppercase;
}

#system-console {
  width: 100%;
  height: 150px;
  overflow-y: auto;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: var(--cyan);
  background: transparent;
  padding: 4px 0;
  line-height: 1.5;
  opacity: 0.7;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan-dim) transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#system-console::-webkit-scrollbar { width: 3px; }
#system-console::-webkit-scrollbar-thumb { background: var(--cyan-dim); }
#system-console:not(.hidden) { display: flex; }

.telemetry-line {
  color: var(--cyan);
  font-size: 9px;
  line-height: 1.4;
  padding: 2px 0;
  border-left: 1px solid var(--border);
  padding-left: 4px;
  margin: 2px 0;
}

.panel-header {
  font-family: 'Orbitron', sans-serif;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--cyan-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px dashed var(--border);
}

#preview-img {
  max-width: 100%;
  max-height: 100% !important;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--border);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .side-panel { display: none; }
  #main { left: 16px; right: 16px; }
}

@media (max-width: 600px) {
  #input-area {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  #mic-btn {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
    font-size: 0.5rem !important;
  }
  #image-btn {
    padding: 10px 12px;
    min-width: 80px;
    font-size: 9px;
  }
  .logout-btn {
    padding: 4px 8px;
    font-size: 9px;
  }
  #image-preview {
    max-height: 150px;
  }
  #preview-img {
    max-height: 100px;
  }
}

/* HIGH-INTENSITY HUD LINKS */
#chat-window a, .message-body a, .message.system a {
    color: #00ffff !important; 
    text-decoration: underline !important;
    font-weight: 700 !important;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    font-size: 12px;
}
#chat-window a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 12px #00ffff;
}

/* ULTRA-CONTRAST DOWNLOAD LINKS */
a[href*="/downloads/"] {
    color: #00ffff !important;
    border: 2px solid #00ffff !important;
    font-weight: 900 !important;
    padding: 4px 12px;
    text-decoration: none !important;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6), inset 0 0 8px rgba(0, 255, 255, 0.2);
    background: rgba(0, 212, 255, 0.15);
}
a[href*="/downloads/"]:hover {
    background: #00ffff !important;
    color: #000000 !important;
    box-shadow: 0 0 20px #00ffff;
}
