/* گردونه شانس — The True Trade */

/* Hero — صفحه گردونه شانس */
.hero-section--lucky-wheel {
  background:
    radial-gradient(ellipse 90% 55% at 15% 0%, rgba(255, 193, 7, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(26, 251, 154, 0.1), transparent 50%),
    rgb(var(--ttt-tradly-nb4));
}

.hero-section--lucky-wheel::after {
  background: linear-gradient(135deg, #ffc107, var(--ttt-tradly-p1));
  opacity: 0.28;
}

.hero-section--lucky-wheel .subtitle {
  color: #ffc107;
  letter-spacing: 0.02em;
}

.ttt-hero-lucky-wheel__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ttt-hero-lucky-wheel__glow {
  position: absolute;
  width: min(22rem, 70vw);
  height: min(22rem, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.35) 0%, rgba(26, 251, 154, 0.15) 45%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.ttt-hero-lucky-wheel__visual {
  position: relative;
  z-index: 1;
  width: min(22rem, 88vw);
  margin-inline: auto;
}

.ttt-hero-lucky-wheel__visual .ttt-lucky-wheel__visual-wrap {
  width: 100%;
}

@media (min-width: 992px) {
  .ttt-hero-lucky-wheel__visual {
    width: min(26rem, 100%);
  }
}

.ttt-hero-lucky-wheel__ticket {
  position: absolute;
  top: 8%;
  inset-inline-start: -4%;
  width: 3.5rem;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  animation: ttt-hero-lucky-wheel-float 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ttt-hero-lucky-wheel-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.65rem); }
}

@media (prefers-reduced-motion: reduce) {
  .ttt-hero-lucky-wheel__ticket {
    animation: none;
  }
}

.ttt-hero-lucky-wheel__play {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 26rem;
}

@media (min-width: 992px) {
  .ttt-hero-lucky-wheel__play {
    margin-top: 2rem;
  }
}

.hero-section--lucky-wheel .ttt-lucky-wheel__result {
  margin-top: 0;
}

.ttt-lucky-wheel {
  overflow: hidden;
}

.ttt-lucky-wheel__visual-wrap {
  position: relative;
  width: min(22rem, 92vw);
  aspect-ratio: 1;
  margin-inline: auto;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.42));
  container-type: inline-size;
}

@media (min-width: 768px) {
  .ttt-lucky-wheel__visual-wrap {
    width: min(26rem, 46vw);
  }
}

@media (min-width: 1024px) {
  .ttt-lucky-wheel__visual-wrap {
    width: min(30rem, 40vw);
  }
}

.ttt-lucky-wheel__pointer {
  position: absolute;
  top: -1.5%;
  left: 50%;
  z-index: 5;
  width: 0;
  height: 0;
  border-left: 0.65rem solid transparent;
  border-right: 0.65rem solid transparent;
  border-top: 1.15rem solid #ffc107;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.ttt-lucky-wheel__lights {
  position: absolute;
  inset: -2%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  /* شعاع حلقه لامپ‌ها: لبه دیسک (inset 6%) + حاشیه طلایی */
  --bulb-orbit: 10.5rem;
}

@supports (width: 1cqi) {
  .ttt-lucky-wheel__lights {
    --bulb-orbit: calc(44cqi + 0.5rem);
  }
}

/* لامپ‌های گرد — دو فریم مثل تبدیل: فرد روشن / زوج خاموش، بعد برعکس */
.ttt-lucky-wheel__light-bulb {
  --bulb-r: clamp(0.36rem, 1.6vw, 0.48rem);
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--bulb-r) * 2);
  height: calc(var(--bulb-r) * 2);
  margin: calc(var(--bulb-r) * -1) 0 0 calc(var(--bulb-r) * -1);
  border-radius: 50%;
  border: 2px solid #a67c00;
  background: radial-gradient(circle at 32% 28%, #fffef8 0%, #ffe566 38%, #f5b800 72%, #c98a00 100%);
  box-shadow:
    0 0 0.5rem #ffc107,
    0 0 1rem rgba(255, 193, 7, 0.55),
    inset 0 -0.12rem 0.2rem rgba(166, 124, 0, 0.35);
  transform: rotate(var(--bulb-angle)) translate(0, calc(-1 * var(--bulb-orbit)));
  transform-origin: center center;
  animation: ttt-bulb-off 0.55s steps(1, end) infinite;
}

.ttt-lucky-wheel__light-bulb:nth-child(odd) {
  animation-name: ttt-bulb-on;
}

@keyframes ttt-bulb-on {
  0%,
  49.99% {
    opacity: 1;
    filter: brightness(1.15);
    box-shadow:
      0 0 0.55rem #ffc107,
      0 0 1.1rem rgba(255, 193, 7, 0.65),
      inset 0 -0.12rem 0.2rem rgba(166, 124, 0, 0.35);
  }
  50%,
  100% {
    opacity: 0.45;
    filter: brightness(0.65);
    box-shadow: 0 0 0.12rem rgba(255, 193, 7, 0.25);
  }
}

@keyframes ttt-bulb-off {
  0%,
  49.99% {
    opacity: 0.45;
    filter: brightness(0.65);
    box-shadow: 0 0 0.12rem rgba(255, 193, 7, 0.25);
  }
  50%,
  100% {
    opacity: 1;
    filter: brightness(1.15);
    box-shadow:
      0 0 0.55rem #ffc107,
      0 0 1.1rem rgba(255, 193, 7, 0.65),
      inset 0 -0.12rem 0.2rem rgba(166, 124, 0, 0.35);
  }
}

.ttt-lucky-wheel.is-spinning .ttt-lucky-wheel__light-bulb {
  animation-duration: 0.2s;
}

.ttt-lucky-wheel.is-spinning .ttt-lucky-wheel__light-bulb:nth-child(odd) {
  animation-name: ttt-bulb-on;
}

.ttt-lucky-wheel__disc-wrap {
  position: absolute;
  inset: 6%;
  z-index: 2;
}

.ttt-lucky-wheel__disc {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: rotate(0deg);
  transform-origin: center center;
  will-change: transform;
  border: 0.28rem solid #f5c842;
  box-shadow:
    inset 0 0 0 0.12rem rgba(255, 255, 255, 0.12),
    0 0 0 0.12rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.ttt-lucky-wheel__disc-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.ttt-lucky-wheel__segments {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ttt-lucky-wheel__segment {
  position: absolute;
  inset: 0;
  transform: rotate(var(--segment-mid));
  pointer-events: none;
}

.ttt-lucky-wheel__segment-content {
  position: absolute;
  left: 50%;
  top: 11%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 38%;
  max-width: 5.5rem;
  transform: translateX(-50%) rotate(calc(-1 * var(--segment-mid)));
  color: var(--segment-text);
  text-align: center;
  line-height: 1.15;
}

.ttt-lucky-wheel__segment-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.ttt-lucky-wheel__segment-icon--crypto {
  display: block;
  object-fit: contain;
}

.ttt-lucky-wheel__segment-label {
  font-size: clamp(0.55rem, 2.4vw, 0.72rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ttt-lucky-wheel__disc.is-idle-preview {
  animation: ttt-wheel-idle-spin 18s linear infinite;
}

@keyframes ttt-wheel-idle-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ttt-lucky-wheel__light-bulb {
    animation: none;
    opacity: 0.88;
  }

  .ttt-lucky-wheel.is-spinning .ttt-lucky-wheel__light-bulb {
    animation: none;
  }

  .ttt-lucky-wheel__disc.is-idle-preview {
    animation: none;
  }
}

.ttt-lucky-wheel__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 14%;
  height: 14%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: radial-gradient(circle at 32% 28%, #fff8e1 0%, #ffca28 42%, #f9a825 68%, #ef6c00 100%);
  border: 0.2rem solid #fffde7;
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.35),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.ttt-lucky-wheel__tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgb(var(--ttt-tradly-nw1));
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .ttt-lucky-wheel__tagline {
    flex-wrap: nowrap;
  }
}

@media (min-width: 768px) {
  .ttt-lucky-wheel__tagline {
    font-size: 1.25rem;
  }
}

.ttt-lucky-wheel__prize-rotator {
  --prize-rotator-width: 7.25rem;
  --prize-rotator-step: 1.5em;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: var(--prize-rotator-width);
  min-width: var(--prize-rotator-width);
  height: var(--prize-rotator-step);
  padding-inline: 0.5em;
  overflow: hidden;
  border-radius: 0.35em;
  background: color-mix(in srgb, var(--ttt-tradly-p1) 14%, transparent);
  color: var(--ttt-tradly-p1);
  font-weight: 700;
  line-height: var(--prize-rotator-step);
  text-align: center;
  vertical-align: middle;
}

.ttt-lucky-wheel__prize-rotator-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ttt-lucky-wheel__prize-rotator-inner span {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: var(--prize-rotator-step);
  line-height: var(--prize-rotator-step);
  white-space: nowrap;
  text-align: center;
}

.ttt-lucky-wheel__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ttt-lucky-wheel__spin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.625rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--ttt-tradly-p1);
  color: rgb(var(--ttt-tradly-nb4));
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.ttt-lucky-wheel__spin-btn:hover:not(:disabled) {
  filter: brightness(1.08);
}

.ttt-lucky-wheel__spin-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.ttt-lucky-wheel__spin-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ttt-lucky-wheel__meta {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .ttt-lucky-wheel__meta {
    margin-inline: 0;
  }
}

.ttt-lucky-wheel__chances {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(31, 43, 63, 0.5) 0%, rgba(55, 76, 112, 0.5) 100%);
  backdrop-filter: blur(2px);
}

.ttt-lucky-wheel__chances-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgb(var(--ttt-tradly-nw2));
}

.ttt-lucky-wheel__chances-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(var(--ttt-tradly-nw1));
}

.ttt-lucky-wheel__rules-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.625rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(31, 43, 63, 0.5) 0%, rgba(55, 76, 112, 0.5) 100%);
  color: rgb(var(--ttt-tradly-nw2));
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.ttt-lucky-wheel__rules-btn:hover {
  color: var(--ttt-tradly-p1);
  border-color: rgba(26, 251, 154, 0.35);
}

.ttt-lucky-wheel__hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgb(var(--ttt-tradly-nw3));
}

.ttt-lucky-wheel__result {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(26, 251, 154, 0.35);
  background: rgba(26, 251, 154, 0.08);
  color: rgb(var(--ttt-tradly-nw1));
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}

.ttt-lucky-wheel__result[hidden] {
  display: none !important;
}

/* Win modal */
.ttt-wheel-win-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ttt-wheel-win-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.ttt-wheel-win-modal[hidden] {
  display: none;
}

.ttt-wheel-win-modal:not([hidden]) {
  display: flex;
}

.ttt-wheel-win-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 32, 0.88);
  backdrop-filter: blur(8px);
}

.ttt-wheel-win-modal.is-usdt .ttt-wheel-win-modal__dialog {
  width: min(26rem, 100%);
}

.ttt-wheel-win-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(22rem, 100%);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(26, 251, 154, 0.35);
  background: linear-gradient(165deg, rgba(26, 43, 68, 0.98) 0%, rgba(15, 25, 42, 0.98) 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 48px rgba(26, 251, 154, 0.12);
  text-align: center;
  transform: translateY(12px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.ttt-wheel-win-modal.is-open .ttt-wheel-win-modal__dialog {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .ttt-wheel-win-modal,
  .ttt-wheel-win-modal__dialog {
    transition: none;
  }

  .ttt-wheel-win-modal__dialog {
    transform: none;
  }
}

.ttt-wheel-win-modal__close {
  position: absolute;
  top: 0.75rem;
  inset-inline-end: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgb(var(--ttt-tradly-nw2));
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.ttt-wheel-win-modal__close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: rgb(var(--ttt-tradly-nw1));
}

.ttt-wheel-win-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: rgba(26, 251, 154, 0.12);
  color: var(--ttt-tradly-p1);
  box-shadow: 0 0 32px rgba(26, 251, 154, 0.25);
}

.ttt-wheel-win-modal__icon-svg[hidden] {
  display: none;
}

.ttt-wheel-win-modal__title {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: rgb(var(--ttt-tradly-nw1));
}

.ttt-wheel-win-modal__prize {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ttt-tradly-p1);
  line-height: 1.4;
}

.ttt-wheel-win-modal__desc {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--ttt-tradly-par1);
}

.ttt-wheel-win-modal__steps {
  margin: 0 0 1.25rem;
  padding: 0 1.25rem 0 0;
  text-align: start;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--ttt-tradly-par1);
}

.ttt-wheel-win-modal__steps[hidden] {
  display: none;
}

.ttt-wheel-win-modal__steps li {
  margin-bottom: 0.5rem;
}

.ttt-wheel-win-modal__steps li:last-child {
  margin-bottom: 0;
}

.ttt-wheel-win-modal.is-usdt .ttt-wheel-win-modal__title {
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ttt-tradly-p1);
}

.ttt-wheel-win-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ttt-wheel-win-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.ttt-wheel-win-modal__btn--primary {
  border: none;
  background: var(--ttt-tradly-p1);
  color: rgb(var(--ttt-tradly-nb4));
}

.ttt-wheel-win-modal__btn--primary:hover {
  filter: brightness(1.08);
}

.ttt-wheel-win-modal__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgb(var(--ttt-tradly-nw1));
}

.ttt-wheel-win-modal__btn--secondary:hover:not(:disabled) {
  border-color: rgba(26, 251, 154, 0.4);
  color: var(--ttt-tradly-p1);
}

.ttt-wheel-win-modal__btn--secondary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ttt-wheel-win-modal__rules-link {
  margin-top: 1rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--ttt-tradly-par1);
  font-size: 0.8125rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
  transition: color 0.15s ease;
}

.ttt-wheel-win-modal__rules-link:hover {
  color: var(--ttt-tradly-p1);
}

.ttt-wheel-win-modal.is-lose .ttt-wheel-win-modal__icon {
  background: rgba(148, 163, 184, 0.12);
  color: #94a3b8;
  box-shadow: none;
}

/* Missions */
.ttt-lucky-missions {
  padding-block: 2rem 3rem;
}

.ttt-lucky-missions__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ttt-lucky-missions__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.ttt-lucky-mission-card {
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.section-light .ttt-lucky-mission-card {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.ttt-lucky-mission-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.ttt-lucky-mission-card p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
}

.section-dark-alt .ttt-lucky-mission-card p,
.section-dark .ttt-lucky-mission-card p {
  color: var(--ttt-tradly-par1);
}

.section-light .ttt-lucky-mission-card p {
  color: #4b5563;
}

.ttt-lucky-mission-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ttt-tradly-p1);
}

/* Winners */
.ttt-lucky-winners__list {
  display: grid;
  gap: 0.75rem;
  max-width: 36rem;
  margin-inline: auto;
}

.ttt-lucky-winners__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.section-light .ttt-lucky-winners__item {
  background: #f9fafb;
  border-color: #e5e7eb;
}

.ttt-lucky-winners__name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.ttt-lucky-winners__prize {
  font-size: 0.875rem;
  color: var(--ttt-tradly-p1);
  font-weight: 600;
}

/* FAQ (compact) */
.ttt-lucky-faq {
  padding-block: 2rem 4rem;
}

.ttt-lucky-faq__list {
  max-width: 48rem;
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-light .ttt-lucky-faq__list {
  border-top-color: #e5e7eb;
}

.ttt-lucky-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-light .ttt-lucky-faq__item {
  border-bottom-color: #e5e7eb;
}

.ttt-lucky-faq__trigger {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 0;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: right;
  cursor: pointer;
}

.ttt-lucky-faq__trigger svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--ttt-tradly-p1);
  transition: transform 0.25s ease;
}

.ttt-lucky-faq__item.is-open .ttt-lucky-faq__trigger svg {
  transform: rotate(45deg);
}

.ttt-lucky-faq__panel {
  display: none;
  padding: 0 1.5rem 1rem 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--ttt-muted-on-light);
}

.ttt-lucky-faq__item.is-open .ttt-lucky-faq__panel {
  display: block;
}

/* —— Light theme (data-theme="light") —— */
html[data-theme="light"] .hero-section--lucky-wheel {
  background:
    radial-gradient(ellipse 90% 55% at 15% 0%, rgba(255, 193, 7, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(26, 251, 154, 0.12), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
  color: #111827;
}

html[data-theme="light"] .hero-section--lucky-wheel::after {
  opacity: 0.18;
}

html[data-theme="light"] .hero-section--lucky-wheel .subtitle {
  color: #b45309;
}

html[data-theme="light"] .hero-section--lucky-wheel .title.display-two {
  color: #111827;
}

html[data-theme="light"] .hero-section--lucky-wheel .description {
  color: #4b5563;
}

html[data-theme="light"] .ttt-hero-lucky-wheel__glow {
  background: radial-gradient(circle, rgba(255, 193, 7, 0.28) 0%, rgba(26, 251, 154, 0.1) 45%, transparent 70%);
}

html[data-theme="light"] .ttt-hero-lucky-wheel__ticket {
  filter: drop-shadow(0 4px 14px rgba(15, 23, 42, 0.12));
}

html[data-theme="light"] .ttt-lucky-wheel__visual-wrap {
  filter: drop-shadow(0 12px 36px rgba(15, 23, 42, 0.14));
}

html[data-theme="light"] .ttt-lucky-wheel__pointer {
  filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.2));
}

html[data-theme="light"] .ttt-lucky-wheel__tagline {
  color: #111827;
}

html[data-theme="light"] .ttt-lucky-wheel__prize-rotator {
  background: color-mix(in srgb, var(--ttt-tradly-p1) 12%, #ffffff);
}

html[data-theme="light"] .ttt-lucky-wheel__chances,
html[data-theme="light"] .ttt-lucky-wheel__rules-btn {
  border-color: #e2e8f0;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  backdrop-filter: none;
}

html[data-theme="light"] .ttt-lucky-wheel__chances-label {
  color: #6b7280;
}

html[data-theme="light"] .ttt-lucky-wheel__chances-value {
  color: #111827;
}

html[data-theme="light"] .ttt-lucky-wheel__rules-btn {
  color: #4b5563;
}

html[data-theme="light"] .ttt-lucky-wheel__rules-btn:hover {
  color: #059669;
  border-color: rgba(26, 251, 154, 0.45);
  background: #f0fdf4;
}

html[data-theme="light"] .ttt-lucky-wheel__hint {
  color: #6b7280;
}

html[data-theme="light"] .ttt-lucky-wheel__result {
  border-color: rgba(5, 150, 105, 0.35);
  background: rgba(26, 251, 154, 0.1);
  color: #111827;
}

html[data-theme="light"] .ttt-wheel-win-modal__backdrop {
  background: rgba(15, 23, 42, 0.45);
}

html[data-theme="light"] .ttt-wheel-win-modal__dialog {
  border-color: rgba(5, 150, 105, 0.25);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.12),
    0 0 32px rgba(26, 251, 154, 0.08);
}

html[data-theme="light"] .ttt-wheel-win-modal__close {
  background: #f1f5f9;
  color: #4b5563;
}

html[data-theme="light"] .ttt-wheel-win-modal__close:hover {
  background: #e2e8f0;
  color: #111827;
}

html[data-theme="light"] .ttt-wheel-win-modal__title {
  color: #111827;
}

html[data-theme="light"] .ttt-wheel-win-modal__desc {
  color: #4b5563;
}

html[data-theme="light"] .ttt-wheel-win-modal__btn--secondary {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #111827;
}

html[data-theme="light"] .ttt-wheel-win-modal__btn--secondary:hover:not(:disabled) {
  border-color: rgba(26, 251, 154, 0.45);
  background: #f0fdf4;
  color: #059669;
}

html[data-theme="light"] .ttt-wheel-win-modal__rules-link {
  color: #6b7280;
}

html[data-theme="light"] .ttt-wheel-win-modal.is-lose .ttt-wheel-win-modal__icon {
  background: #f1f5f9;
  color: #64748b;
}

html[data-theme="light"] .ttt-lucky-mission-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .section-dark .ttt-lucky-mission-card p,
html[data-theme="light"] .section-dark-alt .ttt-lucky-mission-card p {
  color: #4b5563;
}

html[data-theme="light"] .ttt-lucky-winners__item {
  background: #ffffff;
  border-color: #e5e7eb;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

html[data-theme="light"] .ttt-lucky-winners__name {
  color: #111827;
}

html[data-theme="light"] .ttt-lucky-faq__list {
  border-top-color: #e5e7eb;
}

html[data-theme="light"] .ttt-lucky-faq__item {
  border-bottom-color: #e5e7eb;
}

html[data-theme="light"] .ttt-lucky-faq__trigger {
  color: #111827;
}

html[data-theme="light"] .ttt-lucky-faq__panel {
  color: #4b5563;
}

