/* =============================================================
   Weekly Tech Battle — Dedicated Page Styles (tech-battle.css)
   ============================================================= */

:root {
  --wtb-dark:   #051D64;
  --wtb-navy:   #030f3a;
  --wtb-gold:   #d4af37;
  --wtb-teal:   #359AAD;
  --wtb-silver: #94a3b8;
  --wtb-bronze: #cd7f32;
  --wtb-white:  #ffffff;
  --wtb-muted:  rgba(255,255,255,.6);
}

/* ── Base ── */
.wtb-page { background: #f2f3f7; }

/* ── Top bar ── */
.wtb-topbar {
  background: var(--wtb-navy);
  padding: .7rem 0;
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.wtb-topbar-back {
  display: inline-flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.65); font-size: .84rem; font-weight: 600;
  text-decoration: none; transition: color .18s;
}
.wtb-topbar-back:hover { color: var(--wtb-teal); }

/* ── Hero ── */
.wtb-hero {
  background: linear-gradient(160deg, var(--wtb-navy) 0%, var(--wtb-dark) 60%, var(--wtb-navy) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.wtb-hero-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 400px at 50% 0%,  rgba(53,154,173,.18), transparent 70%),
    radial-gradient(400px 300px at 80% 80%, rgba(212,175,55,.1),  transparent 70%);
}
.wtb-live-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .3em 1em; border-radius: 50px;
  border: 1px solid rgba(53,154,173,.45);
  color: #5ac8dd; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.wtb-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5ac8dd; box-shadow: 0 0 0 3px rgba(53,154,173,.3);
  animation: wtbPulse 2s infinite;
}
@keyframes wtbPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(53,154,173,.3); }
  50%      { box-shadow: 0 0 0 8px rgba(53,154,173,.0); }
}
.wtb-hero-by {
  color: var(--wtb-muted); font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: .6rem;
}
.wtb-hero-by strong { color: var(--wtb-white); }
.wtb-hero-title {
  font-size: clamp(2.8rem, 10vw, 6.5rem);
  font-weight: 900; line-height: 1;
  color: var(--wtb-white); letter-spacing: -.02em;
  margin-bottom: .15rem;
}
.wtb-gold { color: var(--wtb-gold); }

/* Hero title — gold gradient shimmer on "TECH BATTLE" */
.wtb-hero-title .wtb-gold {
  background: linear-gradient(135deg, #fce77d 0%, #d4af37 45%, #f5c842 75%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  color: transparent;
}

.wtb-hero-year {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: .35em;
  margin-bottom: .7rem;
  background: linear-gradient(135deg, #fce77d 0%, #d4af37 40%, #f5c842 70%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  text-shadow: none;
}
.wtb-hero-tagline {
  font-size: .82rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--wtb-muted); margin-bottom: 2rem;
}
.wtb-hero-tagline strong { color: var(--wtb-white); }

/* Event meta bar */
.wtb-event-bar {
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: .75rem 1.5rem;
  margin-bottom: 2rem;
}
.wtb-event-bar-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .4rem 1.25rem;
  text-align: left;
}
.wtb-event-bar-item i { font-size: 1.3rem; color: #5ac8dd; }
.wtb-event-bar-item > div { display: flex; flex-direction: column; }
.wtb-event-bar-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #5ac8dd; line-height: 1;
}
.wtb-event-bar-val { font-size: .88rem; font-weight: 700; color: var(--wtb-white); }
.wtb-event-bar-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.15);
}
@media (max-width: 575px) {
  .wtb-event-bar { flex-direction: column; align-items: flex-start; padding: 1rem; }
  .wtb-event-bar-divider { width: 100%; height: 1px; }
  .wtb-event-bar-item { padding: .4rem 0; }
}

.wtb-btn-register {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .9rem 2.5rem;
  background: var(--wtb-gold); color: var(--wtb-navy);
  border-radius: 12px; font-weight: 900; font-size: 1.05rem;
  text-decoration: none; letter-spacing: .02em;
  box-shadow: 0 12px 32px rgba(212,175,55,.35);
  transition: background .18s, transform .18s, box-shadow .18s;
}
.wtb-btn-register:hover {
  background: #e6c84a; color: var(--wtb-navy);
  transform: translateY(-3px); box-shadow: 0 18px 40px rgba(212,175,55,.45);
}
.wtb-hero-hint { color: var(--wtb-muted); font-size: .78rem; margin-top: .85rem; }

/* ── Shared section typography ── */
.wtb-section-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #5ac8dd; margin-bottom: .5rem;
}
.wtb-section-heading {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900; color: var(--wtb-white);
  margin-bottom: 2.5rem; letter-spacing: -.01em;
}
.wtb-dark-text { color: #051D64 !important; }

/* ── Prizes section ── */
.wtb-prizes-section {
  background: linear-gradient(160deg, #020c30, #04184f, #020c30);
  padding: 4rem 0 5rem;
  text-align: center;
}
.wtb-podium {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 1.25rem; flex-wrap: wrap;
}
.wtb-podium-card {
  width: 220px; border-radius: 18px; padding: 1.75rem 1.25rem 1.5rem;
  text-align: center; border: 1.5px solid;
  position: relative;
}
.wtb-gold-bg   { background: linear-gradient(160deg, #2a1f00, #1a1200); border-color: var(--wtb-gold); }
.wtb-silver-bg { background: linear-gradient(160deg, #181830, #0f0f1e); border-color: var(--wtb-silver); }
.wtb-bronze-bg { background: linear-gradient(160deg, #1a0e00, #100900); border-color: var(--wtb-bronze); }

.wtb-podium-card.wtb-gold   { border-color: var(--wtb-gold)   !important; background: linear-gradient(160deg, #2a1f00, #1a1200) !important; }
.wtb-podium-card.wtb-silver { border-color: var(--wtb-silver) !important; background: linear-gradient(160deg, #181830, #0f0f1e) !important; }
.wtb-podium-card.wtb-bronze { border-color: var(--wtb-bronze) !important; background: linear-gradient(160deg, #1a0e00, #100900) !important; }
.wtb-podium-top { transform: translateY(-20px); box-shadow: 0 24px 48px rgba(212,175,55,.3); }

.wtb-podium-crown { font-size: 2rem; line-height: 1; color: var(--wtb-gold); margin-bottom: .25rem; }
.wtb-podium-medal {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; margin: 0 auto .75rem;
}
.wtb-podium-card.wtb-gold   .wtb-podium-medal { background: var(--wtb-gold);   color: #051D64; }
.wtb-podium-card.wtb-silver .wtb-podium-medal { background: var(--wtb-silver); color: #051D64; }
.wtb-podium-card.wtb-bronze .wtb-podium-medal { background: var(--wtb-bronze); color: #051D64; }
.wtb-podium-prize {
  font-size: 2.2rem; font-weight: 900; line-height: 1; margin-bottom: .2rem;
}
.wtb-podium-card.wtb-gold   .wtb-podium-prize { color: var(--wtb-gold); }
.wtb-podium-card.wtb-silver .wtb-podium-prize { color: var(--wtb-silver); }
.wtb-podium-card.wtb-bronze .wtb-podium-prize { color: var(--wtb-bronze); }
.wtb-podium-rank {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: .3rem;
}
.wtb-podium-voucher { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: .85rem; }
.wtb-podium-extras {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .35rem;
}
.wtb-podium-extras li {
  font-size: .78rem; color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.wtb-podium-extras i { font-size: .75rem; }
.wtb-podium-card.wtb-gold   .wtb-podium-extras i { color: var(--wtb-gold); }
.wtb-podium-card.wtb-silver .wtb-podium-extras i { color: var(--wtb-silver); }
.wtb-podium-card.wtb-bronze .wtb-podium-extras i { color: var(--wtb-bronze); }

@media (max-width: 575px) {
  .wtb-podium-card { width: 100%; max-width: 300px; }
  .wtb-podium-top  { transform: none; }
}

/* ── How it works ── */
.wtb-how-section {
  background: #f2f3f7; padding: 4.5rem 0; text-align: center;
}
.wtb-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: .5rem; flex-wrap: wrap;
}
.wtb-step {
  width: 180px; display: flex; flex-direction: column; align-items: center;
  padding: 1.5rem 1rem;
  background: #fff; border-radius: 14px;
  border: 1.5px solid #e0e4ef;
  box-shadow: 0 4px 16px rgba(5,29,100,.06);
  text-align: center;
}
.wtb-step-num {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  color: #359AAD; margin-bottom: .4rem;
}
.wtb-step-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, #051D64, #359AAD);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.25rem; margin-bottom: .75rem;
}
.wtb-step-title { font-size: .92rem; font-weight: 800; color: #051D64; margin-bottom: .4rem; }
.wtb-step-desc  { font-size: .78rem; color: #64748b; line-height: 1.55; margin: 0; }
.wtb-step-arrow {
  color: #359AAD; font-size: 1.4rem; align-self: center; padding: 0 .25rem;
  margin-top: -1rem;
}
@media (max-width: 767px) {
  .wtb-step-arrow { display: none; }
  .wtb-step { width: 100%; max-width: 300px; flex-direction: row; text-align: left; gap: 1rem; }
  .wtb-step-icon { flex-shrink: 0; }
}

/* ── Why section ── */
.wtb-why-section {
  background: linear-gradient(135deg, #051D64 0%, #359AAD 100%);
  padding: 4.5rem 0; text-align: center;
}
.wtb-why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 1.75rem 1.25rem; height: 100%;
  transition: border-color .2s, transform .2s;
}
.wtb-why-card:hover {
  border-color: rgba(90,200,221,.5); transform: translateY(-4px);
}
.wtb-why-icon { font-size: 1.8rem; color: #5ac8dd; display: block; margin-bottom: .75rem; }
.wtb-why-card h4 { font-size: .95rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.wtb-why-card p  { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0; }

/* ── Registration section ── */
.wtb-reg-section {
  background: #f2f3f7; padding: 4.5rem 0 5rem;
}
.wtb-reg-card {
  background: #fff; border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 16px 48px rgba(5,29,100,.09);
  border: 1.5px solid #e0e4ef;
}
@media (max-width: 575px) { .wtb-reg-card { padding: 1.5rem 1rem; } }

.wtb-section-heading.wtb-dark-text + .wtb-reg-sub,
.wtb-reg-sub {
  font-size: .9rem; color: #64748b;
  margin-bottom: 2rem; line-height: 1.6;
}

.wtb-label {
  display: block; font-size: .82rem; font-weight: 700;
  color: #051D64; margin-bottom: .4rem;
}
.wtb-req { color: #ef4444; }
.wtb-input {
  display: block; width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid #dde2ee;
  border-radius: 10px;
  font-size: .9rem; color: #051D64;
  background: #f8faff;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
.wtb-input:focus {
  border-color: #359AAD;
  box-shadow: 0 0 0 3px rgba(53,154,173,.18);
  background: #fff;
}
.wtb-input::placeholder { color: #94a3b8; }

.wtb-check-row {
  display: flex; align-items: flex-start; gap: .6rem;
  cursor: pointer; font-size: .83rem; color: #475569; line-height: 1.5;
}
.wtb-check-row input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: .15rem;
  accent-color: #051D64;
}

.wtb-btn-submit {
  width: 100%; padding: .9rem;
  background: linear-gradient(135deg, #051D64, #359AAD);
  color: #fff; border: none; border-radius: 12px;
  font-size: 1rem; font-weight: 800;
  cursor: pointer; letter-spacing: .02em;
  transition: opacity .18s, transform .18s;
}
.wtb-btn-submit:hover { opacity: .92; transform: translateY(-2px); }
.wtb-btn-submit:disabled { opacity: .7; transform: none; cursor: not-allowed; }

/* Success state */
.wtb-success { text-align: center; padding: 2rem 1rem; }
.wtb-success-icon { font-size: 3.5rem; color: #359AAD; display: block; margin-bottom: 1rem; }
.wtb-success h3 { font-size: 1.4rem; font-weight: 800; color: #051D64; margin-bottom: .5rem; }
.wtb-success p  { font-size: .95rem; color: #64748b; line-height: 1.6; margin-bottom: 1.5rem; }
.wtb-btn-back {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .7rem 1.75rem;
  background: #051D64; color: #fff;
  border-radius: 10px; font-weight: 700; font-size: .9rem;
  text-decoration: none; transition: background .18s;
}
.wtb-btn-back:hover { background: #359AAD; color: #fff; }

/* ── Footer ── */
.wtb-footer {
  background: var(--wtb-navy);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.wtb-footer-tagline { font-size: .8rem; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; }
.wtb-footer-socials { display: flex; gap: .75rem; }
.wtb-footer-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .9rem;
  text-decoration: none; transition: background .18s, color .18s;
}
.wtb-footer-socials a:hover { background: #359AAD; color: #fff; }

/* ── Form section dividers ── */
.wtb-form-section-title {
  font-size: .72rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: #051D64;
  padding: .6rem 1rem;
  background: #e6f5f8;
  border-left: 3px solid #359AAD;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1rem; margin-top: .25rem;
}
.wtb-form-section-title i { color: #359AAD; margin-right: .4rem; }
.wtb-form-section-title.mt-4 { margin-top: 2rem !important; }

/* ── Textarea ── */
.wtb-textarea { resize: vertical; min-height: 70px; }

/* ── Hint text ── */
.wtb-hint { display: block; font-size: .74rem; color: #94a3b8; margin-top: .3rem; }

/* ── File upload ── */
.wtb-file-input { display: none; }
.wtb-file-label {
  display: flex; align-items: center; gap: .75rem;
  width: 100%; padding: .65rem 1rem;
  border: 1.5px dashed #359AAD; border-radius: 10px;
  background: #eaf6f8; cursor: pointer;
  transition: background .18s, border-color .18s;
}
.wtb-file-label:hover { background: #d4eef2; border-color: #2a7d8e; }
.wtb-file-icon { color: #359AAD; font-size: 1.1rem; flex-shrink: 0; }
.wtb-file-text { font-size: .83rem; color: #475569; }

/* ── Same-as-mobile checkbox ── */
.wtb-same-as-mobile {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; color: #64748b; cursor: pointer; margin-top: .4rem;
}
.wtb-same-as-mobile input { accent-color: #359AAD; }

/* ── Radio group ── */
.wtb-radio-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.wtb-radio-label {
  display: flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem;
  border: 1.5px solid #dde2ee; border-radius: 8px;
  cursor: pointer; font-size: .85rem; color: #051D64;
  transition: border-color .18s, background .18s;
}
.wtb-radio-label:hover { border-color: #359AAD; background: #eaf6f8; }
.wtb-radio-label input[type="radio"] { accent-color: #359AAD; width: 14px; height: 14px; }
.wtb-radio-label:has(input:checked) {
  border-color: #359AAD; background: #d4eef2; font-weight: 700;
}

/* ── Success ID box ── */
.wtb-success-id-box {
  background: linear-gradient(135deg, #eaf6f8, #e8eeff);
  border: 2px solid #359AAD; border-radius: 14px;
  padding: 1.25rem; margin: 1.25rem 0; text-align: center;
}
.wtb-success-id-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: #359AAD; margin-bottom: .3rem;
}
.wtb-success-id-value {
  font-size: 1.35rem; font-weight: 900; color: #051D64;
  letter-spacing: .04em; margin-bottom: .3rem;
}
.wtb-success-id-hint { font-size: .78rem; color: #64748b; margin: 0; }

/* ── Live Countdown ── */
.wtb-cd-caption {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 1.75rem 0 .6rem;
}

.wtb-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1.75rem;
}

.wtb-cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 12px;
  padding: .8rem 1.2rem;
  min-width: 72px;
}

.wtb-cd-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--wtb-gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

.wtb-cd-lbl {
  font-size: .58rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  margin-top: .35rem;
}

.wtb-cd-sep {
  font-size: 2rem;
  font-weight: 800;
  color: var(--wtb-gold);
  align-self: flex-start;
  margin-top: .6rem;
  opacity: .7;
}

@media (max-width: 400px) {
  .wtb-cd-block { min-width: 58px; padding: .65rem .8rem; }
  .wtb-cd-num   { font-size: 1.9rem; }
  .wtb-cd-sep   { font-size: 1.5rem; }
}

/* ════════════════════════════════════════════════════════
   MOBILE — ≤ 767 px  (phones + small tablets)
   ════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Hero ──────────────────────────────────────────── */
  .wtb-hero { padding: 2.5rem 0 2rem; }

  .wtb-live-badge { font-size: .68rem; margin-bottom: .85rem; padding: .28em .85em; }

  .wtb-hero-by { font-size: .68rem; letter-spacing: .14em; margin-bottom: .35rem; }

  .wtb-hero-title {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
    line-height: .96;
  }

  .wtb-hero-year {
    font-size: clamp(1rem, 5.5vw, 1.6rem);
    letter-spacing: .22em;
    margin-bottom: .45rem;
  }

  .wtb-hero-tagline { font-size: .7rem; margin-bottom: 1.1rem; }

  /* Event bar: 2×2 grid — gap acts as the grid line */
  .wtb-event-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1px !important;
    background: rgba(255,255,255,.12) !important;
    padding: 0 !important;
    overflow: hidden;
    margin-bottom: 1.4rem;
    width: 100%;
  }
  .wtb-event-bar-divider { display: none !important; }
  .wtb-event-bar-item {
    background: rgba(255,255,255,.04);
    padding: .65rem .75rem !important;
    gap: .4rem;
  }
  .wtb-event-bar-item i { font-size: 1rem; }
  .wtb-event-bar-label  { font-size: .55rem; }
  .wtb-event-bar-val    { font-size: .78rem; }

  /* Countdown: compact */
  .wtb-cd-caption { font-size: .64rem; margin: 1.1rem 0 .4rem; }
  .wtb-countdown  { gap: .3rem; margin-bottom: 1.2rem; }
  .wtb-cd-block   { min-width: 60px; padding: .6rem .7rem; border-radius: 10px; }
  .wtb-cd-num     { font-size: 1.9rem; }
  .wtb-cd-sep     { font-size: 1.45rem; margin-top: .4rem; }
  .wtb-cd-lbl     { font-size: .5rem; margin-top: .2rem; }

  /* Register button — full width */
  .wtb-btn-register {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: .95rem;
    padding: .85rem 1rem;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(212,175,55,.3);
  }
  .wtb-hero-hint { font-size: .7rem; margin-top: .6rem; }

  /* ── Prizes: all 3 in one combined card ── */
  .wtb-prizes-section { padding: 2.5rem 0 3rem; overflow: visible; }
  .wtb-prizes-section .wtb-section-eyebrow::after { content: none !important; }
  .wtb-prizes-section .wtb-section-eyebrow,
  .wtb-prizes-section .wtb-section-heading { padding: 0; margin-bottom: 1.25rem; }

  .wtb-podium {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    scroll-snap-type: none !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }

  .wtb-podium-card.wtb-gold   { order: 1; }
  .wtb-podium-card.wtb-silver { order: 2; }
  .wtb-podium-card.wtb-bronze { order: 3; }

  .wtb-podium-card.wtb-silver,
  .wtb-podium-card.wtb-bronze { border-top: 1px solid rgba(255,255,255,.1) !important; }

  .wtb-podium-card {
    min-width: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 38px 1fr auto;
    grid-template-areas:
      "medal prize  extras"
      "medal rank   extras";
    column-gap: .85rem;
    row-gap: 0;
    padding: 1rem 1.1rem !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    text-align: left !important;
    box-sizing: border-box;
  }
  .wtb-podium-top { transform: none !important; box-shadow: none; }

  .wtb-podium-crown { display: none !important; }

  .wtb-podium-medal {
    grid-area: medal;
    width: 36px !important; height: 36px !important;
    font-size: .9rem !important;
    margin: 0 !important;
    align-self: center;
  }

  .wtb-podium-prize {
    grid-area: prize;
    font-size: 1.3rem !important;
    line-height: 1 !important;
    margin: 0 !important;
    align-self: flex-end;
  }

  .wtb-podium-rank {
    grid-area: rank;
    font-size: .6rem !important;
    margin: .15rem 0 0 !important;
    align-self: flex-start;
  }

  .wtb-podium-voucher { display: none !important; }

  .wtb-podium-extras {
    grid-area: extras;
    align-self: center;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: .2rem !important;
    margin: 0 !important;
  }
  .wtb-podium-extras li  { font-size: .62rem !important; justify-content: flex-end !important; }
  .wtb-podium-extras i   { font-size: .62rem !important; }

  /* ── How it works ─────────────────────────────────── */
  .wtb-how-section { padding: 2.25rem 0; }
  .wtb-step { max-width: 100%; }

  /* ── Why join ──────────────────────────────────────── */
  .wtb-why-section { padding: 2.25rem 0; }
  .wtb-why-card { padding: 1.25rem 1rem; }
  .wtb-why-card h4 { font-size: .88rem; }
  .wtb-why-card p  { font-size: .78rem; }

  /* ── Registration form ────────────────────────────── */
  .wtb-reg-section { padding: 2.25rem 0 3rem; }
  .wtb-reg-card    { border-radius: 14px; padding: 1.25rem .9rem; }

  .wtb-section-heading  { font-size: 1.4rem !important; margin-bottom: .9rem !important; }
  .wtb-reg-sub          { font-size: .83rem !important; margin-bottom: 1.1rem !important; }
  .wtb-form-section-title { font-size: .62rem; padding: .48rem .7rem; }
  .wtb-label  { font-size: .78rem; }
  .wtb-input  { font-size: .88rem !important; padding: .58rem .8rem; }
  .wtb-textarea { min-height: 60px; }
  .wtb-file-label { padding: .55rem .85rem; }
  .wtb-file-text  { font-size: .78rem; }
  .wtb-radio-label { padding: .35rem .7rem; font-size: .8rem; }
  .wtb-hint { font-size: .7rem; }
  .wtb-btn-submit { font-size: .9rem; padding: .82rem; border-radius: 10px; }

  /* Success screen */
  .wtb-success { padding: 1.5rem .5rem; }
  .wtb-success-icon { font-size: 3rem; }
  .wtb-success h3   { font-size: 1.2rem; }
  .wtb-success p    { font-size: .88rem; }
  .wtb-success-id-value { font-size: 1.15rem; }
}

/* ── Form Validation States ── */
.wtb-field-error {
  display: block;
  font-size: .74rem;
  color: #dc2626;
  font-weight: 600;
  margin-top: .28rem;
  line-height: 1.4;
}
.wtb-field-error:empty { display: none; }

.wtb-api-error {
  padding: .75rem 1rem;
  border-radius: .5rem;
  background: #fff1f1;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.5;
}
.wtb-api-error.d-none { display: none !important; }

.wtb-input.wtb-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.12) !important;
  background: #fff9f9 !important;
}
.wtb-input.wtb-valid {
  border-color: #16a34a !important;
  box-shadow: none !important;
}
.wtb-file-label.wtb-error {
  border-color: #dc2626 !important;
  background: #fff9f9 !important;
}
.wtb-radio-group.wtb-radio-error .wtb-radio-label {
  border-color: rgba(220,38,38,.45);
}
