/* ===== GRID ===== */
.vf-console-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  color: #fff;
  font-family: var(--theme-font-h1_font-family);
}

.vf-container-edit-img {
  position: absolute;
  bottom: -2px;
  right: -2px;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vf-container-edit-img:hover {
  opacity: 1;
}

#vf-avatar-click {
  cursor: pointer;
}

button#vf-avatar-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

button#vf-avatar-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== LEFT ===== */
.vf-console-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* PLAYER CARD (HEADER) */
.vf-player-card {
  position: relative;
  background: linear-gradient(145deg, #161616, #0a0a0a);
  border: 1px solid rgba(208, 1, 0, 0.2);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.vf-player-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(208, 1, 0, 0.1), transparent 50%);
  pointer-events: none;
}

.vf-player-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.vf-player-avatar-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.vf-console-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #d2003c;
  box-shadow: 0 0 15px rgba(208, 1, 0, 0.3);
  overflow: hidden;
  background: linear-gradient(135deg, #333, #111);
  display: block;
}

.vf-console-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vf-player-info {
  flex: 1;
}

.vf-player-name {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.vf-player-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(208, 1, 0, 0.15);
  border: 1px solid rgba(208, 1, 0, 0.5);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  color: #d2003c;
  font-weight: 600;
}

.vf-player-level-badge {
  background: #111;
  border: 1px solid #333;
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  min-width: 120px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.vf-player-level-badge small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 4px;
}

.vf-player-level-badge strong {
  font-size: 38px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* XP TRACKER */
.vf-xp-tracker {
  background: #0f0f0f;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid #222;
}

.vf-xp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
}

.vf-xp-header label {
  font-size: 14px;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 1px;
}

.vf-container-xp-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

span.vf-xp-text {
  font-size: 32px;
  font-weight: 800;
  color: #d2003c;
}

span.vf-xp-separator {
  opacity: 0.5;
  font-size: 18px;
}

span.vf-xpNext-text {
  font-size: 18px;
  opacity: 0.7;
  font-weight: 600;
}

.vf-console-xp-bar {
  position: relative;
  height: 16px;
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.vf-console-xp-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffffff, #d2003c);
  border-radius: 10px;
  position: relative;
  z-index: 2;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vf-console-xp-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  background-size: 20px 20px;
  animation: stripe-move 1s linear infinite;
}

.vf-console-xp-glow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: #d2003c;
  filter: blur(8px);
  opacity: 0.5;
  z-index: 1;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes stripe-move {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 20px 0;
  }
}

.vf-multiplier-wrapper {
  margin-bottom: 30px;
}

/* STATS */
.vf-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fff;
}

.vf-section-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vf-console-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.vf-tile {
  background: #111;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #222;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.vf-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  border-color: #333;
}

.vf-tile-icon {
  margin-bottom: 12px;
  opacity: 0.9;
}

.vf-tile strong {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.vf-tile span {
  font-size: 13px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Destaque principal */
.vf-tile.highlight {
  background: linear-gradient(180deg, #1a1500 0%, #111 100%);
  border: 1px solid rgba(208, 1, 0, 0.4);
}

.vf-tile.highlight strong {
  color: #d2003c;
}

/* MENU */
.vf-console-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vf-menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #888;
  border: 1px solid transparent;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.vf-menu-btn svg {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.vf-menu-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transform: translateX(4px);
}

.vf-menu-btn:hover svg {
  opacity: 1;
}

.vf-menu-btn.active {
  background: linear-gradient(90deg, rgba(208, 1, 0, 0.15), transparent);
  color: #fff;
  border-left: 4px solid #d2003c;
  border-radius: 4px 12px 12px 4px;
}

.vf-menu-btn.active svg {
  opacity: 1;
  color: #d2003c;
}

/* START button custom styles */
.vf-menu-btn.vf-btn-start {
  display: none;
  background: #d2003c;
  color: #000;
  font-weight: 800;
  border-radius: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  align-items: center;
  gap: 2px;
}

.vf-menu-btn.vf-btn-start svg { color: #fff; opacity: 1; fill: #fff;
}

.vf-menu-btn.vf-btn-start:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

@media(min-width:901px) {


  .vf-menu-btn.vf-btn-start:hover {
    transform: translateX(4px);
  }
}

@media(max-width:901px) {
  .vf-menu-btn.vf-btn-start {
    display: flex;
  }
}

/* ===== RIGHT ===== */
.vf-console-right {
  background: #0b0b0b;
  border-radius: 18px;
  padding: 28px;
  min-height: 420px;
}

.vf-panel {
  display: none;
  animation: fade .25s ease;
}

.vf-panel.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* AVANÇOS */
.vf-progress-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 28px;
}

.vf-progress-level {
  background: #111;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.vf-level-label {
  font-size: 12px;
  opacity: .7;
}

.vf-level-number {
  font-size: 36px;
  display: block;
}

.vf-level-tier {
  font-size: 14px;
  opacity: .8;
}

.vf-progress-xp label {
  font-size: 13px;
  opacity: .7;
}

.vf-xp-bar {
  height: 12px;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  margin: 6px 0;
}

.vf-xp-fill {
  height: 100%;
  background: linear-gradient(90deg, #d2003c, #ffffff);
}

.vf-section-title {
  margin: 26px 0 12px;
  font-size: 16px;
  opacity: .85;
}

/* Destaque principal */
.vf-tile.highlight {
  border: 1px solid rgba(208, 1, 0, .4);
}

/* Conquistas */
.vf-achievements {
  display: grid;
  grid-template-columns: repeat(auto-fill, 56px);
  gap: 12px;
}

.vf-badge {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #333;
}

.vf-badge.unlocked {
  background: linear-gradient(135deg, #d2003c, #ffffff);
}

.vf-badge.locked {
  opacity: .35;
}

/* Próximo avanço */
.vf-next-box {
  margin-top: 28px;
  background: #111;
  border-radius: 16px;
  padding: 18px;
}

.vf-next-label {
  font-size: 14px;
  opacity: .7;
}

.vf-next-box strong {
  display: block;
  font-size: 18px;
  margin: 4px 0;
}

.vf-next-box p {
  font-size: 13px;
  opacity: .8;
}


/* INTRO TEXT */
.vf-panel-intro {
  margin-bottom: 24px;
}

.vf-panel-intro p {
  font-size: 15px;
  color: #bbb;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.vf-link-suporte {
  color: #d2003c;
  font-weight: 600;
  text-decoration: underline;
}

/* ITENS (LOOT GRID) */
.vf-loot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 20px;
}

.vf-item {
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, #1f1f1f, #0a0a0a);
  border: 1px solid #333;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.vf-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vf-item:hover {
  transform: translateY(-5px);
  border-color: #d2003c;
  box-shadow: 0 10px 20px rgba(208, 1, 0, 0.2);
}

.vf-item:hover::before {
  opacity: 1;
}

/* RANKINGS (LEADERBOARD PREMIUM) */
.vf-leaderboard-section {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 24px;
}

.vf-lb-title {
  margin: 0 0 24px 0;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid #d2003c;
  padding-left: 12px;
}

/* Podium Layout */
.vf-podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px 10px;
  background: radial-gradient(circle at center, rgba(208, 1, 0, 0.05) 0%, transparent 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vf-podium-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 140px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.vf-podium-step:hover {
  transform: translateY(-4px);
}

.vf-podium-step.step-empty {
  visibility: hidden;
}

/* Pedestais e Alturas */
.vf-podium-step.step-1 {
  order: 2;
  /* Fica no meio no Flexbox */
}

.vf-podium-step.step-2 {
  order: 1;
  /* Esquerda */
}

.vf-podium-step.step-3 {
  order: 3;
  /* Direita */
}

/* Avatar do Pódio */
.vf-podium-avatar-wrapper {
  position: relative;
  margin-bottom: 12px;
}

.vf-podium-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #555;
  background: #111;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Destaque do 1º Lugar */
.vf-podium-step.step-1 .vf-podium-avatar {
  width: 90px;
  height: 90px;
  border-color: #d2003c;
  box-shadow: 0 0 25px rgba(208, 1, 0, 0.3);
}

.vf-podium-step.step-2 .vf-podium-avatar {
  border-color: #bdc3c7;
}

.vf-podium-step.step-3 .vf-podium-avatar {
  border-color: #d35400;
}

.vf-podium-self .vf-podium-avatar {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Medalhas / Coroas */
.vf-podium-medal {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.vf-podium-step.step-1 .vf-podium-medal {
  font-size: 28px;
  top: -18px;
}

/* Textos e Pontos */
.vf-podium-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  margin-bottom: 4px;
}

.vf-podium-score {
  font-size: 12px;
  font-weight: 800;
  color: #d2003c;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Pedestais */
.vf-podium-pedestal {
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-1 .vf-podium-pedestal {
  height: 90px;
  background: linear-gradient(180deg, rgba(208, 1, 0, 0.15) 0%, rgba(208, 1, 0, 0.02) 100%);
  border-color: rgba(208, 1, 0, 0.25);
}

.step-2 .vf-podium-pedestal {
  height: 65px;
}

.step-3 .vf-podium-pedestal {
  height: 45px;
}

.vf-podium-number {
  font-size: 24px;
  font-weight: 900;
  color: #444;
}

.step-1 .vf-podium-number {
  color: #d2003c;
  font-size: 32px;
}

.step-2 .vf-podium-number {
  color: #bdc3c7;
}

.step-3 .vf-podium-number {
  color: #d35400;
}

/* Lista de Rankings (4+) */
.vf-rank-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vf-rank-row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.vf-rank-row:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.vf-rank-pos {
  font-size: 14px;
  font-weight: 800;
  color: #888;
  width: 40px;
}

.vf-rank-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-grow: 1;
}

.vf-rank-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111;
}

.vf-rank-name {
  font-size: 14px;
  font-weight: 600;
  color: #eee;
}

.vf-rank-score {
  font-size: 15px;
  font-weight: 800;
  color: #d2003c;
}

/* Destaque do Usuário Logado */
.vf-rank-row.vf-rank-self {
  background: rgba(208, 1, 0, 0.08);
  border-color: rgba(208, 1, 0, 0.4);
  box-shadow: 0 4px 15px rgba(208, 1, 0, 0.05);
}

.vf-rank-row.vf-rank-self .vf-rank-pos {
  color: #d2003c;
}

.vf-rank-row.vf-rank-self .vf-rank-name {
  color: #fff;
  font-weight: 800;
}

.vf-rank-badge-self {
  background: rgba(208, 1, 0, 0.2);
  border: 1px solid rgba(208, 1, 0, 0.4);
  color: #d2003c;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-left: 8px;
}

.mt {
  margin-top: 32px;
}

/* FAQ Accordion */
.vf-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vf-faq-item {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
}

.vf-faq-title {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vf-faq-title:hover {
  background: #1a1a1a;
}

.vf-faq-icon {
  font-size: 18px;
  transition: transform .2s ease;
}

.vf-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 18px;
}

.vf-faq-content p,
.vf-faq-content ul {
  font-size: 14px;
  opacity: .9;
  margin: 0 0 10px;
  font-family: roboto !important;
}

.vf-faq-content ul {
  padding-left: 18px;
}

/* estado aberto */
.vf-faq-item.active .vf-faq-content {
  max-height: 8000px;
  /* suficiente para textos longos */
  padding: 14px 18px 18px;
}

.vf-faq-item.active .vf-faq-icon {
  transform: rotate(45deg);
  /* + vira x */
}


.vf-highlight {
  background: #1a1a1a;
  padding: 10px 14px;
  border-radius: 10px;
  display: inline-block;
  font-size: 15px;
}

.vf-subtitle {
  font-size: 14px;
  opacity: .7;
  margin-bottom: 20px;
}


/* ===== RESPONSIVO (SUPER APP) ===== */
@media(max-width:900px) {
  .vf-console-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 100px;
    /* Espaço para o Bottom Nav */
  }

  /* Bottom Navigation Bar */
  .vf-console-menu {
    flex-direction: row;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(208, 1, 0, 0.3);
    justify-content: space-around;
    padding: 12px 10px 25px 10px;
    /* Padding extra para iOS home indicator */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
    overflow: visible;
  }

  .vf-menu-btn {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 8px 4px;
    border-radius: 0;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    color: #777;
    flex: 1;
    background: transparent !important;
    border: none !important;
    text-align: center;
    line-height: 12px;
  }

  .vf-menu-btn svg {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    transition: all 0.3s ease;
  }

  .vf-menu-btn.active {
    color: #d2003c;
    transform: translateY(-5px);
  }

  .vf-menu-btn.active svg {
    filter: drop-shadow(0 0 8px rgba(208, 1, 0, 0.8));
    transform: scale(1.2);
  }

  .vf-menu-btn.vf-btn-start {
    background: #d2003c !important;
    color: #000 !important;
    border-radius: 100% !important;
    margin: 2px 4px !important;
    padding: 10px !important;
    box-shadow: 0 4px 15px rgba(208, 1, 0, 0.4) !important;
    transform: translateY(-2px);
    height: 50px;
    max-width: 50px !important;
  }

  .vf-menu-btn.vf-btn-start svg { color: #fff !important; fill: #fff !important;
    transform: scale(1.1) !important;
  }

  .vf-menu-btn.vf-btn-start:hover,
  .vf-menu-btn.vf-btn-start:active {
    background: #fff !important;
    color: #000 !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4) !important;
  }

  /* Edge-to-Edge Layout modificado com respiro maior (Breathing Room) */
  .portal-torcedor-wrapper {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .portal-hero,
  .vf-console-right,
  .vf-player-card,
  .vf-store-balance-card,
  .vf-leaderboard-container {
    border-radius: 20px !important;
  }

  .vf-console-right {
    padding: 20px 15px;
  }

  .vf-player-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
  }

  .vf-player-card-content {
    flex-direction: column;
    align-items: center;
  }

  .vf-player-avatar-wrapper {
    margin: 0 auto 15px auto;
  }

  .vf-console-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .vf-loot-grid,
  .vf-store-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .vf-sbc-info strong {
    font-size: 28px;
  }

  .vf-season-banner {
    padding: 20px;
    border-radius: 0 !important;
  }

  .vf-sb-content h2 {
    font-size: 24px;
  }
}

.vf-empty {
  opacity: .6;
  font-size: 14px;
  padding: 12px 0;
}



.vf-multiplier-box {
  margin-top: 22px;
  background: linear-gradient(135deg, #1a1a1a, #111);
  border: 1px solid rgba(208, 1, 0, .35);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.vf-multiplier-box span {
  font-size: 14px;
  opacity: .7;
}

.vf-multiplier-box strong {
  display: block;
  font-size: 26px;
  color: #d2003c;
}

.vf-multiplier-box small {
  font-size: 14px;
  opacity: .8;
}


/* STORE */
.vf-store-balance-card {
  background: linear-gradient(135deg, #1f1f1f, #0f0f0f);
  border: 1px solid #333;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.vf-sbc-info {
  display: flex;
  flex-direction: column;
}

.vf-sbc-info span {
  font-size: 14px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.vf-sbc-info strong {
  font-size: 36px;
  color: #d2003c;
  line-height: 1;
  text-shadow: 0 0 15px rgba(208, 1, 0, 0.3);
}

.vf-store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.vf-store-item {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.vf-store-item:hover {
  transform: translateY(-8px);
  border-color: rgba(208, 1, 0, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(208, 1, 0, 0.2);
}

.vf-store-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 3;
}

.vf-store-item:hover::after {
  background: linear-gradient(90deg, #d2003c, #ffffff);
}

/* Cover Image */
.vf-store-item-image-wrapper {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #000;
}

.vf-store-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vf-store-item:hover .vf-store-item-image {
  transform: scale(1.08);
}

/* Image overlay badge */
.vf-store-item-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(208, 1, 0, 0.5);
  color: #d2003c;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  letter-spacing: 1px;
  z-index: 2;
}

/* Card Content Body */
.vf-store-item-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.vf-store-item-body h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vf-store-item-body p {
  font-size: 13px;
  opacity: 0.65;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
  height: 58px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vf-store-item-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.vf-store-cost-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.vf-store-cost {
  font-size: 20px;
  font-weight: 800;
  color: #d2003c;
  text-shadow: 0 0 10px rgba(208, 1, 0, 0.3);
}

.vf-store-cost-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  font-weight: 700;
}

.vf-store-btn {
  background: linear-gradient(135deg, #d2003c, #ffffff);
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(208, 1, 0, 0.2);
}

.vf-store-btn:hover:not([disabled]) {
  background: #fff;
  color: #000;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.vf-store-btn:active:not([disabled]) {
  transform: translateY(0);
}

.vf-store-btn[disabled] {
  background: #222;
  color: #555;
  cursor: not-allowed;
  box-shadow: none;
}

/* SEASON PASS BANNER */
.vf-season-banner {
  background: linear-gradient(135deg, #1f1f1f, #0a0a0a);
  border: 1px solid #333;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.vf-sb-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(208, 1, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.vf-sb-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vf-sb-content h2 {
  font-size: 32px;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
}

.vf-sb-content p {
  font-size: 16px;
  color: #bbb;
  max-width: 600px;
  line-height: 1.6;
  margin: 0;
}

.vf-sb-highlight {
  margin-top: 10px;
  background: rgba(208, 1, 0, 0.1);
  border: 1px solid rgba(208, 1, 0, 0.3);
  padding: 16px 24px;
  border-radius: 12px;
  color: #d2003c;
  font-size: 15px;
}

.vf-sb-highlight strong {
  font-size: 18px;
  color: #fff;
}



.vf-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #111;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
  opacity: 0;
  transform: translateY(10px);
  transition: .25s ease;
  z-index: 9999;
}

.vf-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.vf-toast.success {
  border-left: 4px solid #2ecc71;
}

.vf-toast.error {
  border-left: 4px solid #e74c3c;
}

.vf-store-btn.loading {
  opacity: .6;
  pointer-events: none;
}

@media (max-width: 600px) {
  .vf-podium {
    gap: 8px;
    padding: 10px 5px;
  }

  .vf-podium-step {
    max-width: 95px;
  }

  .vf-podium-avatar {
    width: 52px;
    height: 52px;
  }

  .vf-podium-step.step-1 .vf-podium-avatar {
    width: 68px;
    height: 68px;
  }

  .vf-podium-medal {
    font-size: 16px;
  }

  .vf-podium-step.step-1 .vf-podium-medal {
    font-size: 22px;
    top: -14px;
  }

  .vf-podium-name {
    font-size: 12px;
  }

  .vf-podium-score {
    font-size: 11px;
  }

  .vf-podium-pedestal {
    border-radius: 4px 4px 0 0;
  }

  .step-1 .vf-podium-pedestal {
    height: 60px;
  }

  .step-2 .vf-podium-pedestal {
    height: 45px;
  }

  .step-3 .vf-podium-pedestal {
    height: 30px;
  }

  .vf-podium-number {
    font-size: 16px;
  }

  .step-1 .vf-podium-number {
    font-size: 22px;
  }
}