.crazy-catunes-panel {
  margin-top: 18px;
  padding: 16px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.96), rgba(255,244,219,.93)),
    linear-gradient(135deg, rgba(250,204,21,.18), rgba(34,197,94,.14));
  color: #241324;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
  overflow: hidden;
}

.cc-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.cc-kicker {
  color: #a855f7;
}

.crazy-catunes-panel h2 {
  margin: 2px 0;
  line-height: 1.05;
}

.cc-sub {
  margin: 0;
  font-weight: 800;
  opacity: .82;
}

.cc-head-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cc-small {
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 900;
  cursor: pointer;
  background: rgba(36,19,36,.12);
  color: #241324;
}

.cc-rule {
  margin: 12px 0 10px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  font-weight: 900;
  line-height: 1.35;
}

.cc-hud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.cc-hud span {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255,255,255,.76);
  font-weight: 900;
}

#crazyCatunesCanvas {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  border-radius: 22px;
  background: #b9d2df;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.45), 0 10px 26px rgba(0,0,0,.13);
  touch-action: none;
}

.cc-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cc-controls button,
.cc-question button,
.cc-start {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 1000;
  cursor: pointer;
  background: #241324;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.16);
}

.cc-controls button {
  flex: 1 1 92px;
  background: #3b2140;
}

.cc-message {
  margin-top: 10px;
  padding: 11px 13px;
  border-radius: 18px;
  background: rgba(255,255,255,.74);
  font-weight: 900;
  line-height: 1.35;
}

.cc-question {
  display: none;
  margin-top: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  border: 2px solid rgba(168,85,247,.24);
}

.cc-question.is-open {
  display: block;
}

.cc-question h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.cc-question p {
  margin: 0 0 9px;
  font-weight: 900;
}

.cc-answer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.cc-question button {
  background: #166534;
}

@media (max-width: 680px) {
  .cc-head {
    align-items: stretch;
    flex-direction: column;
  }

  .cc-head-actions {
    width: 100%;
  }

  .cc-head-actions button {
    flex: 1;
  }

  .crazy-catunes-panel h2 {
    font-size: 24px;
  }

  .cc-hud span {
    font-size: 13px;
  }
}