/* Game Genre Balloons - CDN版 スタイル */

#game-balloons-root {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; /* はみ出た部分を隠す */
}

.game-balloons-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* SVGアニメーション用のトランジション */
#game-balloons-root svg circle {
  transition-property: r;
  transition-timing-function: cubic-bezier(0, 0.6, 0.2, 1);
}

/* スマホ対応 */
@media (max-width: 768px) {
  #game-balloons-root {
    width: 200%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .game-balloons-container {
    max-width: none;
  }
}