:root {
  --promo-ink: #07162f;
  --promo-muted: #62748f;
  --promo-blue: #1268ff;
  --promo-line: rgba(46, 126, 230, .16);
}

.promotion-body {
  min-height: 100vh;
}

.promotion-page {
  padding: 112px 16px 56px;
}

.promo-hero {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.promo-copy {
  padding: 28px 8px;
}

.promo-copy h1 {
  margin: 14px 0 14px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .92;
  letter-spacing: -.075em;
  color: var(--promo-ink);
}

.promo-copy p {
  margin: 0;
  max-width: 560px;
  color: var(--promo-muted);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 650;
}

.mode-pill {
  width: fit-content;
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--promo-line);
  box-shadow: 0 14px 40px rgba(24,94,180,.10);
  color: #174779;
  font-size: 13px;
  font-weight: 900;
}

.mode-pill.verified {
  color: #0f7a42;
  background: rgba(235,255,244,.9);
  border-color: rgba(17,150,80,.2);
}

.promo-panel {
  border-radius: 36px;
  padding: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(56,135,226,.16);
  box-shadow: 0 30px 80px rgba(23,86,165,.15), inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(22px);
}

.wheel-wrap {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

#promoWheel {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 28px 45px rgba(22,92,185,.20));
  transition: transform 4.8s cubic-bezier(.12,.72,.08,1);
}

.wheel-pointer {
  position: absolute;
  top: -4px;
  z-index: 3;
  width: 42px;
  height: 58px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: linear-gradient(180deg, #061735, #1268ff);
  border-radius: 10px;
  filter: drop-shadow(0 8px 12px rgba(8,22,49,.18));
}

.spin-core {
  position: absolute;
  z-index: 4;
  width: 124px;
  height: 124px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: white;
  background: radial-gradient(circle at 34% 24%, #6bb6ff, #1268ff 48%, #061735 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 18px 38px rgba(18,104,255,.28);
}

.spin-core b {
  display: block;
  font-size: 21px;
  letter-spacing: -.03em;
}

.spin-core small {
  display: block;
  margin-top: 4px;
  opacity: .72;
  letter-spacing: .15em;
  font-weight: 900;
}

.spin-core:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.promo-actions {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.login-card,
.result-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(248,252,255,.85);
  border: 1px solid var(--promo-line);
}

.login-card label,
.result-card span {
  display: block;
  color: #32649e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.login-row {
  display: flex;
  gap: 10px;
}

.login-row input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(39,116,216,.18);
  border-radius: 16px;
  padding: 14px 14px;
  outline: none;
  color: var(--promo-ink);
  font-weight: 800;
  background: white;
}

.login-row button {
  border: 0;
  border-radius: 16px;
  padding: 0 16px;
  background: #061735;
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.login-card p,
.result-card p {
  color: var(--promo-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 10px 0 0;
  font-weight: 650;
}

.result-card strong {
  display: block;
  color: var(--promo-ink);
  font-size: 28px;
  letter-spacing: -.04em;
}

.promo-rules {
  width: min(1120px, 100%);
  margin: 34px auto 0;
  border-radius: 36px;
  padding: 28px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(56,135,226,.16);
  box-shadow: 0 30px 80px rgba(23,86,165,.10);
}

.rules-head h2 {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -.06em;
  margin: 8px 0 22px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.rules-grid article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(248,252,255,.86);
  border: 1px solid var(--promo-line);
}

.rules-grid h3 {
  margin: 0 0 8px;
  color: var(--promo-ink);
  font-size: 18px;
}

.rules-grid p {
  margin: 0;
  color: var(--promo-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

.probability-box {
  margin-top: 16px;
  border-radius: 22px;
  padding: 16px 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--promo-line);
}

.probability-box summary {
  cursor: pointer;
  font-weight: 950;
  color: var(--promo-ink);
}

.probability-box ul {
  margin: 12px 0 0;
  color: var(--promo-muted);
  line-height: 1.8;
  font-weight: 750;
}

@media (max-width: 900px) {
  .promotion-page {
    padding-top: 96px;
  }
  .promo-hero {
    grid-template-columns: 1fr;
  }
  .promo-copy {
    text-align: center;
  }
  .promo-copy p,
  .mode-pill {
    margin-left: auto;
    margin-right: auto;
  }
  .rules-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .promotion-page {
    padding-left: 10px;
    padding-right: 10px;
  }
  .promo-panel,
  .promo-rules {
    border-radius: 30px;
    padding: 16px;
  }
  .spin-core {
    width: 100px;
    height: 100px;
  }
  .spin-core b {
    font-size: 18px;
  }
  .login-row {
    flex-direction: column;
  }
  .login-row button {
    min-height: 46px;
  }
  .rules-grid {
    grid-template-columns: 1fr;
  }
}


/* Requested fullscreen menu styles */
.header-actions .lang-switch { display: none !important; }
body.menu-open { overflow: hidden !important; }
.platform-mobile-menu {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-height: 100vh !important;
  overflow-y: auto !important;
  padding: 18px 16px 34px !important;
  border-radius: 0 !important;
  background: rgba(255,255,255,.98) !important;
  border: 0 !important;
  z-index: 10000 !important;
  box-shadow: none !important;
}
.platform-mobile-menu:not(.open) { display: none !important; }
.platform-menu-top { display:flex; align-items:flex-start; justify-content:space-between; gap:18px; padding:6px 2px 14px; border-bottom:1px solid rgba(38,120,220,.12); margin-bottom:12px; }
.mobile-close-btn { width:46px; height:46px; border:0; border-radius:999px; color:#07162f; background:#eef6ff; font-size:30px; line-height:1; font-weight:700; }
.mobile-lang-switch { display:flex; gap:8px; padding:10px; margin:0 0 12px; border-radius:18px; background:rgba(240,247,255,.9); border:1px solid rgba(38,120,220,.12); }
.mobile-lang-switch .lang-btn { flex:1; min-height:40px; border:0; border-radius:13px; font-weight:950; color:#273d60; background:transparent; }
.mobile-lang-switch .lang-btn.active { color:#1268ff; background:#fff; box-shadow:0 10px 26px rgba(18,104,255,.10); }
/* Cleaner full-screen platform menu */
.premium-mobile-menu {
  padding: 20px 18px 34px !important;
  background:
    radial-gradient(circle at 75% 5%, rgba(18,104,255,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(242,248,255,.98)) !important;
}

.premium-menu-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.premium-menu-card {
  min-height: 86px;
  padding: 18px;
  border-radius: 22px;
  text-decoration: none;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(38,120,220,.13);
  box-shadow: 0 18px 46px rgba(24,94,180,.08), inset 0 1px 0 rgba(255,255,255,.94);
}

.premium-menu-card small {
  display: block;
  color: #1268ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.premium-menu-card strong {
  display: block;
  color: #07162f;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -.03em;
}

.premium-member-login {
  margin-top: 16px !important;
  min-height: 62px !important;
  border-radius: 22px !important;
  background: #07162f !important;
  color: #fff !important;
}

@media (max-width: 760px) {
  .translated-product-copy {
    padding: 28px 24px 0;
  }

  .premium-product-image {
    padding: 12px 10px 28px;
  }

  .premium-product-image img {
    border-radius: 30px !important;
  }
}
