@charset "UTF-8";
.tools-parent-container .container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.tools-parent-container {
  /* Header */
}
.tools-parent-container .header {
  background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.tools-parent-container .header::before {
  content: "🎵 🎹 🥁 🎸 🎺 🎻";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 2rem;
  opacity: 0.1;
  animation: slide-music 20s linear infinite;
}
@keyframes slide-music {
  0% {
    transform: translateX(-100%) translateY(-50%);
  }
  100% {
    transform: translateX(100%) translateY(-50%);
  }
}
.tools-parent-container .header h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin: 0;
}
.tools-parent-container .subtitle {
  color: white;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  margin-top: 5px;
}
.tools-parent-container .emoji-decoration {
  font-size: 1.5em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.tools-parent-container {
  /* Control Panel */
}
.tools-parent-container .control-panel {
  background: linear-gradient(45deg, #FFE5B4, #FFB6C1);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.tools-parent-container .btn {
  background: linear-gradient(45deg, #00b894, #00cec9);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tools-parent-container .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.tools-parent-container .btn.success {
  background: linear-gradient(45deg, #00b894, #55efc4);
}
.tools-parent-container .btn.danger {
  background: linear-gradient(45deg, #d63031, #ff7675);
}
.tools-parent-container .btn.warning {
  background: linear-gradient(45deg, #fdcb6e, #ffeaa7);
  color: #2d3436;
}
.tools-parent-container .btn.info {
  background: linear-gradient(45deg, #74b9ff, #a29bfe);
}
.tools-parent-container .tempo-control {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.tools-parent-container .tempo-control label {
  font-weight: bold;
  color: #2d3436;
}
.tools-parent-container .tempo-control input[type=range] {
  width: 100px;
  accent-color: #ff6b6b;
}
.tools-parent-container #tempoValue {
  font-weight: bold;
  color: #ff6b6b;
  min-width: 35px;
}
.tools-parent-container {
  /* Main Content */
}
.tools-parent-container .main-content {
  display: flex;
  flex: 1;
  gap: 10px;
  padding: 10px;
  min-height: 0;
}
.tools-parent-container {
  /* Workspace Container */
}
.tools-parent-container .workspace-container {
  flex: 1;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-width: 0;
}
.tools-parent-container #blocklyDiv {
  height: 100%;
  width: 100%;
}
.tools-parent-container {
  /* Stage Container */
}
.tools-parent-container .stage-container {
  flex: 1;
  min-width: 0;
}
.tools-parent-container {
  /* Concert Room */
}
.tools-parent-container .concert-room {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, #1a1a2e 0%, #0a0a0a 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.tools-parent-container {
  /* Stage Lights */
}
.tools-parent-container .stage-lights {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.tools-parent-container .spotlight {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(50px);
  animation: pulse-light 4s infinite alternate;
}
.tools-parent-container .spotlight-1 {
  background: radial-gradient(circle, #ff6b6b, transparent);
  top: -50px;
  left: 10%;
}
.tools-parent-container .spotlight-2 {
  background: radial-gradient(circle, #4ecdc4, transparent);
  top: -50px;
  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 {
  /* 3D Stage */
}
.tools-parent-container .stage-3d {
  width: 100%;
  height: calc(100% - 60px);
  perspective: 1000px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tools-parent-container {
  /* Drum Kit Container */
}
.tools-parent-container .drum-kit-container {
  position: relative;
  width: 90%;
  height: 80%;
  transform-style: preserve-3d;
  transform: rotateX(15deg);
}
.tools-parent-container {
  /* Drum Kit */
}
.tools-parent-container .drum-kit {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.tools-parent-container {
  /* Drum Components */
}
.tools-parent-container .drum-component {
  position: absolute;
  cursor: default;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  pointer-events: none;
}
.tools-parent-container {
  /* Drum Component Positions */
}
.tools-parent-container .kick-drum {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
}
.tools-parent-container .snare-drum {
  width: 90px;
  height: 90px;
  bottom: 35%;
  left: 35%;
  transform: translateX(-50%);
}
.tools-parent-container .hihat {
  width: 80px;
  height: 70px;
  bottom: 40%;
  left: 20%;
  transform: translateX(-50%);
}
.tools-parent-container .tom1 {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 35%;
  transform: translateX(-50%);
}
.tools-parent-container .tom2 {
  width: 85px;
  height: 85px;
  top: 30%;
  right: 30%;
  transform: translateX(50%);
}
.tools-parent-container .crash1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 15%;
  transform: translateX(-50%) rotateX(-30deg);
}
.tools-parent-container .ride {
  width: 110px;
  height: 110px;
  top: 25%;
  right: 15%;
  transform: translateX(50%) rotateX(-25deg);
}
.tools-parent-container .bell {
  width: 60px;
  height: 60px;
  bottom: 35%;
  right: 25%;
  transform: translateX(50%);
}
.tools-parent-container {
  /* Drum Bodies */
}
.tools-parent-container .drum-body {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #8b4513, #3a1f0f);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}
.tools-parent-container .snare-drum .drum-body {
  background: linear-gradient(145deg, #e0e0e0, #909090);
  border: 2px solid #666;
}
.tools-parent-container .drum-skin {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background: radial-gradient(circle at 30% 30%, #f5f5dc, #daa520);
  border-radius: 50%;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}
.tools-parent-container {
  /* Cymbals */
}
.tools-parent-container .cymbal-top, .tools-parent-container .cymbal-bottom {
  position: absolute;
  width: 100%;
  height: 15px;
  background: linear-gradient(90deg, #fff9e6, #ffd700, #fff9e6);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}
.tools-parent-container .cymbal-top {
  top: 20px;
}
.tools-parent-container .cymbal-bottom {
  bottom: 20px;
}
.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 20px rgba(255, 215, 0, 0.5);
}
.tools-parent-container .bell-body {
  width: 100%;
  height: 100%;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.5));
}
.tools-parent-container {
  /* Drum Labels */
}
.tools-parent-container .drum-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 8px;
  border-radius: 10px;
}
.tools-parent-container {
  /* Playing Animation */
}
.tools-parent-container .drum-component.playing {
  animation: drum-hit 0.3s ease;
  filter: brightness(1.5) drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}
@keyframes drum-hit {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
.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: 10;
}
.tools-parent-container {
  /* Hit Effect */
}
.tools-parent-container .hit-effect {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
  animation: hit-ripple 0.5s ease-out;
  pointer-events: none;
}
@keyframes hit-ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
.tools-parent-container {
  /* Dancing Characters */
}
.tools-parent-container .dancing-characters {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  z-index: 5;
}
.tools-parent-container .character {
  font-size: 2.5rem;
  animation: idle-bounce 2s ease-in-out infinite;
}
.tools-parent-container .character.dancing {
  animation: dance 0.5s ease-in-out;
}
@keyframes idle-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes dance {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(-10deg);
  }
  75% {
    transform: translateY(-20px) rotate(10deg);
  }
}
.tools-parent-container {
  /* Music Status */
}
.tools-parent-container .music-status {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.tools-parent-container .status-text {
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}
.tools-parent-container .beat-indicator {
  width: 20px;
  height: 20px;
  background: #ff6b6b;
  border-radius: 50%;
  transition: all 0.1s ease;
}
.tools-parent-container .beat-indicator.active {
  transform: scale(1.5);
  background: #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}
.tools-parent-container {
  /* Responsive Design */
}
@media (max-width: 1024px) {
  .tools-parent-container .main-content {
    flex-direction: column;
  }
  .tools-parent-container .workspace-container,
  .tools-parent-container .stage-container {
    width: 100%;
    height: 400px;
  }
  .tools-parent-container .drum-kit-container {
    transform: rotateX(10deg) scale(0.8);
  }
}
@media (max-width: 768px) {
  .tools-parent-container .header h1 {
    font-size: 1.5rem;
  }
  .tools-parent-container .control-panel {
    padding: 10px;
    gap: 10px;
  }
  .tools-parent-container .btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  .tools-parent-container .drum-kit-container {
    transform: rotateX(5deg) scale(0.6);
  }
  .tools-parent-container .drum-component {
    transform: scale(0.9);
  }
  .tools-parent-container .drum-label {
    font-size: 0.6rem;
  }
  .tools-parent-container .character {
    font-size: 2rem;
  }
  .tools-parent-container .tempo-control input[type=range] {
    width: 80px;
  }
}
@media (max-width: 480px) {
  .tools-parent-container .header {
    padding: 10px;
  }
  .tools-parent-container .header h1 {
    font-size: 1.2rem;
  }
  .tools-parent-container .subtitle {
    font-size: 0.9rem;
  }
  .tools-parent-container .control-panel {
    flex-direction: column;
    align-items: stretch;
  }
  .tools-parent-container .btn {
    width: 100%;
    padding: 12px;
  }
  .tools-parent-container .tempo-control {
    justify-content: center;
  }
  .tools-parent-container .workspace-container,
  .tools-parent-container .stage-container {
    height: 300px;
  }
  .tools-parent-container .drum-kit-container {
    transform: rotateX(0deg) scale(0.5);
  }
  .tools-parent-container .character {
    font-size: 1.5rem;
  }
  .tools-parent-container .status-text {
    font-size: 0.9rem;
  }
}
.tools-parent-container {
  /* Touch Device Optimization */
}
@media (hover: none) and (pointer: coarse) {
  .tools-parent-container .btn {
    padding: 14px 20px;
  }
}
.tools-parent-container {
  /* Accessibility */
}
@media (prefers-reduced-motion: reduce) {
  .tools-parent-container .spotlight,
  .tools-parent-container .character,
  .tools-parent-container .emoji-decoration {
    animation: none;
  }
  .tools-parent-container .drum-component.playing {
    animation: none;
    filter: brightness(1.5);
  }
}
.tools-parent-container {
  /* High Contrast Mode */
}
@media (prefers-contrast: high) {
  .tools-parent-container .btn {
    border: 2px solid white;
  }
  .tools-parent-container .drum-label {
    background: black;
    color: white;
    font-weight: bold;
  }
}
.tools-parent-container {
  /* Print Styles */
}
@media print {
  .tools-parent-container .control-panel,
  .tools-parent-container .stage-container {
    display: none;
  }
}