:root {
  --offer-accent: #ef171f;
  --wizard-panel: rgba(11, 16, 19, 0.96);
  --wizard-border: rgba(255, 255, 255, 0.11);
}

html {
  scrollbar-color: var(--offer-accent) rgba(255, 255, 255, 0.08);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

*::-webkit-scrollbar-thumb {
  border: 2px solid #0b1013;
  border-radius: 999px;
  background: var(--offer-accent);
}

html {
  overflow-x: hidden;
  overflow-y: auto;
}

.offer-page {
  overflow-x: clip;
  overflow-y: visible !important;
  height: auto !important;
  min-height: 100dvh;
}

.offer-page main {
  height: auto !important;
  overflow: visible !important;
}

.offer-workspace {
  min-height: calc(100dvh - 118px);
}

.offer-page .offer-hero--compact {
  height: auto !important;
  min-height: 0 !important;
  padding-block: 11px !important;
}

.offer-page .offer-hero--compact .offer-hero__grid {
  height: auto;
  min-height: 0;
}

.offer-page .offer-hero--compact .offer-eyebrow {
  margin: 0;
  font-size: 13px;
  line-height: 1.15;
}

.offer-layout,
.offer-form {
  display: block !important;
  width: 100%;
  max-width: none;
  min-width: 0;
}

.offer-form {
  position: relative;
}

.form-progress {
  width: min(1480px, calc(100vw - 48px));
  margin: 0 auto 18px;
}

.form-progress > div:first-child span {
  font-size: 0;
}

.form-progress > div:first-child span::after {
  content: "TEKLİFİNİZİ BİRLİKTE HAZIRLAYALIM";
  font-size: 0.7rem;
}

.form-progress strong {
  color: var(--offer-accent);
}

.progress-track span {
  background: linear-gradient(90deg, color-mix(in srgb, var(--offer-accent), white 14%), var(--offer-accent));
  transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wizard-stage {
  position: relative;
  width: min(1480px, calc(100vw - 48px));
  min-height: 650px;
  margin: 0 auto;
}

.wizard-stage.is-reviewing {
  min-height: 980px;
}

.wizard-stage:has(> .wizard-step[data-key="games"].is-active) {
  min-height: 540px;
}

.wizard-step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 650px;
  padding: clamp(26px, 4vw, 58px);
  overflow: hidden;
  border: 1px solid var(--wizard-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% -25%, color-mix(in srgb, var(--offer-accent), transparent 78%), transparent 45%),
    linear-gradient(145deg, rgba(18, 23, 27, 0.97), var(--wizard-panel));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
  transform-origin: center center;
  filter: blur(3px);
  transition:
    opacity 440ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

.wizard-step.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  filter: blur(0);
}

.wizard-step[data-key="games"] {
  min-height: 540px;
  padding-block: 28px;
}

.wizard-step.is-before {
  transform: scale(0.92);
}

.wizard-step.is-after {
  transform: scale(0.92);
}

.wizard-step__head {
  width: min(1360px, 100%);
  margin: 0 auto clamp(22px, 3.5vw, 38px);
  text-align: center;
}

.wizard-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--offer-accent);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.wizard-step:not([data-key="games"]) > .wizard-step__head .wizard-kicker {
  position: absolute;
  top: 30px;
  left: 36px;
  margin: 0;
  text-align: left;
}

.wizard-step__head h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.98;
  white-space: nowrap;
  text-transform: uppercase;
}

.wizard-step__head p {
  max-width: 600px;
  margin: 15px auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  line-height: 1.55;
}

.wizard-field {
  width: min(700px, 100%);
  margin: 0 auto;
}

.wizard-choice-field {
  width: min(1120px, 100%);
}

.wizard-field input,
.wizard-field textarea,
.wizard-field select {
  width: 100%;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  background: rgba(4, 7, 9, 0.72);
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.wizard-field textarea {
  min-height: 150px;
  padding: 20px;
  text-align: left;
  resize: vertical;
}

.wizard-field input:focus,
.wizard-field textarea:focus,
.wizard-field select:focus {
  border-color: var(--offer-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--offer-accent), transparent 84%);
  outline: none;
}

.wizard-field .field-hint {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.46);
  text-align: center;
}

.wizard-field .participant-count-input {
  appearance: textfield;
  -moz-appearance: textfield;
  padding-inline: 24px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 750;
  letter-spacing: 0.025em;
}

.wizard-field .participant-count-input::-webkit-inner-spin-button,
.wizard-field .participant-count-input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.wizard-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.wizard-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wizard-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.84);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.wizard-choice:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--offer-accent), white 12%);
}

.wizard-choice > span {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #0b1013;
}

.wizard-choice.is-selected {
  border-color: var(--offer-accent);
  background: color-mix(in srgb, var(--offer-accent), transparent 87%);
  color: #fff;
}

.wizard-choice.is-selected > span {
  border-color: var(--offer-accent);
  background: var(--offer-accent);
}

.wizard-choice b {
  color: var(--offer-accent);
  line-height: 1.2;
  transition: color 500ms ease;
}

@media (min-width: 801px) {
  .wizard-choice b {
    white-space: nowrap;
  }
}

.date-field.wizard-field {
  display: block;
}

.date-selects {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1fr;
  gap: 12px;
}

.date-shortcuts {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.date-shortcuts button {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(700px, 100%);
  margin: clamp(24px, 4vw, 42px) auto 0;
}

.wizard-nav button,
.wizard-review-back {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.wizard-back,
.wizard-review-back {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.72);
}

.wizard-next {
  border: 0;
  background: var(--offer-accent);
  color: white;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--offer-accent), transparent 70%);
}

.wizard-selection-hint {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.84rem;
}

.wizard-step .games-card {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.wizard-step .games-card .wizard-step__head {
  margin-bottom: 18px;
}

.wizard-step .games-card .wizard-step__head h2 {
  font-size: clamp(1.8rem, 3vw, 3.15rem);
}

.wizard-game-head {
  justify-content: center;
  margin-bottom: 16px;
}

.wizard-game-head .card-help {
  display: none;
}

.switch-choice {
  min-height: 44px;
  border-color: color-mix(in srgb, var(--offer-accent), transparent 45%);
  background: color-mix(in srgb, var(--offer-accent), transparent 88%);
}

.game-options {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.game-option > span {
  min-height: 118px !important;
  padding: 12px 8px !important;
  border-radius: 14px !important;
}

.game-option img {
  width: 48px !important;
  height: 48px !important;
}

.game-option small {
  display: none;
}

.game-option input:checked + span {
  border-color: var(--offer-accent) !important;
  background: color-mix(in srgb, var(--offer-accent), transparent 87%) !important;
  box-shadow: 0 0 0 1px var(--offer-accent), 0 12px 28px rgba(0, 0, 0, 0.2) !important;
}

.wizard-step.has-error .wizard-selection-hint {
  color: #ff777b;
}

.wizard-field.has-error select,
.wizard-field input.has-error {
  border-color: #ff5055;
}

.wizard-step--review {
  justify-content: flex-start;
  min-height: 940px;
  overflow: visible;
}

.wizard-step--review .wizard-step__head {
  margin-bottom: 20px;
}

.wizard-step--review .wizard-step__head p {
  max-width: none;
  white-space: nowrap;
}

.wizard-step--review .oya-panel {
  position: relative !important;
  display: block !important;
  width: min(1260px, 100%);
  max-height: none !important;
  margin: 0 auto;
  padding: 14px 0 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.review-edit-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.review-edit-links button {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.wizard-step--review .oya-message,
.wizard-step--review .oya-summary {
  width: 100%;
  margin-bottom: 12px;
}

.wizard-step--review .draft-field {
  display: block;
  width: 100%;
  margin-top: 14px;
}

.wizard-step--review .draft-field textarea {
  width: 100%;
  min-height: 190px !important;
  height: min(24vh, 250px);
  max-height: 250px;
}

.wizard-step--review .draft-actions {
  display: grid !important;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.9fr) minmax(220px, 1.2fr);
  gap: 12px;
  margin-top: 16px;
}

.wizard-step--review .mail-action {
  min-height: 54px;
  font-size: 0.94rem;
}

.wizard-step--review .privacy-note {
  margin-top: 12px;
  text-align: center;
}

.wizard-review-back {
  display: block;
  margin: 14px auto 0;
}

@media (min-width: 1101px) {
  .offer-hero {
    min-height: 92px !important;
    padding-block: 14px !important;
  }

  .offer-hero h1 {
    font-size: clamp(1.65rem, 2.3vw, 2.8rem) !important;
  }

  .offer-workspace {
    height: auto !important;
    min-height: calc(100dvh - 118px) !important;
    padding-block: 12px 22px !important;
  }
}

@media (min-width: 801px) and (max-height: 820px) {
  .offer-hero {
    min-height: 76px !important;
    padding-block: 9px !important;
  }

  .offer-hero .offer-intro {
    display: none;
  }

  .offer-workspace {
    padding-top: 8px !important;
  }

  .form-progress {
    margin-bottom: 10px;
  }

  .wizard-stage {
    min-height: 540px;
  }

  .wizard-step {
    min-height: 530px;
    padding-block: 24px;
  }

  .wizard-step__head {
    margin-bottom: 18px;
  }

  .wizard-step__head h2 {
    font-size: clamp(2rem, 4vw, 2.65rem);
  }

  .wizard-step--review {
    min-height: 860px;
  }

  .wizard-step .games-card .wizard-step__head {
    margin-bottom: 10px;
  }

  .game-option > span {
    min-height: 96px !important;
    padding-block: 8px !important;
  }

  .game-option img {
    width: 42px !important;
    height: 42px !important;
  }

  .wizard-game-head {
    margin-bottom: 9px;
  }

  .wizard-nav {
    margin-top: 18px;
  }
}

@media (max-width: 800px) {
  .offer-page .offer-hero {
    display: none;
  }

  .offer-page .offer-workspace {
    min-height: calc(100dvh - 68px) !important;
    padding-top: 12px;
  }

  .offer-page.is-wizard-progressed .offer-hero {
    display: none;
  }

  .offer-page.is-wizard-progressed .offer-workspace {
    padding-top: 12px;
  }

  .wizard-stage {
    min-height: 650px;
  }

  .wizard-stage.is-reviewing {
    min-height: 1040px;
  }

  .wizard-step {
    min-height: 610px;
    padding: 28px 18px;
    border-radius: 20px;
  }

  .wizard-step:not([data-key="games"]) > .wizard-step__head .wizard-kicker {
    top: 18px;
    left: 20px;
  }

  .wizard-step__head h2 {
    white-space: normal;
  }

  .wizard-step--review {
    min-height: 1000px;
  }

  .wizard-step--review .draft-actions {
    grid-template-columns: 1fr;
  }

  .wizard-choices {
    grid-template-columns: 1fr;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 3px;
  }

  .wizard-choice {
    min-height: 58px;
  }

  .game-options {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-height: 330px;
    overflow-y: auto;
  }

  .game-option > span {
    min-height: 104px !important;
  }

  .wizard-nav--first {
    flex-wrap: wrap;
  }

  .wizard-selection-hint {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .date-selects {
    grid-template-columns: 1fr;
  }

  .date-shortcuts {
    flex-wrap: wrap;
  }
}

/* Son adımda alanı e-posta önizlemesine ayır. */
.wizard-step--review .draft-field textarea {
  height: auto !important;
  min-height: 320px !important;
  max-height: none !important;
  overflow-y: hidden;
  resize: none;
}

@media (min-width: 801px) {
  .wizard-stage.is-reviewing,
  .wizard-step--review {
    min-height: 790px;
  }

  .wizard-step--review {
    padding: 18px 34px 20px;
  }

  .wizard-step--review .wizard-step__head {
    margin-bottom: 20px;
  }

  .wizard-step--review .wizard-step__head h2 {
    font-size: clamp(2.35rem, 3.2vw, 3.15rem);
  }

  .wizard-step--review .wizard-step__head p {
    display: none;
  }

  .wizard-step--review .review-edit-links {
    gap: 10px;
    margin-bottom: 16px;
  }

  .wizard-step--review .review-edit-links button {
    min-height: 34px;
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  .wizard-step--review .oya-summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
    padding: 8px 11px;
  }

  .wizard-step--review .oya-summary p {
    margin: 0;
    line-height: 1.35;
  }

  .wizard-step--review .draft-field {
    margin-top: 5px;
    gap: 5px;
  }

  .wizard-step--review .draft-field textarea {
    padding: 12px;
    line-height: 1.45;
  }

  .wizard-step--review .draft-actions {
    gap: 8px;
    margin-top: 8px;
  }

  .wizard-step--review .mail-action,
  .wizard-step--review .secondary-action {
    min-height: 44px;
  }

  .wizard-step--review .action-status {
    min-height: 8px;
  }

  .wizard-step--review .oya-contact {
    padding-top: 8px;
  }

  .wizard-step--review .privacy-note {
    margin-top: 6px;
    line-height: 1.25;
  }

  .wizard-review-back {
    margin-top: 7px;
  }
}

@media (min-width: 801px) {
  html,
  body.offer-page {
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden !important;
  }

  body.offer-page {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wizard-step,
  .progress-track span {
    transition: none;
  }
}

/* İlk adım: oyun seçimi için ferah ve çakışmasız özel yerleşim */
.wizard-stage:has(> .wizard-step[data-key="games"].is-active) {
  min-height: 540px;
}

.wizard-step[data-key="games"] {
  min-height: 540px;
  justify-content: flex-start;
  padding: 28px clamp(28px, 4vw, 50px) 22px;
}

.wizard-step[data-key="games"] .games-card {
  position: static !important;
  flex: 0 0 auto;
}

.wizard-step[data-key="games"] .games-card .wizard-kicker {
  position: absolute;
  top: 0;
  left: -14px;
  margin: 0;
  text-align: left;
}

.wizard-step[data-key="games"] .switch-choice[hidden] {
  display: none !important;
}

.wizard-step[data-key="games"] .games-card .wizard-step__head {
  margin-bottom: 16px !important;
}

.wizard-step[data-key="games"] .games-card .wizard-step__head h2 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  line-height: 0.95;
}

.wizard-step[data-key="games"] .games-card .wizard-step__head p {
  margin-top: 12px;
}

.wizard-step[data-key="games"] .games-card .card-head-row {
  position: static !important;
  display: flex !important;
  justify-content: center !important;
  min-height: 0 !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
}

.wizard-step[data-key="games"] .switch-choice {
  display: inline-flex !important;
  margin: 0 !important;
}

.wizard-step[data-key="games"] .switch-choice span {
  min-height: 42px;
  padding: 10px 18px !important;
  border-color: color-mix(in srgb, var(--offer-accent), transparent 48%);
  background: color-mix(in srgb, var(--offer-accent), transparent 90%);
  font-size: 10px !important;
}

.wizard-step[data-key="games"] .game-options {
  margin: 0 !important;
}

.wizard-step[data-key="games"] .game-option img {
  width: 64px !important;
  height: 64px !important;
}

.wizard-step[data-key="games"] .game-option > span {
  min-height: 130px !important;
  align-content: center;
  row-gap: 7px;
}

.wizard-step[data-key="games"] .game-option b {
  margin-top: 0 !important;
}

.wizard-step[data-key="games"] .wizard-nav--first {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 100%;
  margin-top: 16px;
  padding-top: 0;
  border-top: 0;
}

.wizard-step[data-key="games"] .wizard-selection-hint {
  margin: 0;
  order: 2;
  text-align: center;
  font-size: 0.76rem;
}

.wizard-step[data-key="games"] .wizard-next {
  order: 1;
  min-width: 220px;
}

@media (min-width: 801px) and (max-height: 820px) {
  .wizard-stage,
  .wizard-stage:has(> .wizard-step[data-key="games"].is-active) {
    min-height: 525px;
  }

  .wizard-step[data-key="games"] {
    min-height: 510px;
    justify-content: center;
    padding: 18px 36px;
  }

  .wizard-step[data-key="games"] .games-card .wizard-kicker {
    top: 12px;
    left: 0;
  }

  .wizard-step[data-key="games"] .games-card .wizard-step__head {
    margin-bottom: 10px !important;
  }

  .wizard-step[data-key="games"] .games-card .wizard-step__head h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
  }

  .wizard-step[data-key="games"] .games-card .wizard-step__head p {
    margin-top: 8px;
  }

  .wizard-step[data-key="games"] .games-card .card-head-row {
    margin-bottom: 12px !important;
  }

  .wizard-step[data-key="games"] .switch-choice span {
    min-height: 36px;
    padding: 7px 15px !important;
  }

  .wizard-step[data-key="games"] .game-options {
    gap: 8px !important;
  }

  .wizard-step[data-key="games"] .game-option > span {
    min-height: 88px !important;
  }

  .wizard-step[data-key="games"] .game-option img {
    width: 44px !important;
    height: 44px !important;
  }

  .wizard-step[data-key="games"] .wizard-nav--first {
    margin-top: 10px;
    gap: 6px;
  }

  .wizard-step[data-key="games"] .wizard-nav button {
    min-height: 44px;
  }
}

@media (max-width: 800px) {
  .wizard-step[data-key="games"] {
    min-height: 690px;
    padding: 24px 16px;
  }

  .wizard-step[data-key="games"] .games-card .wizard-kicker {
    top: -6px;
    left: 4px;
  }

  .wizard-step[data-key="games"] .games-card .wizard-step__head h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .wizard-step[data-key="games"] .wizard-nav--first {
    display: flex;
    gap: 12px;
  }

  .wizard-step[data-key="games"] .wizard-selection-hint {
    text-align: center;
  }

  .wizard-step[data-key="games"] .wizard-next {
    width: 100%;
  }

  .wizard-step[data-key="games"] .game-option img {
    width: 56px !important;
    height: 56px !important;
  }

  .wizard-step[data-key="games"] .game-option > span {
    min-height: 112px !important;
    row-gap: 6px;
  }
}

@media (min-width: 1500px) and (min-height: 850px) {
  .wizard-step[data-key="games"] .game-option img {
    width: 72px !important;
    height: 72px !important;
  }

  .wizard-step[data-key="games"] .game-option > span {
    min-height: 138px !important;
    row-gap: 8px;
  }
}

/* Kısa masaüstü ekranlarında son adımın gönder düğmesini ilk ekranda tut. */
@media (min-width: 801px) and (max-height: 820px) {
  .wizard-stage.is-reviewing {
    min-height: 730px;
  }

  .wizard-step--review {
    min-height: 720px;
    padding: 18px 34px;
  }

  .wizard-step--review .wizard-step__head {
    margin-bottom: 10px;
  }

  .wizard-step--review .wizard-step__head h2 {
    font-size: clamp(2.15rem, 3.6vw, 2.75rem);
  }

  .wizard-step--review .wizard-step__head p {
    display: none;
  }

  .wizard-step--review .review-edit-links {
    gap: 6px;
    margin-bottom: 9px;
  }

  .wizard-step--review .review-edit-links button {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .wizard-step--review .oya-message,
  .wizard-step--review .oya-summary {
    margin-bottom: 8px;
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .wizard-step--review .draft-field {
    margin-top: 8px;
  }

  .wizard-step--review .draft-field textarea {
    min-height: 132px !important;
    height: 132px;
    max-height: 132px;
    padding: 11px;
  }

  .wizard-step--review .draft-actions {
    margin-top: 9px;
  }

  .wizard-step--review .mail-action,
  .wizard-step--review .secondary-action {
    min-height: 44px;
  }
}
.offer-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

/* Premium sahne kontrol paneli seçim kartları */
.wizard-step {
  --control-cyan: var(--offer-accent);
  --control-cyan-rgb: var(--offer-accent-rgb);
}

.wizard-choice {
  position: relative;
  isolation: isolate;
  min-height: 82px;
  padding: 30px 22px 14px 27px;
  overflow: hidden;
  border: 1px solid rgba(157, 177, 184, 0.16);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(26, 32, 36, 0.96), rgba(14, 18, 21, 0.98));
  color: #dbe4e7;
  box-shadow: inset 2px 0 0 rgba(165, 184, 190, 0.2), 0 12px 28px rgba(0, 0, 0, 0.13);
  transition: transform 180ms ease, border-color 220ms ease, background 260ms ease, box-shadow 260ms ease;
}

.wizard-choice::after {
  position: absolute;
  top: 10px;
  right: 12px;
  content: attr(data-category);
  color: rgba(185, 201, 206, 0.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}

.wizard-choice > span {
  position: absolute;
  top: 14px;
  left: 12px;
  width: 3px;
  height: 22px;
  flex: none;
  border: 0;
  border-radius: 2px;
  background: rgba(170, 188, 194, 0.26);
  box-shadow: none;
  transition: width 220ms ease, height 220ms ease, transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.wizard-choice b {
  color: #dbe4e7;
  font-size: 0.92rem;
  font-weight: 720;
  letter-spacing: -0.01em;
}

.wizard-choice:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--control-cyan-rgb), 0.58);
  box-shadow: inset 2px 0 0 rgba(var(--control-cyan-rgb), 0.5), 0 16px 34px rgba(0, 0, 0, 0.2);
}

.wizard-choice.is-selected {
  border-color: rgba(var(--control-cyan-rgb), 0.78);
  background: linear-gradient(135deg, rgba(11, 58, 65, 0.94), rgba(9, 29, 34, 0.98) 72%);
  color: #fff;
  box-shadow: inset 3px 0 0 var(--control-cyan), 0 0 0 1px rgba(var(--control-cyan-rgb), 0.08), 0 13px 30px rgba(0, 190, 207, 0.12), 0 0 22px rgba(var(--control-cyan-rgb), 0.08);
}

.wizard-choice.is-selected::after {
  content: "SEÇİLDİ";
  color: var(--control-cyan);
}

.wizard-choice.is-selected > span {
  top: 13px;
  left: 13px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1px;
  background: var(--control-cyan);
  box-shadow: 0 0 12px rgba(var(--control-cyan-rgb), 0.92);
  transform: rotate(45deg);
}

.wizard-choice.is-selected b {
  color: #f7ffff;
}

.game-option > span {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(157, 177, 184, 0.16) !important;
  border-radius: 11px !important;
  background: linear-gradient(145deg, rgba(26, 32, 36, 0.96), rgba(14, 18, 21, 0.98)) !important;
  box-shadow: inset 2px 0 0 rgba(165, 184, 190, 0.2), 0 12px 28px rgba(0, 0, 0, 0.13) !important;
  transition: transform 180ms ease, border-color 220ms ease, background 260ms ease, box-shadow 260ms ease !important;
}

.game-option > span::before {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 3px;
  height: 22px;
  content: "";
  border-radius: 2px;
  background: rgba(170, 188, 194, 0.26);
  transition: width 220ms ease, height 220ms ease, transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.game-option > span::after {
  position: absolute;
  top: 10px;
  right: 12px;
  content: "OYUN";
  color: rgba(185, 201, 206, 0.48);
  font: 800 8px/1 Inter, Arial, sans-serif;
  letter-spacing: 0.12em;
}

.game-option:hover > span {
  transform: translateY(-3px);
  border-color: rgba(var(--control-cyan-rgb), 0.58) !important;
  box-shadow: inset 2px 0 0 rgba(var(--control-cyan-rgb), 0.5), 0 16px 34px rgba(0, 0, 0, 0.2) !important;
}

.game-option input:checked + span {
  border-color: rgba(var(--control-cyan-rgb), 0.78) !important;
  background: linear-gradient(135deg, rgba(11, 58, 65, 0.94), rgba(9, 29, 34, 0.98) 72%) !important;
  box-shadow: inset 3px 0 0 var(--control-cyan), 0 0 0 1px rgba(var(--control-cyan-rgb), 0.08), 0 13px 30px rgba(0, 190, 207, 0.12), 0 0 22px rgba(var(--control-cyan-rgb), 0.08) !important;
}

.game-option input:checked + span::before {
  top: 13px;
  left: 13px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1px;
  background: var(--control-cyan);
  box-shadow: 0 0 12px rgba(var(--control-cyan-rgb), 0.92);
  transform: rotate(45deg);
}

.game-option input:checked + span::after {
  content: "SEÇİLDİ";
  color: var(--control-cyan);
}

.wizard-live-selection {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  margin: 15px auto 0;
  color: rgba(196, 208, 212, 0.58);
  font-size: 0.76rem;
  line-height: 1.35;
  text-align: center;
}

.wizard-live-selection span {
  font-weight: 650;
}

.wizard-live-selection strong {
  overflow-wrap: anywhere;
  color: var(--control-cyan);
  font-weight: 780;
}

.wizard-step[data-key="games"] .wizard-live-selection {
  margin-top: 12px;
}

.wizard-step[data-key="games"] .wizard-nav--first {
  margin-top: 8px;
}

@media (max-width: 800px) {
  .wizard-step--review .wizard-step__head p {
    white-space: normal;
  }

  .wizard-choice {
    min-height: 76px;
    padding: 29px 15px 13px 24px;
  }

  .wizard-choice b {
    font-size: 0.82rem;
    white-space: normal;
  }

  .wizard-live-selection {
    align-items: center;
    flex-wrap: wrap;
    gap: 3px 6px;
  }
}

/* Mobil oyun seçimi: başlıklar çakışmasın, kartın içinde ikinci bir kaydırma oluşmasın. */
@media (max-width: 800px) {
  .wizard-stage,
  .wizard-stage.is-reviewing,
  .wizard-stage:has(> .wizard-step[data-key="games"].is-active) {
    min-height: 0;
  }

  .wizard-step.is-active {
    position: relative;
    inset: auto;
    min-height: 0;
    height: auto;
    padding: 30px 16px 24px;
    overflow: visible;
    justify-content: flex-start;
  }

  .wizard-step--review.is-active {
    min-height: 0;
  }

  .wizard-step.is-active > .wizard-step__head {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
  }

  .wizard-step:not([data-key="games"]).is-active > .wizard-step__head .wizard-kicker {
    position: static;
    display: block;
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.2;
    text-align: center;
  }

  .wizard-step.is-active > .wizard-step__head h2 {
    max-width: 100%;
    margin: 0 auto;
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
  }

  .wizard-step.is-active > .wizard-step__head p {
    margin-top: 2px;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .wizard-step[data-key="games"] .games-card .wizard-step__head {
    display: grid;
    gap: 10px;
    margin-bottom: 18px !important;
    text-align: center;
  }

  .wizard-step[data-key="games"] .games-card .wizard-kicker {
    position: static;
    display: block;
    margin: 0;
    font-size: 0.62rem;
    line-height: 1.2;
    text-align: center;
  }

  .wizard-step[data-key="games"] .games-card .wizard-step__head h2 {
    max-width: 100%;
    margin: 0 auto;
    font-size: clamp(1.35rem, 6.2vw, 1.7rem);
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
  }

  .wizard-step[data-key="games"] .games-card .wizard-step__head p {
    margin-top: 2px;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .wizard-step[data-key="games"] .game-options {
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0;
  }

  .wizard-step.is-active .wizard-choices {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .wizard-step--review.is-active .draft-actions {
    grid-template-columns: 1fr;
  }

  .wizard-step--review.is-active .wizard-review-back {
    margin-bottom: 2px;
  }

  .wizard-step[data-key="participants"].is-active > .wizard-step__head {
    gap: 7px;
    margin-bottom: 16px;
  }

  .wizard-step[data-key="participants"].is-active > .wizard-step__head h2 {
    max-width: 270px;
    font-size: clamp(1.35rem, 6.2vw, 1.75rem);
    line-height: 1.04;
  }

  .wizard-step[data-key="participants"].is-active > .wizard-step__head p {
    font-size: 0.8rem;
  }

  .wizard-step--review.is-active {
    padding-top: 24px;
  }

  .wizard-step--review.is-active > .wizard-step__head {
    gap: 6px;
    margin-bottom: 13px;
  }

  .wizard-step--review.is-active > .wizard-step__head h2 {
    font-size: clamp(1.3rem, 5.8vw, 1.6rem);
    line-height: 1;
  }

  .wizard-step--review.is-active > .wizard-step__head p {
    max-width: 270px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .wizard-step--review.is-active .review-edit-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 10px;
  }

  .wizard-step--review.is-active .review-edit-links button {
    min-height: 34px;
    padding: 6px 7px;
    font-size: 0.7rem;
    line-height: 1.15;
  }

  .wizard-step--review.is-active .oya-summary {
    margin-bottom: 8px;
    padding: 10px 11px;
  }

  .wizard-step--review.is-active .oya-summary p {
    margin-top: 3px;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .wizard-step--review.is-active .draft-field {
    margin-top: 8px;
  }
}
