.game-growth-panel {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 2147481800;
  width: min(430px, calc(100vw - 36px));
  color: #f7fbff;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.game-growth-panel details {
  border: 1px solid rgba(37, 231, 255, .32);
  border-radius: 10px;
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 231, 255, .18), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(255, 67, 209, .16), transparent 32%),
    rgba(4, 7, 22, .94);
  box-shadow: 0 20px 58px rgba(0,0,0,.42), 0 0 32px rgba(37,231,255,.16);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.game-growth-panel summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
  font-weight: 950;
}

.game-growth-panel summary::-webkit-details-marker { display: none; }

.game-growth-panel summary span {
  display: block;
  color: #ffe66d;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.game-growth-panel summary strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.game-growth-panel summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #06101f;
  background: linear-gradient(90deg, #25e7ff, #fff, #ff43d1);
  font-weight: 1000;
}

.game-growth-panel details[open] summary::after { content: "-"; }

.game-growth-body {
  max-height: min(66vh, 580px);
  overflow: auto;
  padding: 0 14px 14px;
}

.game-growth-grid {
  display: grid;
  gap: 10px;
}

.game-growth-card {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}

.game-growth-card h2,
.game-growth-card h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
}

.game-growth-card p,
.game-growth-card li {
  color: #c9d7ff;
  font-size: 13px;
  line-height: 1.48;
}

.game-growth-card ul {
  margin: 0;
  padding-left: 18px;
}

.game-growth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.game-growth-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(37,231,255,.3);
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(37,231,255,.08);
  font-size: 12px;
  font-weight: 900;
}

.game-growth-links a:hover,
.game-growth-links a:focus-visible {
  border-color: rgba(255,230,109,.65);
  background: rgba(255,230,109,.12);
  outline: none;
}

@media (max-width: 720px) {
  .game-growth-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
  }

  .game-growth-body {
    max-height: 58vh;
  }
}
