.color-clash-game {
  --cc-ink: #152038;
  --cc-muted: #627188;
  --cc-line: rgba(87, 104, 135, 0.25);
  --cc-panel: rgba(255, 255, 255, 0.82);
  --cc-panel-strong: rgba(255, 255, 255, 0.96);
  --cc-accent: #6d4ce8;
  --cc-cyan: #0e9fbd;
  color: var(--cc-ink);
  display: grid;
  gap: 18px;
  isolation: isolate;
}

.color-clash-game .cc-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.dark .color-clash-game {
  --cc-ink: #f0f4ff;
  --cc-muted: #aab7cd;
  --cc-line: rgba(174, 194, 231, 0.2);
  --cc-panel: rgba(10, 18, 39, 0.82);
  --cc-panel-strong: rgba(11, 20, 42, 0.96);
}

.color-clash-game .cc-hero,
.color-clash-game .cc-play-panel,
.color-clash-game .cc-side-panel,
.color-clash-game .cc-hud article {
  backdrop-filter: blur(20px);
  background: var(--cc-panel);
  border: 1px solid var(--cc-line);
  box-shadow: 0 22px 64px rgba(24, 33, 60, 0.14);
}

.color-clash-game .cc-hero {
  align-items: center;
  background:
    radial-gradient(
      circle at 86% 12%,
      rgba(36, 118, 216, 0.28),
      transparent 17rem
    ),
    radial-gradient(
      circle at 9% 90%,
      rgba(216, 59, 88, 0.25),
      transparent 19rem
    ),
    var(--cc-panel);
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  min-height: 170px;
  overflow: hidden;
  padding: 30px 34px;
}

.color-clash-game .cc-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin: 8px 0 14px;
}

.color-clash-game .cc-hero p {
  color: var(--cc-muted);
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  font-weight: 640;
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

.color-clash-game .cc-audio-controls,
.color-clash-game .cc-primary-controls,
.color-clash-game .cc-dialog-actions,
.color-clash-game .cc-debug-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.color-clash-game .cc-audio-controls {
  flex: none;
  justify-content: flex-end;
  margin-left: 24px;
  max-width: 330px;
}

.color-clash-game .cc-audio-controls button {
  min-height: 44px;
}

.color-clash-game .cc-hud {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.color-clash-game .cc-hud article {
  border-radius: 18px;
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 14px 16px;
}

.color-clash-game .cc-hud span,
.color-clash-game .cc-field > span {
  color: var(--cc-muted);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.color-clash-game .cc-hud strong {
  font-size: clamp(1rem, 2vw, 1.4rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.color-clash-game .cc-layout {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.68fr);
}

.color-clash-game .cc-play-panel,
.color-clash-game .cc-side-panel {
  border-radius: 26px;
  min-width: 0;
  padding: 22px;
}

.color-clash-game .cc-play-panel,
.color-clash-game .cc-side-panel,
.color-clash-game .cc-settings-grid,
.color-clash-game .cc-panel-section {
  display: grid;
  gap: 16px;
}

.color-clash-game .cc-panel-heading {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.color-clash-game .cc-panel-heading h2,
.color-clash-game .cc-side-panel h2,
.color-clash-game .cc-dialog h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 880;
  letter-spacing: -0.035em;
  margin: 4px 0 0;
}

.color-clash-game .cc-score-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.color-clash-game .cc-score-summary span {
  background: var(--cc-panel-strong);
  border: 1px solid var(--cc-line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 820;
  padding: 6px 9px;
}

.color-clash-game .cc-canvas-shell {
  aspect-ratio: 5 / 3;
  background: #07101f;
  border: 1px solid rgba(117, 163, 255, 0.28);
  border-radius: 22px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.color-clash-game .cc-canvas {
  cursor: grab;
  display: block;
  height: 100%;
  max-width: 100%;
  outline: 0;
  touch-action: none;
  width: 100%;
}

.color-clash-game .cc-canvas:active {
  cursor: grabbing;
}

.color-clash-game .cc-canvas:focus-visible {
  box-shadow: inset 0 0 0 4px #ffe082;
}

.color-clash-game .cc-pause-cover {
  align-content: center;
  background: rgba(4, 8, 20, 0.92);
  color: #fff;
  inset: 0;
  justify-items: center;
  position: absolute;
  z-index: 3;
}

.color-clash-game .cc-pause-cover:not([hidden]) {
  display: grid;
}

.color-clash-game .cc-pause-cover strong {
  font-size: clamp(1.8rem, 5vw, 3.4rem);
}

.color-clash-game .cc-pause-cover span {
  color: #b8c6df;
}

.color-clash-game .cc-rival-dialogue {
  animation: cc-dialogue-in 0.28s ease-out;
  background: rgba(5, 10, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  color: #fff;
  display: grid;
  gap: 2px;
  left: 18px;
  max-width: min(390px, calc(100% - 36px));
  padding: 10px 13px;
  pointer-events: none;
  position: absolute;
  top: 18px;
  z-index: 2;
}

.color-clash-game .cc-rival-dialogue[hidden] {
  display: none;
}

.color-clash-game .cc-rival-dialogue span {
  color: #cbd8ec;
  font-size: 0.82rem;
}

@keyframes cc-dialogue-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
}

.color-clash-game .cc-status {
  align-items: center;
  background: var(--cc-panel-strong);
  border: 1px solid var(--cc-line);
  border-radius: 17px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
  min-height: 70px;
  padding: 12px 16px;
}

.color-clash-game .cc-status > span {
  align-items: center;
  background: linear-gradient(135deg, #d83b58, #6d4ce8, #2476d8);
  border-radius: 13px;
  color: #fff;
  display: flex;
  font-size: 1.25rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.color-clash-game .cc-status p {
  color: var(--cc-muted);
  line-height: 1.4;
  margin: 3px 0 0;
}

.color-clash-game .cc-primary-controls button {
  flex: 1 1 130px;
  min-height: 48px;
}

.color-clash-game .cc-last-card,
.color-clash-game .cc-catch {
  border: 0;
  border-radius: 13px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 880;
  padding: 10px 16px;
}

.color-clash-game .cc-last-card {
  background: linear-gradient(135deg, #d83b58, #a9217e);
}

.color-clash-game .cc-catch {
  background: linear-gradient(135deg, #e29a18, #b85716);
}

.color-clash-game button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.75);
  opacity: 0.48;
}

.color-clash-game .cc-field {
  display: grid;
  gap: 7px;
}

.color-clash-game .cc-field .select {
  width: 100%;
}

.color-clash-game .cc-rule-options {
  border: 1px solid var(--cc-line);
  border-radius: 17px;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 15px;
}

.color-clash-game .cc-rule-options legend {
  font-size: 0.8rem;
  font-weight: 850;
  padding: 0 7px;
  text-transform: uppercase;
}

.color-clash-game .cc-rule-options label {
  align-items: center;
  display: flex;
  font-weight: 720;
  gap: 8px;
}

.color-clash-game .cc-rule-options small,
.color-clash-game .cc-panel-section p {
  color: var(--cc-muted);
}

.color-clash-game .cc-new-match {
  width: 100%;
}

.color-clash-game .cc-panel-section {
  border-top: 1px solid var(--cc-line);
  padding-top: 16px;
}

.color-clash-game .cc-panel-section h3,
.color-clash-game .cc-rules-grid h3 {
  font-size: 1rem;
  margin: 0;
}

.color-clash-game .cc-progression {
  background: linear-gradient(
    135deg,
    rgba(109, 76, 232, 0.14),
    rgba(14, 159, 189, 0.14)
  );
  border: 1px solid var(--cc-line);
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 760;
  padding: 10px 12px;
}

.color-clash-game .cc-campaign-map {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.color-clash-game .cc-campaign-map button {
  background: var(--cc-panel-strong);
  border: 1px solid var(--cc-line);
  border-radius: 14px;
  color: var(--cc-ink);
  cursor: pointer;
  display: grid;
  gap: 2px;
  min-height: 78px;
  padding: 10px;
  text-align: left;
}

.color-clash-game .cc-campaign-map button[aria-pressed="true"] {
  border-color: #8d72f2;
  box-shadow: inset 0 0 0 2px rgba(109, 76, 232, 0.24);
}

.color-clash-game .cc-campaign-map button:disabled {
  filter: grayscale(1);
}

.color-clash-game .cc-campaign-map strong,
.color-clash-game .cc-campaign-map small {
  display: block;
}

.color-clash-game .cc-campaign-map small {
  color: var(--cc-muted);
}

.color-clash-game .cc-replay-controls {
  display: flex;
  gap: 5px;
}

.color-clash-game .cc-replay-controls button {
  min-height: 34px;
  padding: 5px 8px;
}

.color-clash-game .cc-match-history,
.color-clash-game .cc-post-report ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}

.color-clash-game .cc-match-history button {
  background: transparent;
  border: 0;
  color: var(--cc-ink);
  cursor: pointer;
  font: inherit;
  padding: 2px;
  text-align: left;
}

.color-clash-game .cc-replay-line {
  background: var(--cc-panel-strong);
  border: 1px solid var(--cc-line);
  border-radius: 12px;
  margin: 0;
  min-height: 44px;
  padding: 9px 11px;
}

.color-clash-game .cc-statistics {
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr auto;
  margin: 0;
}

.color-clash-game .cc-statistics div {
  display: contents;
}

.color-clash-game .cc-statistics dt {
  color: var(--cc-muted);
}

.color-clash-game .cc-statistics dd {
  font-variant-numeric: tabular-nums;
  font-weight: 850;
  margin: 0;
}

.color-clash-game .cc-achievements {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.color-clash-game .cc-achievements li {
  background: var(--cc-panel-strong);
  border: 1px solid var(--cc-line);
  border-radius: 13px;
  display: grid;
  gap: 2px;
  padding: 10px 11px;
}

.color-clash-game .cc-achievements li[data-unlocked="false"] {
  filter: grayscale(1);
  opacity: 0.58;
}

.color-clash-game .cc-achievements span {
  color: var(--cc-muted);
  font-size: 0.78rem;
}

.color-clash-game .cc-debug {
  border: 1px dashed var(--cc-line);
  border-radius: 14px;
  padding: 12px;
}

.color-clash-game .cc-debug pre {
  background: #07101f;
  border-radius: 11px;
  color: #b9f6dd;
  font-size: 0.72rem;
  max-height: 280px;
  overflow: auto;
  padding: 10px;
  white-space: pre-wrap;
}

.color-clash-game .cc-dialog {
  background: var(--cc-panel-strong);
  border: 1px solid var(--cc-line);
  border-radius: 24px;
  color: var(--cc-ink);
  max-height: calc(100vh - 32px);
  max-width: min(680px, calc(100vw - 28px));
  padding: 24px;
  width: 100%;
}

.color-clash-game .cc-dialog::backdrop {
  backdrop-filter: blur(9px);
  background: rgba(3, 8, 20, 0.74);
}

.color-clash-game .cc-dialog p {
  color: var(--cc-muted);
  line-height: 1.55;
}

.color-clash-game
  .cc-dialog[data-circuit-champion="true"][data-cc-result-dialog] {
  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(255, 224, 130, 0.3),
      transparent 43%
    ),
    radial-gradient(
      circle at 10% 40%,
      rgba(109, 76, 232, 0.24),
      transparent 42%
    ),
    radial-gradient(
      circle at 90% 58%,
      rgba(14, 159, 189, 0.25),
      transparent 38%
    ),
    #081225;
  border-color: rgba(255, 231, 148, 0.75);
  box-shadow:
    0 0 35px rgba(255, 224, 130, 0.24),
    inset 0 0 50px rgba(126, 87, 255, 0.14);
  color: #f8fbff;
  inset: 50% auto auto 50%;
  margin: 0;
  max-width: min(800px, calc(100vw - 28px));
  overflow: hidden auto;
  position: fixed;
  transform: translate(-50%, -50%);
}

.color-clash-game .cc-result-content {
  position: relative;
  z-index: 2;
}

.color-clash-game
  .cc-dialog[data-circuit-champion="true"]
  .cc-result-content
  > h2 {
  color: #fff4bd;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  text-align: center;
  text-shadow:
    0 0 12px rgba(255, 238, 164, 0.85),
    0 0 28px rgba(153, 100, 255, 0.72);
}

.color-clash-game
  .cc-dialog[data-circuit-champion="true"]
  .cc-result-content
  > p {
  color: #dce9ff;
  text-align: center;
}

.color-clash-game .cc-circuit-finale {
  isolation: isolate;
  min-height: 210px;
  position: relative;
  z-index: 1;
}

.color-clash-game .cc-circuit-finale[hidden] {
  display: none;
}

.color-clash-game .cc-circuit-effects,
.color-clash-game .cc-card-confetti {
  inset: -24px;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
}

.color-clash-game .cc-circuit-swirl {
  animation: cc-circuit-swirl 9s linear infinite;
  background: conic-gradient(
    from 30deg,
    transparent 0 11%,
    rgba(229, 79, 108, 0.42) 13%,
    transparent 18% 31%,
    rgba(46, 132, 240, 0.42) 34%,
    transparent 40% 55%,
    rgba(255, 186, 60, 0.42) 58%,
    transparent 64% 78%,
    rgba(35, 194, 143, 0.42) 81%,
    transparent 87%
  );
  border-radius: 50%;
  filter: blur(5px);
  inset: -80% -25%;
  opacity: 0.72;
  position: absolute;
}

.color-clash-game .cc-circuit-swirl:nth-child(2) {
  animation-direction: reverse;
  animation-duration: 13s;
  inset: -55% 5%;
  opacity: 0.44;
}

.color-clash-game .cc-circuit-message {
  align-content: center;
  display: grid;
  min-height: 210px;
  place-items: center;
  position: relative;
  text-align: center;
  z-index: 3;
}

.color-clash-game .cc-circuit-message > span {
  color: #8fffe1;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.color-clash-game .cc-circuit-message strong {
  animation: cc-champion-title 1.8s ease-in-out infinite;
  background: linear-gradient(90deg, #fff1a6, #fff, #d9c4ff, #96f6e2);
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 238, 164, 0.62));
  font-size: clamp(2.3rem, 8vw, 4.6rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 10px 0 3px;
}

.color-clash-game .cc-circuit-message p {
  color: #fff !important;
  font-size: clamp(1.1rem, 3.5vw, 1.55rem);
  font-weight: 850;
  margin: 0;
  text-shadow: 0 0 16px rgba(145, 105, 255, 0.8);
}

.color-clash-game .cc-firework {
  --cc-firework-color: #ffe88f;
  animation: cc-firework-burst 1.9s ease-out infinite;
  background: repeating-conic-gradient(
    from 4deg,
    var(--cc-firework-color) 0 2deg,
    transparent 2deg 17deg
  );
  border-radius: 50%;
  filter: drop-shadow(0 0 6px var(--cc-firework-color));
  height: 86px;
  left: 8%;
  mask: radial-gradient(
    circle,
    transparent 0 12%,
    #000 14% 55%,
    transparent 58%
  );
  opacity: 0;
  position: absolute;
  top: 3%;
  width: 86px;
  z-index: 2;
}

.color-clash-game .cc-firework-two {
  --cc-firework-color: #78e4ff;
  animation-delay: -0.6s;
  left: auto;
  right: 7%;
  top: 10%;
}

.color-clash-game .cc-firework-three {
  --cc-firework-color: #ff75bb;
  animation-delay: -1.15s;
  left: 20%;
  top: 55%;
}

.color-clash-game .cc-firework-four {
  --cc-firework-color: #89ffd4;
  animation-delay: -1.55s;
  left: auto;
  right: 18%;
  top: 52%;
}

.color-clash-game .cc-card-confetti i {
  animation: cc-card-confetti-fall var(--cc-confetti-duration) linear infinite;
  animation-delay: var(--cc-confetti-delay);
  background: var(--cc-confetti-color);
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.45);
  color: #fff;
  display: grid;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 950;
  height: 27px;
  left: var(--cc-confetti-x);
  place-items: center;
  position: absolute;
  top: -45px;
  width: 19px;
}

@keyframes cc-circuit-swirl {
  to {
    transform: rotate(1turn);
  }
}

@keyframes cc-champion-title {
  50% {
    filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.95));
    transform: scale(1.035) rotate(-0.5deg);
  }
}

@keyframes cc-firework-burst {
  0% {
    opacity: 0;
    transform: scale(0.08) rotate(0);
  }
  18% {
    opacity: 1;
  }
  72% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: scale(1.25) rotate(18deg);
  }
}

@keyframes cc-card-confetti-fall {
  from {
    transform: translate3d(0, -50px, 0) rotate(0);
  }
  to {
    transform: translate3d(var(--cc-confetti-drift), 620px, 0) rotate(2turn);
  }
}

.color-clash-game .cc-color-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.color-clash-game .cc-color-grid button {
  animation: cc-spectrum-pulse 1.8s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  color: #fff;
  cursor: pointer;
  display: grid;
  font: inherit;
  font-size: 1rem;
  font-weight: 850;
  gap: 6px;
  min-height: 100px;
  place-content: center;
  text-shadow: 0 1px 3px #000;
}

.color-clash-game .cc-color-grid button:nth-child(2) {
  animation-delay: -0.45s;
}

.color-clash-game .cc-color-grid button:nth-child(3) {
  animation-delay: -0.9s;
}

.color-clash-game .cc-color-grid button:nth-child(4) {
  animation-delay: -1.35s;
}

@keyframes cc-spectrum-pulse {
  50% {
    box-shadow: 0 0 28px currentColor;
  }
}

.color-clash-game .cc-color-grid button span {
  font-size: 1.7rem;
}

.color-clash-game [data-cc-color="crimson"] {
  background: #b52345;
}
.color-clash-game [data-cc-color="azure"] {
  background: #1762bd;
}
.color-clash-game [data-cc-color="amber"] {
  background: #b66d09;
}
.color-clash-game [data-cc-color="emerald"] {
  background: #087555;
}

.color-clash-game .cc-rules-dialog {
  max-width: min(900px, calc(100vw - 28px));
}

.color-clash-game .cc-rules-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0;
  max-height: 58vh;
  overflow: auto;
}

.color-clash-game .cc-rules-grid section {
  border: 1px solid var(--cc-line);
  border-radius: 15px;
  padding: 13px;
}

.color-clash-game .cc-rules-grid p {
  margin-bottom: 0;
}

.color-clash-game .cc-result-scores {
  display: grid;
  gap: 7px;
  margin: 16px 0;
}

.color-clash-game .cc-result-scores div {
  align-items: center;
  background: var(--cc-panel);
  border: 1px solid var(--cc-line);
  border-radius: 11px;
  display: flex;
  justify-content: space-between;
  padding: 9px 11px;
}

.color-clash-game .cc-post-report {
  background: var(--cc-panel);
  border: 1px solid var(--cc-line);
  border-radius: 15px;
  margin: 14px 0;
  padding: 13px;
}

.color-clash-game .cc-post-report h3 {
  margin: 0 0 9px;
}

@media (max-width: 1100px) {
  .color-clash-game .cc-layout {
    grid-template-columns: 1fr;
  }
  .color-clash-game .cc-side-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .color-clash-game .cc-side-panel > :first-child,
  .color-clash-game .cc-settings-grid,
  .color-clash-game .cc-rule-options,
  .color-clash-game .cc-new-match,
  .color-clash-game .cc-debug,
  .color-clash-game .cc-side-panel > .button-danger {
    grid-column: 1 / -1;
  }
  .color-clash-game .cc-settings-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .color-clash-game .cc-hero {
    align-items: flex-start;
    display: grid;
    padding: 24px;
  }
  .color-clash-game .cc-audio-controls {
    justify-content: flex-start;
    margin: 20px 0 0;
    max-width: none;
  }
  .color-clash-game .cc-hud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .color-clash-game .cc-play-panel,
  .color-clash-game .cc-side-panel {
    padding: 14px;
  }
  .color-clash-game .cc-settings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .color-clash-game .cc-canvas-shell {
    aspect-ratio: 4 / 3;
  }
  .color-clash-game .cc-rules-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .color-clash-game .cc-hud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .color-clash-game .cc-side-panel,
  .color-clash-game .cc-settings-grid {
    grid-template-columns: 1fr;
  }
  .color-clash-game .cc-panel-heading {
    align-items: flex-start;
    display: grid;
  }
  .color-clash-game .cc-score-summary {
    justify-content: flex-start;
  }
  .color-clash-game .cc-color-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .color-clash-game *,
  .color-clash-game *::before,
  .color-clash-game *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
