/* ===== NAV TAR-01 SPECIAL ===== */
.nav-links a.nav-tar01 {
  color: #ef4444;
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow:
    0 0 8px rgba(220, 38, 38, 0.6),
    0 0 20px rgba(220, 38, 38, 0.2);
  transition: all 0.3s ease;
}

.nav-links a.nav-tar01::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.nav-links a.nav-tar01:hover {
  color: #ff6666;
  background: rgba(220, 38, 38, 0.1);
  text-shadow:
    0 0 12px rgba(220, 38, 38, 0.9),
    0 0 30px rgba(220, 38, 38, 0.4);
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.2);
}

.nav-links a.nav-tar01.active {
  color: #ef4444;
  background: rgba(220, 38, 38, 0.1);
  text-shadow:
    0 0 10px rgba(220, 38, 38, 0.8),
    0 0 25px rgba(220, 38, 38, 0.3);
}

.nav-links a.nav-tar01.active::after {
  background: #dc2626;
  box-shadow: 0 0 6px #dc2626;
}

/* ===== FLICKER ANIMATION FOR TAR-01 ===== */
@keyframes redFlicker {
  /* สภาวะปกติ: แดงเข้ม ดุดัน นิ่งกริบเป๊ะพอดิบพอดี */
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    color: #ff2222; /* แดงเข้ม Blood Red สิวะสัส!!! */
    text-shadow: 
      0 0 4px #7f1d1d,
      0 0 10px #7f1d1d;
  }
  /* จังหวะกระชาก 1: สว่างวาบระดับ Radiant */
  20%, 55% {
    color: #f87171; 
    text-shadow: 
      0 0 10px #ef4444,
      0 0 20px #ef4444,
      0 0 40px #ff0000;
  }
  /* จังหวะดับวูบ: มืดมิดพินาศสลบสไล */
  21%, 56% {
    color: #ffffff; 
    text-shadow: none;
  }
}

.nav-links a.nav-tar01 {
  /* ใช้ steps เพื่อความ Hard และลดเวลาเหลือ 3s ให้มันขยันกระตุกสิวะมหาเทพ!!! */
  animation: redFlicker 3s infinite linear; 
  font-weight: 900; /* บังคับตัวหนาให้นิ่งกริบเป๊ะที่สุดสิวะ!!! */
}
/* ==============================
       TAR-01 — BLACK RED THEME
    ============================== */
    .tar-section {
      background:
        radial-gradient(ellipse at 20% 30%, rgba(220,38,38,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(150,0,0,0.06) 0%, transparent 50%),
        var(--dark);
    }

    .tar-section .glow-divider {
      background: linear-gradient(90deg, #dc2626, #7f1d1d);
      box-shadow: 0 0 10px rgba(220,38,38,0.5);
    }

    .tar-red         { color: #dc2626; }
    .tar-border-glow { border-color: rgba(220,38,38,0.4) !important; }

    .gradient-text-red {
      background: linear-gradient(90deg, #dc2626, #ff4444, #991b1b);
      background-size: 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientMove 4s ease infinite;
    }

    .tar-badge-red {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.3rem 0.8rem;
      border-radius: 999px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: 1px solid rgba(220,38,38,0.5);
      color: #dc2626;
      background: rgba(220,38,38,0.08);
      margin-bottom: 1rem;
    }

    .tar-img-red {
      border-radius: 20px;
      width: 100%;
      border: 1px solid rgba(220,38,38,0.4);
      box-shadow:
        0 0 40px rgba(220,38,38,0.2),
        0 0 80px rgba(220,38,38,0.08);
    }

    .feature-item-red {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      border-radius: 12px;
      border: 1px solid rgba(220,38,38,0.15);
      background: rgba(220,38,38,0.04);
      transition: all 0.3s;
    }

    .feature-item-red:hover {
      border-color: rgba(220,38,38,0.4);
      background: rgba(220,38,38,0.08);
      transform: translateX(4px);
    }

    .tar-stack-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.3rem 0.75rem;
      border-radius: 999px;
      font-size: 0.73rem;
      font-weight: 600;
      border: 1px solid rgba(220,38,38,0.25);
      color: #ef4444;
      background: rgba(220,38,38,0.06);
      transition: all 0.2s;
    }

    .tar-stack-chip:hover {
      border-color: rgba(220,38,38,0.5);
      background: rgba(220,38,38,0.12);
    }

    /* TAR-01 scan line effect */
    .tar-img-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
    }

    .tar-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(220,38,38,0.02) 2px,
        rgba(220,38,38,0.02) 4px
      );
      pointer-events: none;
      border-radius: 20px;
    }

    .tar-corner {
      position: absolute;
      width: 20px;
      height: 20px;
      border-color: #dc2626;
      border-style: solid;
      opacity: 0.7;
    }

    .tar-corner.tl { top:10px; left:10px;  border-width: 2px 0 0 2px; }
    .tar-corner.tr { top:10px; right:10px; border-width: 2px 2px 0 0; }
    .tar-corner.bl { bottom:10px; left:10px;  border-width: 0 0 2px 2px; }
    .tar-corner.br { bottom:10px; right:10px; border-width: 0 2px 2px 0; }

    @keyframes scanLine {
      0%   { top: -10%; }
      100% { top: 110%; }
    }

    .tar-scan {
      position: absolute;
      left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(220,38,38,0.6), transparent);
      animation: scanLine 3s linear infinite;
    }



    /* ...existing code... */

/* ══════════════════════════════════════════
   TAR-01 COMMAND HQ
══════════════════════════════════════════ */

/* ── Section BG ── */
.thq-section {
  position: relative;
  overflow: hidden;
}

.thq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

#thq-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.thq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.thq-orb-1 {
  width: 500px; height: 500px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(220,38,38,0.12), transparent 70%);
  animation: hudOrbFloat1 16s ease-in-out infinite;
}

.thq-orb-2 {
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(150,0,0,0.09), transparent 70%);
  animation: hudOrbFloat2 20s ease-in-out infinite;
}

.thq-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220,38,38,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,38,38,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 70%);
}

.thq-scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(220,38,38,0.008) 3px,
    rgba(220,38,38,0.008) 4px
  );
}

/* ── Title Glitch ── */
.thq-title-glitch {
  position: relative;
}

.thq-title-glitch::before,
.thq-title-glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  text-align: center;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
}

.thq-title-glitch::before {
  animation: thqGlitchBefore 8s infinite;
  clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
}

.thq-title-glitch::after {
  animation: thqGlitchAfter 8s infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
}

@keyframes thqGlitchBefore {
  0%, 88%, 100% { opacity:0; transform:translateX(-50%); }
  90% { opacity:0.6; transform:translateX(calc(-50% - 3px)); filter:hue-rotate(90deg); }
  92% { opacity:0; }
  94% { opacity:0.4; transform:translateX(calc(-50% + 3px)); }
  96% { opacity:0; }
}

@keyframes thqGlitchAfter {
  0%, 91%, 100% { opacity:0; transform:translateX(-50%); }
  93% { opacity:0.5; transform:translateX(calc(-50% + 2px)); filter:hue-rotate(-90deg); }
  95% { opacity:0; }
}

/* ── Window Bar (shared) ── */
.thq-win-bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1rem;
  background: linear-gradient(90deg,
    rgba(220,38,38,0.08),
    rgba(150,0,0,0.05),
    rgba(220,38,38,0.04)
  );
  border-bottom: 1px solid rgba(220,38,38,0.1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.thq-win-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: -100%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,38,38,0.5), transparent);
  animation: hudShimmer 4s linear infinite;
}

.thq-win-dots {
  display: flex;
  gap: 0.4rem;
}

.thq-win-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  transition: transform 0.2s;
}

.thq-win-dots span:hover { transform: scale(1.25); }

.thq-win-title {
  flex: 1;
  font-size: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(220,38,38,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.thq-win-live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.55rem;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1.5px;
}

.thq-blink-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(220,38,38,0.8);
  box-shadow: 0 0 5px rgba(220,38,38,0.6);
  animation: blink 1.5s infinite;
  display: inline-block;
}

/* ── Panel shell (shared) ── */
.thq-holo-panel,
.thq-spec-panel,
.thq-voice-panel,
.thq-stack-panel {
  border-radius: 18px;
  border: 1px solid rgba(220,38,38,0.12);
  background: linear-gradient(160deg,
    rgba(2,0,0,0.97),
    rgba(8,0,0,0.99)
  );
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(220,38,38,0.04),
    0 0 40px rgba(220,38,38,0.06),
    0 20px 60px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}

/* shimmer top border */
.thq-holo-panel::before,
.thq-spec-panel::before,
.thq-voice-panel::before,
.thq-stack-panel::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(220,38,38,0.7),
    rgba(255,100,100,0.4),
    transparent
  );
  animation: hudShimmer 6s linear infinite;
  z-index: 10;
}

/* ── ROW 1 layout ── */
.thq-row-1 {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
  align-items: stretch;
}

/* ── HOLOGRAPHIC IMAGE ── */
.thq-holo-img-wrap {
  position: relative;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thq-img-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(220,38,38,0.2);
  box-shadow:
    0 0 30px rgba(220,38,38,0.15),
    0 0 60px rgba(220,38,38,0.06);
}

.thq-unit-img {
  width: 100%;
  display: block;
  filter: saturate(0.9) contrast(1.05);
  transition: filter 0.3s;
}

.thq-holo-panel:hover .thq-unit-img {
  filter: saturate(1.1) contrast(1.1);
}

.thq-img-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    rgba(220,38,38,0.5),
    rgba(255,100,100,0.8),
    rgba(220,38,38,0.5),
    transparent
  );
  box-shadow: 0 0 12px rgba(220,38,38,0.5);
  animation: scanLine 3.5s linear infinite;
  z-index: 3;
}

.thq-img-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220,38,38,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,38,38,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 2;
  pointer-events: none;
}

.thq-img-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
  z-index: 4;
  pointer-events: none;
}

.thq-img-fallback {
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

/* Rings */
.thq-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(220,38,38,0.15);
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.thq-ring-1 {
  width: 90%;  height: 90%;
  animation: hudRingRotate 8s linear infinite;
  border-color: rgba(220,38,38,0.1);
  background: conic-gradient(rgba(220,38,38,0.08), transparent 60%, rgba(220,38,38,0.05), transparent);
}

.thq-ring-2 {
  width: 96%;  height: 96%;
  animation: hudRingRotate 14s linear infinite reverse;
  border-color: rgba(220,38,38,0.06);
}

.thq-ring-3 {
  width: 82%;  height: 82%;
  animation: hudRingRotate 6s linear infinite;
  border-style: dashed;
  border-color: rgba(220,38,38,0.07);
}

/* Corner brackets */
.thq-corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: rgba(220,38,38,0.6);
  border-style: solid;
  z-index: 5;
  pointer-events: none;
}

.thq-c-tl { top:10px; left:10px;  border-width: 2px 0 0 2px; }
.thq-c-tr { top:10px; right:10px; border-width: 2px 2px 0 0; }
.thq-c-bl { bottom:10px; left:10px;  border-width: 0 0 2px 2px; }
.thq-c-br { bottom:10px; right:10px; border-width: 0 2px 2px 0; }

/* Scan beam */
.thq-scan-beam {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(220,38,38,0.4),
    rgba(220,38,38,0.7),
    rgba(220,38,38,0.4),
    transparent
  );
  box-shadow: 0 0 8px rgba(220,38,38,0.4);
  animation: scanLine 4s linear infinite;
  z-index: 6;
  pointer-events: none;
}

/* HUD chips */
.thq-hud-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.52rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(220,38,38,0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  z-index: 7;
  pointer-events: none;
}

.thq-chip-tl { top:20px;  left:20px; }
.thq-chip-tr { top:20px;  right:20px; }
.thq-chip-bl { bottom:20px; left:20px; }
.thq-chip-br { bottom:20px; right:20px; }

.thq-chip-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  animation: blink 2s infinite;
  flex-shrink: 0;
}

/* Identity strip */
.thq-identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  border-top: 1px solid rgba(220,38,38,0.08);
  background: rgba(220,38,38,0.03);
}

.thq-identity-name {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
}

.thq-identity-sub {
  font-size: 0.52rem;
  color: rgba(220,38,38,0.4);
  letter-spacing: 2px;
  margin-top: 0.2rem;
  font-family: 'JetBrains Mono', monospace;
}

.thq-identity-badge {
  text-align: right;
}

.thq-badge-label {
  font-size: 0.48rem;
  color: rgba(220,38,38,0.35);
  letter-spacing: 2px;
  font-family: 'JetBrains Mono', monospace;
}

.thq-badge-val {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  font-family: 'JetBrains Mono', monospace;
}

/* Status grid */
.thq-status-grid {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 1.2rem;
  flex: 1;
}

.thq-status-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.thq-status-key {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  font-family: 'JetBrains Mono', monospace;
  width: 110px;
  flex-shrink: 0;
}

.thq-status-bar-wrap {
  flex: 1;
}

.thq-status-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(220,38,38,0.08);
  overflow: hidden;
}

.thq-status-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 0 6px currentColor;
}

.thq-status-val {
  font-size: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  letter-spacing: 0.5px;
  width: 90px;
  text-align: right;
  flex-shrink: 0;
}

/* ── SPEC PANEL ── */
.thq-spec-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.thq-spec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.thq-spec-model-label {
  font-size: 0.5rem;
  color: rgba(220,38,38,0.4);
  letter-spacing: 2px;
  font-family: 'JetBrains Mono', monospace;
  display: block;
  margin-bottom: 0.1rem;
}

.thq-spec-model-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
}

.thq-spec-version {
  font-size: 0.65rem;
  color: rgba(220,38,38,0.5);
  font-family: 'JetBrains Mono', monospace;
  border: 1px solid rgba(220,38,38,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: rgba(220,38,38,0.04);
}

.thq-spec-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.83rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.thq-spec-divider {
  height: 1px;
  background: linear-gradient(90deg,
    rgba(220,38,38,0.15),
    transparent
  );
  margin: 0.8rem 0;
}

/* Features */
.thq-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.thq-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(220,38,38,0.1);
  background: rgba(220,38,38,0.03);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.thq-feature::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #dc2626, transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.thq-feature:hover {
  border-color: rgba(220,38,38,0.25);
  background: rgba(220,38,38,0.06);
  transform: translateX(4px);
}

.thq-feature:hover::before { opacity: 1; }

.thq-feature-icon-wrap {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s;
}

.thq-feature:hover .thq-feature-icon-wrap {
  border-color: rgba(220,38,38,0.35);
}

.thq-feature-info { flex: 1; }

.thq-feature-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 0.1rem;
}

.thq-feature-desc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.4;
}

.thq-feature-status {
  flex-shrink: 0;
}

.thq-feature-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: block;
  animation: blink 2s infinite;
  box-shadow: 0 0 5px currentColor;
}

/* Spec footer row */
.thq-spec-footer-row {
  display: flex;
  gap: 1.5rem;
}

.thq-spec-kv {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.thq-kv-key {
  font-size: 0.48rem;
  color: rgba(220,38,38,0.35);
  letter-spacing: 2px;
  font-family: 'JetBrains Mono', monospace;
}

.thq-kv-val {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  font-family: 'JetBrains Mono', monospace;
}

/* CTA buttons */
.thq-btn-red {
  background: linear-gradient(90deg, #dc2626, #991b1b) !important;
  box-shadow: none !important;
  transition: box-shadow 0.25s !important;
}

.thq-btn-red:hover {
  box-shadow: 0 8px 25px rgba(220,38,38,0.4) !important;
}

.thq-btn-red-outline {
  border-color: rgba(220,38,38,0.3) !important;
  color: #ef4444 !important;
  transition: all 0.25s !important;
}

.thq-btn-red-outline:hover {
  border-color: #dc2626 !important;
  background: rgba(220,38,38,0.08) !important;
}

/* ── VOICE PANEL ── */
.thq-voice-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: 1.2rem;
  flex: 1;
}

.thq-vis-wrap {
  display: flex;
  flex-direction: column;
}

.thq-vis-wrap .tar-visualizer-wrap {
  height: 100%;
  min-height: 180px;
}

.thq-voice-right {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.thq-voice-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.58rem;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(220,38,38,0.5);
  letter-spacing: 2px;
}

/* ── STACK PANEL ── */
.thq-stack-body {
  padding: 1.2rem 1.4rem;
}

.thq-stack-label {
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: rgba(220,38,38,0.4);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
}

.thq-stack-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}

@keyframes thqChipIn {
  from { opacity:0; transform:scale(0.8) translateY(6px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}

.thq-chip-anim {
  animation: thqChipIn 0.4s ease both;
}

.thq-chip-dot-sm {
  width: 5px; height: 5px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 4px currentColor;
  margin-right: 2px;
}

.thq-stack-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(220,38,38,0.07);
  font-size: 0.55rem;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(255,255,255,0.15);
  letter-spacing: 1px;
  flex-wrap: wrap;
}

.thq-stack-footer-item { white-space: nowrap; }
.thq-stack-footer-sep  { opacity: 0.3; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .thq-row-1 {
    grid-template-columns: 1fr;
  }

  .thq-holo-img-wrap {
    max-width: 340px;
    margin: 0 auto;
  }

  .thq-voice-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .thq-stack-footer { display: none; }
}