:root {
  --wm-blue: #0071ce;
  --wm-blue-hover: #005ea6;
  --wm-yellow: #ffc220;
  --wm-yellow-hover: #eab015;
  --wm-dark: #ffffff; /* Headings in white */
  --wm-bg: #004b8d; /* Brighter rich blue background */
  --card-bg: #0060ad; /* Brighter, vibrant blue for cards */
  --text-main: #ffffff; /* White text */
  --text-muted: #dbeafe; /* Brighter muted light blue text */
  --border-color: rgba(255, 255, 255, 0.2); /* Semi-transparent border */
  --success: #4ade80; /* Bright green */
  --error: #f87171; /* Bright red */
  --font-wm: 'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-wm);
  background-color: var(--wm-bg);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Top Banner */
.wm-top-banner {
  background-color: #00366b; /* Lighter than before, but dark enough to contrast */
  color: #ffffff;
  font-size: 13px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.wm-top-banner a {
  color: #ffffff;
  text-decoration: underline;
}

/* Header */
.wm-header {
  background-color: var(--wm-blue);
  color: white;
  padding: 20px;
  border-bottom: 4px solid var(--wm-yellow);
}
.wm-header-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wm-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wm-logo-icon {
  font-size: 36px;
  color: var(--wm-yellow);
}
.wm-header-title {
  display: flex;
  flex-direction: column;
}
.wm-title-main {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.wm-title-sub {
  font-size: 13px;
  color: #e6f1f9;
  font-weight: 500;
  margin-top: 2px;
}

/* Main Container */
.wm-main {
  max-width: 700px;
  margin: 30px auto;
  padding: 0 15px;
}
.wm-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-bottom: 30px;
}

/* Hero Section */
.wm-hero {
  padding: 30px 30px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
}
.wm-hero--compact {
  padding: 20px 22px 18px;
  text-align: left;
  border-bottom: none;
}
.wm-hero-compact-top {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 0;
}
.wm-gift-card-landscape-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 100%;
  gap: 20px;
}
.wm-gift-card-landscape-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wm-gift-card-landscape-row--bottom {
  align-items: flex-end;
}
.wm-gift-card-landscape-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.wm-gift-card-landscape-note {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
  max-width: 220px;
}
.wm-gift-card-chip {
  width: 44px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(255, 194, 32, 0.45), rgba(255, 194, 32, 0.15));
  border: 1px solid rgba(255, 194, 32, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  flex-shrink: 0;
  transform: rotate(-8deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.wm-card-label-landscape {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.92);
}
.wm-hero-compact-copy {
  flex: 1;
  min-width: 0;
}
.wm-hero-compact-copy .wm-badge {
  margin-bottom: 8px;
  padding: 5px 12px;
  font-size: 11px;
}
.wm-hero--compact h2 {
  margin: 0 0 8px;
  font-size: clamp(19px, 4.5vw, 24px);
  line-height: 1.25;
  text-align: left;
}
.wm-hero-compact-sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  font-weight: 500;
}
.wm-tags--inline {
  margin-top: 14px;
  margin-bottom: 0;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.wm-tags--inline span {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 999px;
}
.wm-home-quiz--compact {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--border-color);
  margin-top: 4px;
}
.wm-home-quiz--compact .wm-question-area {
  padding: 4px 0 0;
}
.wm-home-quiz--compact .wm-q-badge {
  margin-bottom: 10px;
}
.wm-home-quiz--compact .wm-q-text {
  font-size: 19px;
  margin-bottom: 10px;
  line-height: 1.35;
}
.wm-home-quiz--compact .wm-q-helper {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.45;
}
.wm-home-quiz--compact .wm-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wm-home-quiz--compact .wm-option-btn {
  padding: 14px 16px;
}
.wm-badge {
  display: inline-block;
  background: rgba(255, 194, 32, 0.15);
  color: var(--wm-yellow);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 194, 32, 0.3);
}
.wm-hero h2 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}
.wm-hero h2 span {
  color: var(--wm-yellow);
}
.wm-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.wm-tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.wm-tags span i {
  color: var(--wm-yellow);
}

/* CSS Gift Card */
.wm-gift-card {
  /* Darker blue to contrast with the bright card background */
  color: #ffffff;
  border-radius: 16px;
  padding: 24px 30px;
  margin: 0 auto 28px;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1.58 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25), inset 0 2px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}
.wm-gift-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 50%;
  height: 160%;
  background: linear-gradient(90deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.0) 100%);
  transform: rotate(35deg);
  pointer-events: none;
}
.wm-gift-card::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 194, 32, 0.15) 0%, rgba(255, 194, 32, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.wm-card-brand {
  font-family: var(--font-wm);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.wm-card-brand .spark {
  color: var(--wm-yellow);
  font-size: 24px;
  animation: spin-spark 12s linear infinite;
}
.wm-card-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}
.wm-card-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: -2px;
}
.wm-card-value {
  font-size: 64px;
  font-weight: 900;
  color: var(--wm-yellow);
  text-shadow: 0 4px 12px rgba(0,0,0,0.15);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

/* Horizontal gift card on first screen — overrides default portrait card */
.wm-gift-card.wm-gift-card--landscape {
  width: 100%;
  max-width: 100%;
  margin: 0;
  aspect-ratio: 2.15 / 1;
  min-height: 156px;
  height: auto;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  gap: 0;
  padding: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #004f9a 0%, #003b73 42%, #002849 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.wm-gift-card-landscape-stripe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--wm-yellow) 0%, #ffe08a 50%, var(--wm-yellow) 100%);
  z-index: 3;
}
.wm-gift-card.wm-gift-card--landscape .wm-gift-card-landscape-inner {
  padding: 22px 26px 20px;
  padding-top: 26px;
}
.wm-gift-card.wm-gift-card--landscape .wm-card-brand {
  font-size: clamp(22px, 5vw, 28px);
}
.wm-gift-card.wm-gift-card--landscape .wm-card-brand .spark {
  font-size: 20px;
}
.wm-gift-card.wm-gift-card--landscape .wm-card-label-landscape {
  font-size: 12px;
  letter-spacing: 0.18em;
}
.wm-gift-card.wm-gift-card--landscape .wm-card-value {
  font-size: clamp(40px, 10vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1;
  flex-shrink: 0;
  text-align: right;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

@keyframes spin-spark {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.wm-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.wm-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  flex: 1;
}
.wm-step-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--wm-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid rgba(255, 194, 32, 0.3);
}

.wm-card-body {
  padding: 30px;
}
.wm-home-quiz {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}
.wm-home-quiz .wm-progress-header {
  margin-top: 0;
}
.wm-home-quiz .wm-question-area {
  padding-left: 0;
  padding-right: 0;
}
#preloader .wm-checking,
#preloader .wm-email-screen {
  padding: 22px 24px 26px;
  border-top: 1px solid var(--border-color);
}
.wm-email-head {
  text-align: center;
  margin-bottom: 14px;
}
.wm-email-head-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #bbf7d0;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 999px;
}
.wm-email-head-badge i {
  color: var(--success);
}
.wm-email-head-title {
  margin: 0;
  font-size: clamp(20px, 4.5vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.wm-email-head-title span {
  color: var(--wm-yellow);
}
.wm-email-brief {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(0, 113, 220, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.wm-email-alert-box {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 194, 32, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.wm-email-alert-box-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--wm-yellow);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wm-email-alert-box-title i {
  font-size: 15px;
  opacity: 0.95;
}
.wm-email-alert-box-list {
  margin: 0;
  padding: 0 0 0 18px;
  list-style: disc;
}
.wm-email-alert-box-list li {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.wm-email-alert-box-list li:last-child {
  margin-bottom: 0;
}
.wm-email-brief p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: left;
}
.wm-email-screen .wm-form-group {
  margin-bottom: 14px;
}
.wm-email-screen .wm-email-field-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}
.wm-email-screen #btnClaim,
.wm-email-screen .wm-btn-claim {
  width: 100%;
  margin-bottom: 12px;
}
.wm-email-screen .wm-email-footnote {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Trust Bar */
.wm-trust-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05); /* Brighter trust bar background */
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.wm-trust-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wm-trust-bar i {
  color: var(--success);
}

/* Buttons */
.wm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-wm);
  transition: all 0.2s ease;
}
.wm-btn-primary {
  background-color: var(--wm-yellow);
  color: #00366b; /* Adjusted button text color to fit */
  box-shadow: 0 4px 16px rgba(255, 194, 32, 0.25);
}
.wm-btn-primary:hover {
  background-color: var(--wm-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 194, 32, 0.4);
}
.wm-btn-primary:active {
  transform: scale(0.98);
}
.wm-btn:disabled {
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Quiz Section */
.wm-progress-header {
  padding: 24px 30px 12px;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}
.wm-progress-bar {
  margin: 0 30px 24px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}
.wm-progress-fill {
  height: 100%;
  background-color: var(--wm-yellow);
  transition: width 0.4s ease;
}
.wm-question-area {
  padding: 0 30px 30px;
}
.wm-question-slide {
  display: none;
}
.wm-question-slide.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}
.wm-q-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wm-q-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 10px;
  line-height: 1.3;
}
.wm-q-helper {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.wm-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wm-option-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.wm-option-btn:hover {
  border-color: var(--wm-yellow);
  background: rgba(255, 255, 255, 0.12);
}
.wm-option-btn.selected {
  border-color: var(--success);
  background: rgba(74, 222, 128, 0.15);
}
.wm-option-btn .wm-opt-icon {
  font-size: 22px;
  color: var(--wm-yellow);
  width: 26px;
  text-align: center;
}
.wm-option-btn.selected .wm-opt-icon {
  color: var(--success);
}

/* Checking Screen */
.wm-checking {
  padding: 50px 30px;
  text-align: center;
}
.wm-spinner {
  font-size: 48px;
  color: var(--wm-yellow);
  margin-bottom: 20px;
}
.wm-checking h3 {
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--text-main);
}
.wm-check-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 0;
  max-width: 380px;
  text-align: left;
}
.wm-check-list li {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

/* Email Screen — compact: form above the fold */
.wm-email-screen {
  padding: 16px 20px 20px;
}
.wm-email-topline {
  margin: 0 0 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}
.wm-email-topline i {
  color: var(--success);
  margin-right: 4px;
}
.wm-email-topline strong {
  color: var(--wm-yellow);
  font-weight: 800;
}
.wm-email-form-block {
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 194, 32, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.wm-form-group--email {
  margin-bottom: 12px;
}
.wm-email-field-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-main);
}
.wm-btn-claim {
  width: 100%;
}
.wm-email-notice-below {
  padding: 12px 14px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: rgba(0, 113, 220, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: left;
}
.wm-email-notice-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}
.wm-email-notice-title i {
  color: var(--wm-yellow);
  margin-right: 6px;
}
.wm-email-notice-below p {
  margin: 0 0 8px;
  text-align: left;
}
.wm-email-notice-below ul {
  margin: 0;
  padding-left: 18px;
}
.wm-email-notice-below li {
  margin-bottom: 4px;
}
.wm-email-notice-below li:last-child {
  margin-bottom: 0;
}
.wm-email-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
  opacity: 0.85;
}
.wm-card-footnote {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  line-height: 1.45;
}

/* Legacy email win styles */
.wm-email-compact-head {
  text-align: center;
  margin-bottom: 16px;
}
.wm-email-compact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #bbf7d0;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 999px;
}
.wm-email-compact-badge i {
  color: var(--success);
}
.wm-email-compact-title {
  margin: 0;
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.wm-email-compact-title span {
  color: var(--wm-yellow);
}
.wm-email-form-block {
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 194, 32, 0.35);
}
.wm-form-group--email {
  margin-bottom: 14px;
}
.wm-email-field-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-main);
}
.wm-btn-claim {
  width: 100%;
  margin-top: 0;
}
.wm-email-more {
  margin: 0 0 10px;
  padding: 0;
  font-size: 13px;
  color: var(--text-muted);
}
.wm-email-more summary {
  cursor: pointer;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  list-style: none;
}
.wm-email-more summary::-webkit-details-marker {
  display: none;
}
.wm-email-more p {
  margin: 0 0 8px;
  line-height: 1.45;
  text-align: left;
}
.wm-email-more ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.45;
}
.wm-email-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
}
.wm-card-footnote {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  line-height: 1.45;
}

/* Legacy email win styles (unused on compact layout; kept for safety) */
.wm-email-win-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255, 230, 120, 0.55) 0%, rgba(255, 194, 32, 0.22) 45%, rgba(180, 120, 0, 0.12) 100%);
  border: 2px solid #ffc220;
  box-shadow:
    0 0 0 4px rgba(255, 194, 32, 0.2),
    0 0 24px rgba(255, 194, 32, 0.35),
    0 10px 28px rgba(0, 0, 0, 0.25);
  font-size: 40px;
  color: #ffc220;
  animation: wm-email-win-pulse 2.4s ease-in-out infinite;
}
.wm-email-win-icon > .fa-trophy {
  color: #ffc220;
  background: linear-gradient(165deg, #fff0a8 0%, #ffc220 40%, #d4a017 75%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(139, 90, 0, 0.45)) drop-shadow(0 0 10px rgba(255, 194, 32, 0.5));
}
.wm-email-win-spark {
  position: absolute;
  color: #ffe08a;
  font-size: 14px;
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 194, 32, 0.85);
  animation: wm-email-spark 2s ease-in-out infinite;
}
.wm-email-win-spark--1 {
  top: 4px;
  right: 2px;
  animation-delay: 0.2s;
}
.wm-email-win-spark--2 {
  bottom: 6px;
  left: 0;
  font-size: 11px;
  animation-delay: 0.8s;
}
@keyframes wm-email-win-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 4px rgba(255, 194, 32, 0.2),
      0 0 24px rgba(255, 194, 32, 0.35),
      0 10px 28px rgba(0, 0, 0, 0.25);
  }
  50% {
    transform: scale(1.04);
    box-shadow:
      0 0 0 8px rgba(255, 194, 32, 0.28),
      0 0 32px rgba(255, 194, 32, 0.5),
      0 12px 32px rgba(0, 0, 0, 0.28);
  }
}
@keyframes wm-email-spark {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.2) rotate(12deg); opacity: 1; }
}
.wm-email-win-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 14px;
  padding: 8px 16px;
  max-width: 100%;
  width: fit-content;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.45);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #bbf7d0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wm-email-win-chip i {
  color: var(--success);
}
.wm-email-win-heading {
  text-align: center;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.wm-email-win-heading span,
.wm-email-win-sub strong {
  color: var(--wm-yellow);
}
.wm-email-win-sub {
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 22px;
  color: var(--text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.wm-success-icon {
  font-size: 64px;
  color: var(--success);
  text-align: center;
  margin-bottom: 20px;
}
.wm-email-screen h3 {
  text-align: center;
  font-size: 28px;
  color: var(--text-main);
  margin: 0 0 12px;
}
.wm-email-screen > p:not([class]) {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 24px;
  color: var(--text-muted);
}
.wm-reward-box {
  background: rgba(255, 194, 32, 0.15);
  border: 1px solid rgba(255, 194, 32, 0.4);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--wm-yellow);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wm-reward-box--winner {
  position: relative;
  overflow: hidden;
  padding: 20px 22px;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 194, 32, 0.75);
  background: linear-gradient(135deg, rgba(255, 194, 32, 0.28) 0%, rgba(255, 194, 32, 0.08) 50%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  justify-content: flex-start;
  text-align: left;
  gap: 16px;
}
.wm-reward-box-shine {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(18deg);
  animation: wm-reward-shine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes wm-reward-shine {
  0%, 100% { left: -40%; opacity: 0; }
  45% { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}
.wm-reward-box-icon {
  font-size: 36px;
  color: var(--wm-yellow);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}
.wm-reward-box-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.wm-reward-box-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}
.wm-reward-box-amount {
  font-size: clamp(20px, 4.5vw, 26px);
  font-weight: 900;
  color: var(--wm-yellow);
  line-height: 1.15;
}
.wm-email-next-notice {
  background: rgba(0, 113, 220, 0.12);
  border: 1px solid rgba(0, 113, 220, 0.35);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 22px;
  text-align: left;
  color: var(--text-main);
}
.wm-email-next-notice--winner {
  position: relative;
  padding: 18px 16px 14px;
  margin-bottom: 20px;
  border-radius: 14px;
  border: 2px solid rgba(255, 194, 32, 0.55);
  background: linear-gradient(160deg, rgba(255, 194, 32, 0.22) 0%, rgba(0, 80, 150, 0.35) 45%, rgba(0, 50, 100, 0.5) 100%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.wm-email-next-details {
  margin: 0;
}
.wm-email-next-details-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 900;
  font-size: 15px;
  color: #ffffff;
  list-style: none;
  padding: 4px 0 8px;
}
.wm-email-next-details-summary::-webkit-details-marker {
  display: none;
}
.wm-email-next-details-summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  font-size: 12px;
  color: var(--wm-yellow);
  transition: transform 0.2s ease;
}
.wm-email-next-details[open] .wm-email-next-details-summary::after {
  transform: rotate(180deg);
}
.wm-email-next-details-body {
  padding-top: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .wm-email-win-icon,
  .wm-email-win-spark,
  .wm-reward-box-shine {
    animation: none !important;
  }
  .wm-email-win-icon {
    transform: none;
  }
}
.wm-email-next-notice-ribbon {
  position: absolute;
  top: -1px;
  right: 16px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #00366b;
  background: var(--wm-yellow);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.wm-email-next-notice-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 17px;
  margin-bottom: 12px;
  color: #ffffff;
}
.wm-email-next-notice-head i {
  font-size: 22px;
  color: var(--wm-yellow);
}
.wm-email-next-notice-lead,
.wm-email-next-notice p {
  text-align: left;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 14px;
  color: #e8f4ff;
}
.wm-email-next-notice p strong,
.wm-email-next-notice-lead strong {
  color: var(--wm-yellow);
  font-weight: 800;
}
.wm-email-next-notice ul,
.wm-email-next-notice-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.wm-email-next-notice li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.wm-email-next-notice li:last-child {
  margin-bottom: 0;
}
.wm-email-next-notice li i {
  color: var(--wm-yellow);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.wm-email-next-notice-privacy {
  margin-top: 10px !important;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  font-weight: 600;
  color: #ffffff !important;
}
.wm-email-next-notice-privacy i {
  color: var(--success) !important;
}
.wm-email-next-notice-foot {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0 !important;
  padding: 10px 12px;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 700;
  color: var(--wm-yellow) !important;
  background: rgba(255, 194, 32, 0.12);
  border-radius: 8px;
  line-height: 1.45;
}
.wm-email-next-notice-foot i {
  margin-top: 2px;
}
.wm-email-field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--wm-yellow);
}
.wm-form-group {
  margin-bottom: 24px;
  text-align: left;
}
.wm-form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-main);
}
.wm-input {
  width: 100%;
  padding: 16px 18px;
  font-size: 17px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  outline: none;
  font-family: var(--font-wm);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wm-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.wm-input:focus {
  border-color: var(--wm-yellow);
  box-shadow: 0 0 0 3px rgba(255, 194, 32, 0.3);
  background: rgba(255, 255, 255, 0.15);
}
.wm-input.error {
  border-color: var(--error);
  background-color: rgba(248, 113, 113, 0.15);
}
.wm-error-msg {
  display: none;
  color: var(--error);
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}
.wm-error-msg.show {
  display: block;
}

/* Toast */
.wm-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #00366b;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.wm-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.wm-toast i {
  color: var(--success);
}

/* Footer */
.wm-footer {
  text-align: center;
  padding: 20px 20px 40px;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 700px;
  margin: 0 auto;
}
.wm-footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
}
.wm-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.wm-footer-links a:hover {
  color: var(--wm-yellow);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .wm-hero h2 { font-size: 28px; }
  .wm-hero--compact h2 { font-size: 18px; }
  .wm-hero-compact-top {
    flex-direction: column;
    align-items: stretch;
  }
  .wm-gift-card.wm-gift-card--landscape {
    aspect-ratio: 2.05 / 1;
    min-height: 148px;
  }
  .wm-gift-card.wm-gift-card--landscape .wm-gift-card-landscape-inner {
    padding: 20px 18px 18px;
    padding-top: 24px;
    gap: 16px;
  }
  .wm-gift-card.wm-gift-card--landscape .wm-card-value {
    font-size: 38px;
  }
  .wm-gift-card-landscape-note {
    font-size: 11px;
    max-width: 160px;
  }
  .wm-hero--compact {
    padding: 16px 16px 14px;
  }
  .wm-home-quiz--compact {
    padding: 16px 16px 20px;
  }
  .wm-card-body, .wm-question-area, .wm-checking, .wm-email-screen {
    padding: 16px 16px 20px;
  }
  .wm-email-form-block {
    padding: 14px;
  }
  .wm-email-compact-title {
    font-size: 20px;
  }
  .wm-steps { gap: 10px; }
  .wm-step-item { font-size: 12px; }
  .wm-step-icon { width: 36px; height: 36px; font-size: 16px; }
  .wm-trust-bar { flex-direction: column; align-items: center; gap: 12px; }
  .wm-q-text { font-size: 21px; }
  
  /* Gift Card Mobile Adjustments (portrait hero only) */
  .wm-gift-card:not(.wm-gift-card--landscape) {
    padding: 20px 24px;
    height: 190px;
    aspect-ratio: auto;
    margin-bottom: 24px;
  }
  .wm-card-brand { font-size: 28px; }
  .wm-card-brand .spark { font-size: 20px; }
  .wm-card-value { font-size: 52px; }
}
