.tools-parent-container {
  /* Concert Room */
}

.tools-parent-container .concert-room {
  width: 100%;
  height: auto;
  background: radial-gradient(ellipse at top, #1a1a2e 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  transition: background 1s ease;
}

.tools-parent-container {
  /* Theme Variations */
}

.tools-parent-container .concert-room.neon-theme {
  background: radial-gradient(ellipse at top, #2d1b69 0%, #0f0f0f 100%);
}

.tools-parent-container .concert-room.fire-theme {
  background: radial-gradient(ellipse at top, #4a1a1a 0%, #1a0000 100%);
}

.tools-parent-container .concert-room.ocean-theme {
  background: radial-gradient(ellipse at top, #1a3a4a 0%, #0a1a2a 100%);
}

.tools-parent-container {
  /* Lighting Controls */
}

.tools-parent-container .lighting-controls {
  position: static;
  top: 20px;
  left: 20px;
  display: inline-flex;
  gap: 10px;
  z-index: 100;
}

.tools-parent-container .light-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  font-weight: bold;
}

.tools-parent-container .light-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.tools-parent-container {
  /* Recording Panel */
}

.tools-parent-container .recording-panel {
  position: static;
  top: 20px;
  right: 20px;
  display: inline-flex;
  gap: 15px;
  align-items: center;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.tools-parent-container .record-btn,
.tools-parent-container .play-btn,
.tools-parent-container .download-btn {
  padding: 10px 20px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border: none;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tools-parent-container .rec-dot {
  width: 12px;
  height: 12px;
  background: #ff0000;
  border-radius: 50%;
  display: inline-block;
}

.tools-parent-container .record-btn.recording .rec-dot {
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.tools-parent-container .timer {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  min-width: 60px;
}

.tools-parent-container {
  /* 3D Stage */
}

.tools-parent-container .stage-3d {
  width: 100%;
  height: auto;
  perspective: 1200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.tools-parent-container {
  /* Stage Lights */
}

.tools-parent-container .stage-lights {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tools-parent-container .spotlight {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(50px);
  animation: pulse-light 4s infinite alternate;
}

.tools-parent-container .spotlight-1 {
  background: radial-gradient(circle, var(--light-color-1), transparent);
  top: -100px;
  left: 10%;
}

.tools-parent-container .spotlight-2 {
  background: radial-gradient(circle, var(--light-color-2), transparent);
  top: -100px;
  right: 10%;
}

.tools-parent-container .spotlight-3 {
  background: radial-gradient(circle, #ffd700, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes pulse-light {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }

  100% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.tools-parent-container {
  /* Drum Kit Container */
}

.tools-parent-container .drum-kit-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 600px;
  transform-style: preserve-3d;
  transform: rotateX(20deg) rotateY(0deg);
  margin: 0 auto;
}

.tools-parent-container {
  /* Drum Kit Layout */
}

.tools-parent-container .drum-kit {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.tools-parent-container {
  /* Drum Components Base Style - ENHANCED CLICKABILITY */
}

.tools-parent-container .drum-component {
  position: absolute !important;
  cursor: pointer;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
  /* Only visual transitions */
  transform-style: preserve-3d;
  border-radius: 10px;
  padding: 5px;
  margin: -5px;
}

.tools-parent-container .drum-component * {
  pointer-events: none;
}

.tools-parent-container .kick-drum,
.tools-parent-container .snare-drum,
.tools-parent-container .hihat,
.tools-parent-container .tom1,
.tools-parent-container .tom2,
.tools-parent-container .crash1,
.tools-parent-container .crash2,
.tools-parent-container .ride,
.tools-parent-container .bell,
.tools-parent-container .open-hat {
  transform-origin: center center;
}

.tools-parent-container {
  /* Kick Drum - CENTER BOTTOM */
}

.tools-parent-container .kick-drum {
  width: 180px;
  height: 180px;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.tools-parent-container {
  /* Snare Drum - LEFT OF KICK */
}

.tools-parent-container .snare-drum {
  width: 130px;
  height: 130px;
  bottom: 150px;
  left: 35%;
  transform: translateX(-50%);
  z-index: 11;
}

.tools-parent-container {
  /* Hi-Hat - FAR LEFT */
}

.tools-parent-container .hihat {
  width: 110px;
  height: 100px;
  bottom: 180px;
  left: 18%;
  transform: translateX(-50%);
  z-index: 12;
}

.tools-parent-container {
  /* Tom 1 - CENTER TOP LEFT */
}

.tools-parent-container .tom1 {
  width: 110px;
  height: 110px;
  top: 140px;
  left: 38%;
  transform: translateX(-50%) translateZ(50px);
  z-index: 8;
}

.tools-parent-container {
  /* Tom 2 - CENTER TOP RIGHT */
}

.tools-parent-container .tom2 {
  width: 120px;
  height: 120px;
  top: 140px;
  right: 32%;
  transform: translateX(50%) translateZ(50px);
  z-index: 8;
}

.tools-parent-container {
  /* Crash Cymbal 1 - TOP LEFT */
}

.tools-parent-container .crash1 {
  width: 140px;
  height: 140px;
  top: 80px;
  left: 15%;
  transform: translateX(-50%) rotateX(-30deg) translateZ(100px);
  z-index: 15;
}

.tools-parent-container {
  /* Crash Cymbal 2 - TOP RIGHT */
}

.tools-parent-container .crash2 {
  width: 140px;
  height: 140px;
  top: 80px;
  right: 10%;
  transform: translateX(50%) rotateX(-30deg) translateZ(100px);
  z-index: 15;
}

.tools-parent-container {
  /* Ride Cymbal - RIGHT SIDE */
}

.tools-parent-container .ride {
  width: 160px;
  height: 160px;
  top: 120px;
  right: 22%;
  transform: translateX(50%) rotateX(-25deg) translateZ(80px);
  z-index: 14;
}

.tools-parent-container {
  /* Bell - FRONT RIGHT */
}

.tools-parent-container .bell {
  width: 80px;
  height: 80px;
  bottom: 200px;
  right: 28%;
  transform: translateX(50%);
  z-index: 13;
}

.tools-parent-container {
  /* Open Hat - FAR RIGHT */
}

.tools-parent-container .open-hat {
  width: 100px;
  height: 80px;
  bottom: 180px;
  right: 12%;
  transform: translateX(50%);
  z-index: 12;
}

.tools-parent-container {
  /* ENHANCED 3D DRUM BODIES */
  /* Kick Drum Body */
}

.tools-parent-container .kick-drum .drum-body {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #8b4513, #3a1f0f);
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 -10px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: translateZ(20px);
}

.tools-parent-container {
  /* Snare Drum Body */
}

.tools-parent-container .snare-drum .drum-body {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #e0e0e0, #909090);
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 -5px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  border: 3px solid #666;
}

.tools-parent-container {
  /* Drum Skin - Common for all drums */
}

.tools-parent-container .drum-skin {
  position: absolute;
  top: 5%;
  left: 5%;
  right: 5%;
  bottom: 5%;
  background: radial-gradient(circle at 30% 30%, #f5f5dc, #daa520);
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3), inset -5px -5px 15px rgba(0, 0, 0, 0.2);
}

.tools-parent-container {
  /* Tom Drum Bodies */
}

.tools-parent-container .tom .drum-body {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #cd853f, #6b4423);
  border-radius: 50%;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6), inset 0 -8px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: translateZ(15px);
}

.tools-parent-container {
  /* Hi-Hat Specific */
}

.tools-parent-container .hihat {
  position: relative;
}

.tools-parent-container .hihat .cymbal-top {
  position: absolute;
  width: 100%;
  height: 20px;
  background: linear-gradient(90deg, #fff9e6, #ffd700, #fff9e6);
  border-radius: 50%;
  box-shadow: 0 -5px 15px rgba(255, 215, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.3);
  top: 20px;
  transform: translateZ(30px);
}

.tools-parent-container .hihat .cymbal-bottom {
  position: absolute;
  width: 100%;
  height: 20px;
  background: linear-gradient(90deg, #fff9e6, #ffd700, #fff9e6);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.3);
  bottom: 20px;
  transform: translateZ(10px);
}

.tools-parent-container {
  /* Open Hat */
}

.tools-parent-container .open-hat .cymbal-top {
  position: absolute;
  width: 100%;
  height: 25px;
  background: linear-gradient(90deg, #fff9e6, #ffd700, #fff9e6);
  border-radius: 50%;
  box-shadow: 0 -5px 20px rgba(255, 215, 0, 0.7), 0 3px 12px rgba(0, 0, 0, 0.4);
  top: 15px;
  transform: translateZ(40px) rotateX(-10deg);
}

.tools-parent-container {
  /* Enhanced Cymbals */
}

.tools-parent-container .cymbal {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #fff9e6 0%, #ffd700 40%, #b8860b 100%);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.7), 0 10px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  border: 2px solid #d4af37;
}

.tools-parent-container {
  /* Cymbal Center Bell */
}

.tools-parent-container .cymbal::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  height: 25%;
  background: radial-gradient(circle, #8b7355, #5c4a3b);
  border-radius: 50%;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(255, 255, 255, 0.3);
}

.tools-parent-container {
  /* Bell Special Style */
}

.tools-parent-container .bell-body {
  width: 100%;
  height: 100%;
  font-size: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.5));
  animation: bell-shine 3s infinite;
}

@keyframes bell-shine {

  0%,
  100% {
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.5));
  }

  50% {
    filter: drop-shadow(0 5px 25px rgba(255, 215, 0, 0.8));
  }
}

.tools-parent-container {
  /* Drum Labels - Enhanced */
}

.tools-parent-container .drum-label {
  position: absolute;
  top: -15px;
  bottom: auto !important;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 10px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  pointer-events: none;
}

.tools-parent-container {
  /* ENHANCED HOVER AND INTERACTION EFFECTS */
}

.tools-parent-container .drum-component:hover {
  filter: brightness(1.3) drop-shadow(0 10px 20px rgba(255, 255, 255, 0.3));
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.tools-parent-container .drum-component:hover .drum-label {
  background: rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  color: #000;
  font-weight: bold;
}

.tools-parent-container {
  /* Active/Playing States - ENHANCED */
}

.tools-parent-container .drum-component:active,
.tools-parent-container .drum-component.playing {
  filter: brightness(1.8) saturate(1.8);
  box-shadow: 0 0 40px rgb(255, 255, 255), inset 0 0 15px rgba(255, 255, 255, 0.5);
}

.tools-parent-container {
  /* Shake Animation - ENHANCED */
}

.tools-parent-container .drum-component.shake {
  animation: none;
}

.tools-parent-container {
  /* Hit Effect - ENHANCED */
}

.tools-parent-container .hit-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 215, 0, 0.5), transparent);
  animation: enhanced-hit-ripple 0.6s ease-out;
  pointer-events: none;
  z-index: 1000;
}

@keyframes enhanced-hit-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

.tools-parent-container {
  /* Sound Wave - ENHANCED */
}

.tools-parent-container .sound-wave {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: enhanced-sound-wave 1s ease-out;
  pointer-events: none;
  z-index: 999;
}

.tools-parent-container .sound-wave::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  border: 2px solid rgba(255, 215, 0, 0.6);
  border-radius: 50%;
  animation: enhanced-sound-wave 1s ease-out 0.2s;
}

@keyframes enhanced-sound-wave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

.tools-parent-container {
  /* Effects Container */
}

.tools-parent-container .effects-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 500;
}

.tools-parent-container {
  /* Stage Shadow Effect */
}

.tools-parent-container .drum-kit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4), transparent);
  transform: translateZ(-50px);
  filter: blur(30px);
}

.tools-parent-container {
  /* Audience */
}

.tools-parent-container .audience {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 50;
}

.tools-parent-container .audience-emoji {
  font-size: 2rem;
  animation: audience-idle 2s infinite ease-in-out;
}

.tools-parent-container .audience-emoji:nth-child(2) {
  animation-delay: 0.5s;
}

.tools-parent-container .audience-emoji:nth-child(3) {
  animation-delay: 1s;
}

.tools-parent-container .audience-emoji:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes audience-idle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes audience-cheer {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.2);
  }
}

.tools-parent-container .drum-component:active {
  filter: brightness(1.8) saturate(1.8);
  box-shadow: 0 0 40px rgb(255, 255, 255), inset 0 0 15px rgba(255, 255, 255, 0.5);
}

.tools-parent-container {
  /* Bottom Controls */
}

.tools-parent-container .bottom-controls {
  position: static;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  z-index: 100;
}

.tools-parent-container .effect-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  font-weight: bold;
}

.tools-parent-container .effect-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.tools-parent-container .effect-btn.active {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.tools-parent-container .volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.tools-parent-container .volume-control label {
  color: #fff;
  font-size: 1.2rem;
}

.tools-parent-container .volume-control input[type=range] {
  width: 150px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
}

.tools-parent-container .volume-control input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #ffd700;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.tools-parent-container {
  /* Responsive Design */
}

@media (max-width: 1024px) {
  .tools-parent-container .drum-kit-container {
    transform: rotateX(15deg) scale(0.9);
  }

  .tools-parent-container .crash1 {
    left: 10%;
  }

  .tools-parent-container .crash2 {
    right: 5%;
  }

  .tools-parent-container .ride {
    right: 15%;
  }

  .tools-parent-container .bell {
    right: 22%;
  }
}

@media (max-width: 768px) {
  .tools-parent-container .drum-kit-container {
    transform: rotateX(10deg) scale(0.7);
    height: 500px;
  }

  .tools-parent-container .kick-drum {
    width: 140px;
    height: 140px;
    bottom: 60px;
  }

  .tools-parent-container .snare-drum {
    width: 100px;
    height: 100px;
    bottom: 120px;
  }

  .tools-parent-container .hihat {
    width: 90px;
    height: 80px;
  }

  .tools-parent-container .tom1,
  .tools-parent-container .tom2 {
    width: 90px;
    height: 90px;
  }

  .tools-parent-container .crash1,
  .tools-parent-container .crash2 {
    width: 110px;
    height: 110px;
  }

  .tools-parent-container .ride {
    width: 130px;
    height: 130px;
  }

  .tools-parent-container .bell {
    width: 60px;
    height: 60px;
  }

  .tools-parent-container .drum-label {
    font-size: 0.75rem;
  }

  .tools-parent-container .lighting-controls {
    flex-direction: column;
    gap: 5px;
  }

  .tools-parent-container .recording-panel {
    flex-direction: column;
    gap: 10px;
    right: 10px;
    padding: 10px;
  }

  .tools-parent-container .bottom-controls {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .tools-parent-container .drum-kit-container {
    transform: rotateX(5deg) scale(0.55);
    height: 400px;
  }

  .tools-parent-container .kick-drum {
    bottom: 40px;
  }

  .tools-parent-container .snare-drum {
    left: 30%;
    bottom: 100px;
  }

  .tools-parent-container .hihat {
    left: 12%;
    bottom: 140px;
  }

  .tools-parent-container .crash1 {
    top: 60px;
    left: 8%;
  }

  .tools-parent-container .crash2 {
    top: 60px;
    right: 3%;
  }

  .tools-parent-container .ride {
    top: 100px;
    right: 10%;
  }

  .tools-parent-container .bell {
    bottom: 160px;
    right: 18%;
  }

  .tools-parent-container .open-hat {
    bottom: 140px;
    right: 5%;
  }

  .tools-parent-container .drum-label {
    font-size: 0.7rem;
    bottom: -30px;
  }

  .tools-parent-container .volume-control input[type=range] {
    width: 100px;
  }
}

.tools-parent-container {
  /* Touch Device Optimizations */
}

@media (hover: none) and (pointer: coarse) {
  .tools-parent-container .drum-component {
    /* Larger touch targets for mobile */
    padding: 15px;
    margin: -15px;
  }

  .tools-parent-container {
    /* Enhanced visual feedback for touch */
  }

  .tools-parent-container .drum-component:active {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
  }
}

.tools-parent-container {
  /* Landscape Mode Optimization */
}

@media (orientation: landscape) and (max-height: 600px) {
  .tools-parent-container .stage-3d {
    padding-top: 40px;
  }

  .tools-parent-container .drum-kit-container {
    transform: rotateX(10deg) scale(0.7);
    height: 400px;
  }

  .tools-parent-container .recording-panel {
    top: 10px;
    padding: 8px;
  }

  .tools-parent-container .lighting-controls {
    top: 10px;
  }

  .tools-parent-container .bottom-controls {
    bottom: 10px;
  }
}

.tools-parent-container {
  /* High DPI Display Optimization */
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .tools-parent-container .drum-component {
    /* Sharper borders on high DPI displays */
    border: 0.5px solid transparent;
  }

  .tools-parent-container .cymbal {
    border-width: 1px;
  }
}

.tools-parent-container {
  /* Accessibility Improvements */
}

@media (prefers-reduced-motion: reduce) {
  .tools-parent-container .spotlight {
    animation: none;
  }

  .tools-parent-container .audience-emoji {
    animation: none;
  }

  .tools-parent-container .drum-loader {
    animation: none;
  }

  .tools-parent-container .loading-screen p {
    animation: none;
  }

  .tools-parent-container .drum-component {
    transition: none;
  }
}

.tools-parent-container {
  /* Focus styles for keyboard navigation */
}

.tools-parent-container .drum-component:focus {
  outline: 3px solid #ffd700;
  outline-offset: 5px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.tools-parent-container .light-btn:focus,
.tools-parent-container .record-btn:focus,
.tools-parent-container .play-btn:focus,
.tools-parent-container .download-btn:focus,
.tools-parent-container .effect-btn:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

.tools-parent-container {
  /* Print styles (hide interactive elements) */
}

@media print {

  .tools-parent-container .lighting-controls,
  .tools-parent-container .recording-panel,
  .tools-parent-container .bottom-controls {
    display: none;
  }

  .tools-parent-container .concert-room {
    background: white;
    color: black;
  }
}

.tools-parent-container {
  /* Dark mode support */
}

@media (prefers-color-scheme: dark) {
  .tools-parent-container {
    /* Already optimized for dark mode */
  }
}

.tools-parent-container {
  /* Light mode support */
}

@media (prefers-color-scheme: light) {
  .tools-parent-container .drum-label {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
  }
}