<style>
.ozw-card,
.ozw-card * {
  box-sizing: border-box;
}

.ozw-card {
  width: min(100%, 980px);
  margin: 24px auto;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(255, 202, 40, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(38, 198, 218, 0.14), transparent 32%),
    #000000;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.ozw-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  cursor: pointer;
}

.ozw-card-head span {
  font-size: clamp(22px, 4vw, 36px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ozw-card-head small {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffe082;
  font-size: 13px;
  white-space: nowrap;
}

.ozw-toggle,
.ozw-tabs {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ozw-table-wrap {
  max-height: 430px;
  overflow: auto;
  border-radius: 18px;
  transition: max-height 0.45s ease;
}

.ozw-toggle:not(:checked) ~ .ozw-table-wrap {
  max-height: 210px;
}

.ozw-info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}

.ozw-info-table th,
.ozw-info-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: top;
}

.ozw-info-table th {
  width: 34%;
  color: #ffe082;
  font-weight: 800;
}

.ozw-info-table td {
  color: rgba(255, 255, 255, 0.84);
}

.ozw-info-table tr {
  transition: background 0.25s ease, transform 0.25s ease;
}

.ozw-info-table tr:hover {
  background: rgba(255, 255, 255, 0.09);
}

.ozw-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.ozw-tab-nav label {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.ozw-tab-nav label:hover {
  transform: translateY(-2px);
  background: rgba(255, 202, 40, 0.2);
  color: #ffffff;
}

#ozw-bonus-1:checked ~ .ozw-tab-nav label[for="ozw-bonus-1"],
#ozw-bonus-2:checked ~ .ozw-tab-nav label[for="ozw-bonus-2"],
#ozw-bonus-3:checked ~ .ozw-tab-nav label[for="ozw-bonus-3"] {
  background: #ffe082;
  color: #000000;
}

.ozw-chart-area {
  display: grid;
  grid-template-columns: minmax(210px, 330px) 1fr;
  align-items: center;
  gap: clamp(22px, 5vw, 46px);
}

.ozw-donut {
  width: min(72vw, 300px);
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(#ffe082 0 54%, #26c6da 54% 76%, #ff7043 76% 100%);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.05), 0 18px 42px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, filter 0.35s ease, background 0.35s ease;
}

.ozw-donut::after {
  content: "";
  position: absolute;
  inset: 26%;
  border-radius: 50%;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ozw-donut-centre {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

#ozw-bonus-1:checked ~ .ozw-chart-area .ozw-donut {
  background: conic-gradient(#ffe082 0 64%, rgba(255, 255, 255, 0.14) 64% 100%);
}

#ozw-bonus-2:checked ~ .ozw-chart-area .ozw-donut {
  background: conic-gradient(#26c6da 0 38%, rgba(255, 255, 255, 0.14) 38% 100%);
}

#ozw-bonus-3:checked ~ .ozw-chart-area .ozw-donut {
  background: conic-gradient(#ff7043 0 48%, rgba(255, 255, 255, 0.14) 48% 100%);
}

.ozw-chart-copy {
  display: none;
  animation: ozwFade 0.35s ease both;
}

.ozw-chart-copy h3 {
  margin: 0 0 10px;
  color: #ffe082;
  font-size: clamp(22px, 3vw, 30px);
}

.ozw-chart-copy p,
.ozw-market-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

#ozw-bonus-1:checked ~ .ozw-chart-area .ozw-copy-1,
#ozw-bonus-2:checked ~ .ozw-chart-area .ozw-copy-2,
#ozw-bonus-3:checked ~ .ozw-chart-area .ozw-copy-3 {
  display: block;
}

.ozw-bars {
  display: grid;
  gap: 16px;
}

.ozw-bar-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 14px;
}

.ozw-bar-row span {
  color: #ffe082;
  font-weight: 800;
}

.ozw-bar-track {
  min-height: 42px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.ozw-bar-fill {
  width: var(--ozw-score);
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe082, #ffb300);
  color: #000000;
  font-weight: 900;
  transform-origin: left;
  transition: transform 0.28s ease, filter 0.28s ease, box-shadow 0.28s ease;
}

.ozw-bar-row:hover .ozw-bar-fill {
  transform: scaleX(1.035);
  filter: brightness(1.12);
  box-shadow: 0 0 24px rgba(255, 202, 40, 0.35);
}

.ozw-market-note {
  margin-top: 24px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

@keyframes ozwFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .ozw-card-head {
    flex-direction: column;
  }

  .ozw-card-head small {
    white-space: normal;
  }

  .ozw-chart-area {
    grid-template-columns: 1fr;
  }

  .ozw-donut {
    margin: 0 auto;
  }

  .ozw-info-table th,
  .ozw-info-table td {
    display: block;
    width: 100%;
    padding: 12px 14px;
  }

  .ozw-info-table th {
    padding-bottom: 4px;
  }

  .ozw-info-table td {
    padding-top: 4px;
  }

  .ozw-bar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
</style>