.cybertool-songword {
  --neon-cyan: #00f3ff;
  --cyber-purple: #7028e4;
  --matrix-green: #00ff9d;
  --cyber-black: #0a0a12;
  --glass-bg: rgba(15, 15, 30, 0.65);

  position: relative;
  background: radial-gradient(circle at top, #121225, var(--cyber-black));
  color: #eaeaff;
  font-family: "Courier New", monospace;
  overflow: hidden;
}

.cybertool-songword__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cybertool-songword__container {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  padding: 20px;
}

@media (max-width: 600px) {
  .cybertool-songword__container {
    flex-direction: column;
  }
}

.cybertool-songword__panel {
  flex: 1;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(0, 243, 255, 0.25);
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.15);
}

.cybertool-songword__title {
  margin-bottom: 16px;
  background: linear-gradient(45deg, var(--cyber-purple), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cybertool-songword__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cybertool-songword__input {
  height: 44px;
  padding: 0 10px;
  border-radius: 8px;
  border: none;
  background: #0f1020;
  color: var(--matrix-green);
}

.cybertool-songword__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.cybertool-songword__btn {
  height: 44px;
  flex: 1;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--cyber-purple), var(--neon-cyan));
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cybertool-songword__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 16px var(--neon-cyan);
}

.cybertool-songword__output {
  min-height: 120px;
  padding: 12px;
  border-radius: 10px;
  background: #0d0e1a;
  color: var(--matrix-green);
  line-height: 1.6;
  margin-bottom: 16px;
}
