.tnt-review-mecha {
  background: radial-gradient(circle at center, #020617, #000);
  border: 2px solid rgba(0, 170, 255, 0.6);
  border-radius: 14px;
  padding: 20px;
  color: #eaffff;
  font-family: 'Orbitron', sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 25px rgba(0, 170, 255, 0.5),
    inset 0 0 20px rgba(0, 120, 255, 0.2);
  animation: tntPulseGlow 2.8s infinite;
}

.tnt-review-mecha::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 180, 255, 0.06),
    rgba(0, 180, 255, 0.06) 1px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
}

.tnt-header h2 {
  font-size: 18px;
  color: #6fd6ff;
  text-shadow: 0 0 10px #00bfff, 0 0 20px #007bff;
  margin-bottom: 5px;
}

.tnt-header p {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 15px;
  color: #bfe9ff;
}

.tnt-slider {
  position: relative;
  height: 90px;
}

.tnt-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease;
}

.tnt-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.tnt-name {
  font-size: 14px;
  color: #00bfff;
  margin-bottom: 5px;
  text-shadow: 0 0 6px #00bfff;
}

.tnt-comment {
  font-size: 13px;
  line-height: 1.5;
  color: #d9f4ff;
}

@keyframes tntPulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
  }

  50% {
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.7);
  }

  100% {
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
  }
}
