.tnt-review-mecha{
  background: radial-gradient(circle at center, #001f2f, #000814);
  border: 2px solid #8d6811;
  border-radius: 14px;
  padding: 20px;
  color: #eaffff;
  font-family: 'Orbitron', sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px #8d6811, inset 0 0 20px rgba(0,255,255,0.2);
}

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

.tnt-header h2{
  font-size: 18px;
  color:#8d6811;
  text-shadow:0 0 10px #8d6811,0 0 20px #8d6811;
  margin-bottom:5px;
}

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

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

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

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

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

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

/* glowing border animation */
@keyframes pulseGlow{
  0%{box-shadow:0 0 10px #8d6811;}
  50%{box-shadow:0 0 25px #8d6811;}
  100%{box-shadow:0 0 10px #8d6811;}
}

.tnt-review-mecha{
  animation:pulseGlow 2.5s infinite;
}
