/* Vaulty podium redesign — reorder into a real podium shape (2nd-1st-3rd),
   medal color coding, crown + glow on 1st place, staggered entrance. */

.vlt-podium {
  align-items: end;
}

/* ---- reorder into true podium shape ---- */
.vlt-podium__card:nth-child(1) { order: 2; }  /* 1st place -> middle */
.vlt-podium__card:nth-child(2) { order: 1; }  /* 2nd place -> left   */
.vlt-podium__card:nth-child(3) { order: 3; }  /* 3rd place -> right  */

/* ---- medal color coding ---- */
.vlt-podium__card:nth-child(1) {
  border-color: rgba(253, 224, 71, 0.55);
  z-index: 3;
}
.vlt-podium__card:nth-child(2) {
  border-color: rgba(209, 213, 219, 0.45);
  z-index: 2;
}
.vlt-podium__card:nth-child(3) {
  border-color: rgba(217, 119, 6, 0.5);
  z-index: 2;
}

/* ---- 1st place badge, larger + glowing ---- */
.vlt-podium__card:nth-child(1) .vlt-podium__badge {
  width: 88px;
  height: 88px;
  top: -44px;
  box-shadow: 0 4px 20px rgba(253, 224, 71, 0.55);
}

/* ---- floating crown above 1st place ---- */
.vlt-podium__card:nth-child(1)::before {
  content: "";
  position: absolute;
  top: -76px;
  left: 50%;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fde047'><path d='M2 18h20l-1.6-9.2-5 4-3.4-7.3-3.4 7.3-5-4L2 18z'/><circle cx='2' cy='6.5' r='1.7'/><circle cx='12' cy='3.6' r='1.9'/><circle cx='22' cy='6.5' r='1.7'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 2px 6px rgba(253, 224, 71, 0.6));
  animation: vaultyCrownBob 2.2s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
}

/* ---- staggered entrance ---- */
.vlt-podium__card:nth-child(1) {
  animation: vaultyFadeUpBig 0.6s ease-out 0.3s both,
             vaultyGlowPulse 2.6s ease-in-out 1s infinite;
}
.vlt-podium__card:nth-child(2) {
  animation: vaultyFadeUp 0.5s ease-out 0.1s both;
}
.vlt-podium__card:nth-child(3) {
  animation: vaultyFadeUp 0.5s ease-out 0.2s both;
}

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

@keyframes vaultyFadeUpBig {
  from { opacity: 0; transform: translateY(28px) scale(1); }
  to   { opacity: 1; transform: translateY(0) scale(1.06); }
}

@keyframes vaultyGlowPulse {
  0%, 100% { box-shadow: 0 0 18px 0 rgba(253, 224, 71, 0.3), 0 4px 24px rgba(0,0,0,.35); }
  50%      { box-shadow: 0 0 38px 6px rgba(253, 224, 71, 0.6), 0 4px 24px rgba(0,0,0,.35); }
}

@keyframes vaultyCrownBob {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-4deg); }
  50%      { transform: translateX(-50%) translateY(-7px) rotate(4deg); }
}

/* ---- restored gradient color grading on header/nav CTA buttons ---- */
.vlt-header-btn {
  background: linear-gradient(120deg, #0b2f4a 0%, #0d4d6b 35%, #12a4c9 75%, #4fd8f0 100%);
  border: 1px solid rgba(120, 230, 255, 0.55);
  box-shadow: 0 0 16px rgba(20, 200, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: box-shadow .2s ease, transform .2s ease;
}
.vlt-header-btn:hover {
  box-shadow: 0 0 24px rgba(20, 200, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
.vlt-header-btn--dark {
  background: linear-gradient(120deg, #10131a 0%, #1c2a33 35%, #0d4d6b 75%, #12a4c9 100%);
}

.vlt-mobile-menu__signup {
  background: linear-gradient(120deg, #0b2f4a 0%, #0d4d6b 35%, #12a4c9 75%, #4fd8f0 100%);
  border: 1px solid rgba(120, 230, 255, 0.55);
  box-shadow: 0 0 18px rgba(20, 200, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ---- FAQ accordion (Stake page) ---- */
.vlt-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vlt-faq-item {
  background: #142d3299;
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-left: 4px solid #00b4e5;
  border-radius: 12px;
  overflow: hidden;
}

.vlt-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 18px 20px;
  font-family: Orbitron, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  color: #fff;
}

.vlt-faq-chevron {
  flex-shrink: 0;
  color: #00e5ff;
  transition: transform .25s ease;
}

.vlt-faq-item--open .vlt-faq-chevron {
  transform: rotate(180deg);
}

.vlt-faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.vlt-faq-item--open .vlt-faq-a-wrap {
  grid-template-rows: 1fr;
}

.vlt-faq-a-inner {
  overflow: hidden;
}

.vlt-faq-a-inner p {
  margin: 0;
  padding: 0 20px 18px;
  border-top: 1px solid rgba(0, 229, 255, 0.15);
  padding-top: 14px;
  color: #ffffffb3;
  font-size: 14px;
  line-height: 1.6;
}

.vlt-faq-learnmore {
  display: inline-block;
  margin-top: 4px;
  color: #00e5ff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.vlt-faq-learnmore:hover {
  text-decoration: underline;
}

/* ---- keep it simple & non-overlapping on small screens ---- */
@media (max-width: 720px) {
  .vlt-podium__card:nth-child(1),
  .vlt-podium__card:nth-child(2),
  .vlt-podium__card:nth-child(3) {
    order: 0;
  }
  .vlt-podium__card:nth-child(1) {
    animation: vaultyFadeUp 0.5s ease-out 0.2s both,
               vaultyGlowPulse 2.6s ease-in-out 1s infinite;
  }
}
