.vxev-wrap {
  width: 100%;
  background: var(--vx-bg-body);
  color: var(--vx-text);
  font-family: var(--vx-font-family);
  overflow: hidden;
}

.vxev-hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 560px;
  max-height: 920px;
  overflow: hidden;
  background: var(--vx-bg-card);
}

.vxev-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 8s ease-out;
  will-change: opacity, transform;

}
.vxev-hero.is-loaded .vxev-hero-bg {
  opacity: 1;
  transform: scale(1);
}

.vxev-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.78) 100%),
    var(--vx-overlay);
  pointer-events: none;
}

.vxev-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 8vw 25vh;
  z-index: 2;
}

.vxev-hero-inner {
  max-width: 880px;
  color: #fff;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease .15s, transform .9s ease .15s;
}
.vxev-hero.is-loaded .vxev-hero-inner {
  opacity: 1;
  transform: translateY(0);
}

.vxev-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--vx-radius, 999px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 22px;
}
.vxev-hero-pill.is-live {
  background: var(--vx-danger);
  border-color: var(--vx-danger);
}
.vxev-hero-pill.is-live::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: vxevPulse 1.6s ease-out infinite;
}

@keyframes vxevPulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,255,255,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0   rgba(255,255,255,0); }
}

.vxev-hero-title {
  font-size: clamp(2.4rem, 5.4vw, 3rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}

.vxev-hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 640px;
  color: rgba(255,255,255,.88);
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}

.vxev-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 36px;
}

.vxev-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}

.vxev-hero-meta-item svg {
  flex-shrink: 0;
  opacity: .85;
}

.vxev-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: #fff;
  color: #0a0a0a;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--vx-radius);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.vxev-hero-cta:hover {
  transform: translateY(-2px);
  background: var(--vx-primary);
  color: var(--vx-text-inv, #fff);
  box-shadow: 0 18px 50px var(--vx-primary-light);
}
.vxev-hero-cta svg {
  transition: transform .3s ease;
}
.vxev-hero-cta:hover svg {
  transform: translateX(4px);
}

.vxev-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transition: opacity .6s ease 1s;
  animation: vxevBob 2.6s ease-in-out infinite;
}
.vxev-hero.is-loaded .vxev-hero-scroll { opacity: 1; }

@keyframes vxevBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

.vxev-hero-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    var(--vx-bg-card)  0%,
    var(--vx-bg-hover) 50%,
    var(--vx-bg-card) 100%);
  background-size: 200% 100%;
  animation: vxevShimmer 1.4s linear infinite;
  z-index: 0;
}
.vxev-hero.is-loaded .vxev-hero-skeleton { display: none; }

@keyframes vxevShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.vxev-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 48px 24px 24px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  background: var(--vx-bg-body);
  z-index: 10;
  border-bottom: 1px solid var(--vx-border);
}

.vxev-filter {
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--vx-text-2);
  cursor: pointer;
  position: relative;
  transition: color .2s ease;
  font-family: inherit;
}
.vxev-filter::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--vx-primary);
  transition: width .3s ease, left .3s ease;
}
.vxev-filter:hover  { color: var(--vx-text); }
.vxev-filter.active { color: var(--vx-text); }
.vxev-filter.active::after {
  width: 100%;
  left: 0;
}

.vxev-grid-wrap {
  margin: 0 auto;
  padding: 48px 32px 96px;
  position: relative;
}

.vxev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.vxev-grid.is-loading { opacity: .35; pointer-events: none; transition: opacity .3s ease; }

.vxev-card {
  display: flex;
  flex-direction: column;
  background: var(--vx-bg-card);
  border-radius: var(--vx-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--vx-text);
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity .4s ease,
    transform .4s ease,
    box-shadow .35s ease,
    border-color .35s ease;
  will-change: opacity, transform;
}
.vxev-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.vxev-card:hover {
  border-color: var(--vx-primary);
  box-shadow: 0 20px 60px var(--vx-primary-light);
}

.vxev-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--vx-bg-hover);
}

.vxev-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,.84,.44,1);
}
.vxev-card:hover .vxev-card-img { transform: scale(1.06); }

.vxev-card-img.is-loaded { animation: vxevFadeImg .6s ease; }
@keyframes vxevFadeImg {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.vxev-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

.vxev-card-badge {
	position: absolute;
    bottom: 26px;
    left: 16px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    background: rgb(0 0 0 / 37%);
    color: #fff;
    border-radius: var(--vx-radius);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}
.vxev-card-badge.is-live {
  background: var(--vx-danger);
  display: flex;
  align-items: center;
  gap: 6px;
}
.vxev-card-badge.is-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: vxevPulse 1.6s ease-out infinite;
}

.vxev-card-date {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.96);
  color: #0a0a0a;
  border-radius: var(--vx-radius);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.vxev-card-date-day {
  font-size: 22px;
  letter-spacing: -.02em;
}
.vxev-card-date-mon {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-top: 2px;
  color: var(--vx-text-2);
}

.vxev-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.vxev-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--vx-text);
  letter-spacing: -.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vxev-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--vx-text-2);
}
.vxev-card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vxev-card-meta-item svg { flex-shrink: 0; opacity: .7; }

.vxev-card-desc {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--vx-text-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vxev-card-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--vx-primary);
}
.vxev-card-cta svg { transition: transform .25s ease; }
.vxev-card:hover .vxev-card-cta svg { transform: translateX(4px); }

.vxev-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--vx-text-3);
}
.vxev-empty svg { margin: 0 auto 16px; display: block; opacity: .35; }
.vxev-empty h3  { font-size: 1.4rem; font-weight: 700; margin: 0 0 8px; color: var(--vx-text); }
.vxev-empty p   { margin: 0; font-size: 15px; }

.vxev-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.vxev-card-skeleton {
  height: 380px;
  background: linear-gradient(110deg,
    var(--vx-bg-card)  0%,
    var(--vx-bg-hover) 50%,
    var(--vx-bg-card) 100%);
  background-size: 200% 100%;
  animation: vxevShimmer 1.4s linear infinite;
  border-radius: var(--vx-radius);
  border: 1px solid var(--vx-border);
}

@media (max-width: 768px) {

  .vxev-hero {
    height: 100vh;
    min-height: 100svh;
    max-height: none;
  }
  .vxev-hero-content {
    padding: 0 24px 14vh;
  }
  .vxev-hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
    margin-bottom: 14px;
  }
  .vxev-hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .vxev-hero-meta {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
  }
  .vxev-hero-meta-item { font-size: 13px; }
  .vxev-hero-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 14px;
  }
  .vxev-hero-scroll { display: none; }

  .vxev-filters {
    padding: 28px 16px 14px;
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .vxev-filters::-webkit-scrollbar { display: none; }
  .vxev-filter {
    padding: 12px 18px;
    flex-shrink: 0;
    font-size: 13px;
  }

  .vxev-grid-wrap {
    padding: 24px 16px 64px;
  }
  .vxev-grid,
  .vxev-skeleton-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vxev-card-media { aspect-ratio: 16 / 9; }
  .vxev-card-title { font-size: 1.1rem; }
  .vxev-card-body  { padding: 18px 18px 20px; }
}

@media (max-width: 480px) {
  .vxev-grid-wrap { padding: 20px 0 56px; }
  .vxev-grid,
  .vxev-skeleton-grid {
    border-radius: 0;
    padding: 0 12px;
  }
  .vxev-card { border-radius: var(--vx-radius); }
  .vxev-grid-wrap {padding: 35px 10px 95px !important;}
}

@media (prefers-reduced-motion: reduce) {
  .vxev-card,
  .vxev-hero-bg,
  .vxev-hero-inner,
  .vxev-card-img,
  .vxev-hero-scroll {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.vxev-filter {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--vx-text-2);
  cursor: pointer;
  position: relative;
  transition: color .2s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vxev-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  font-size: 11px;
  font-weight: 700;
  background: var(--vx-bg-hover);
  color: var(--vx-text-3);
  border-radius: var(--vx-radius);
  letter-spacing: 0;
  transition: background .2s ease, color .2s ease;
}
.vxev-filter:hover .vxev-filter-count {
  color: var(--vx-text-2);
}
.vxev-filter.active .vxev-filter-count {
  background: var(--vx-primary);
  color: var(--vx-text-inv, #fff);
}
.vxev-filter-count.is-zero {
  opacity: .4;
}

.vxev-filter::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--vx-primary);
  transition: width .3s ease, left .3s ease;
}
.vxev-filter:hover  { color: var(--vx-text); }
.vxev-filter.active { color: var(--vx-text); }
.vxev-filter.active::after {
  width: 100%;
  left: 0;
}

.vxev-grid-wrap {
  margin: 0 auto;
  padding: 48px 32px 96px;
  position: relative;
}

.vxev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(24%, 1fr));
  gap: 20px;
  transition: opacity .2s ease;
}

.vxev-grid.is-fading {
  opacity: .35;
  pointer-events: none;
}

.vxev-grid.is-booting {
  min-height: 80vh;
}

.vxev-skeleton-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.vxev-skeleton-grid.is-active {
  display: grid;
}

.vxev-card-skeleton {
  height: 380px;
  background: linear-gradient(110deg,
    var(--vx-bg-card)  0%,
    var(--vx-bg-hover) 50%,
    var(--vx-bg-card) 100%);
  background-size: 200% 100%;
  animation: vxevShimmer 1.4s linear infinite;
  border-radius: var(--vx-radius);
  border: 1px solid var(--vx-border);
}

.vxev-empty {
  display: none;
  text-align: center;
  padding: 80px 24px;
  color: var(--vx-text-3);
}
.vxev-empty.is-visible {
  display: block;
  animation: vxevFadeIn .35s ease;
}
.vxev-empty svg { margin: 0 auto 16px; display: block; opacity: .35; }
.vxev-empty h3  { font-size: 1.4rem; font-weight: 700; margin: 0 0 8px; color: var(--vx-text); }
.vxev-empty p   { margin: 0; font-size: 15px; }

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

.vxev-types {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 56px 24px 8px;
  flex-wrap: wrap;
  background: var(--vx-bg-body);
  max-width: 1480px;
  margin: 0 auto;
}

.vxev-type {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: var(--vx-bg-card);
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
  color: var(--vx-text-2);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}
.vxev-type:hover {
  background: var(--vx-bg-hover);
  border-color: var(--vx-text-3);
  color: var(--vx-text);
}
.vxev-type:active { transform: scale(.97); }

.vxev-type.active {
  background: var(--vx-primary);
  border-color: var(--vx-primary);
  color: var(--vx-text-inv, #fff);
}
.vxev-type.active .vxev-type-count {
  background: rgba(255, 255, 255, .22);
  color: #fff;
}

.vxev-type-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.vxev-type-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 700;
  background: var(--vx-bg-hover);
  color: var(--vx-text-3);
  border-radius: var(--vx-radius);
  transition: background .2s ease, color .2s ease;
}
.vxev-type-count.is-zero { opacity: .35; }

.vxev-filters {
  padding: 16px 24px 20px;
}

.vxev-card-type {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .92);
  color: #0a0a0a;
  border-radius: var(--vx-radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}
.vxev-card-type svg {
  flex-shrink: 0;
  opacity: .85;
}

@media (max-width: 768px) {
  .vxev-types {
    padding: 24px 16px 4px;
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  .vxev-types::-webkit-scrollbar { display: none; }
  .vxev-type {
    flex-shrink: 0;
    padding: 9px 14px 9px 12px;
    font-size: 12px;
  }
  .vxev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 20px;
    transition: opacity .2s ease;
}
}
.vxev-cityshape {
  position: absolute;
  top: 8vh;
  left: 6vw;
  z-index: 3;
  width: clamp(120px, 16vw, 260px);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px) scale(.96);
  transition: opacity .8s ease, transform .8s cubic-bezier(.16,.84,.44,1);
}
.vxev-cityshape.is-in { opacity: 1; transform: none; }

.vxev-cityshape svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.vxev-cityshape path {
  fill: rgba(255,255,255,.14);
  stroke: #fff;
  stroke-width: 6;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.4));
  transition: fill .25s ease, stroke .25s ease;
}
.vxev-cityshape:hover path {
  fill: rgba(255,255,255,.28);
  stroke: var(--vx-accent, #fff);
}

.vxev-cityshape-panel {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translate(-50%, 100%);
  background: var(--vx-bg-card);
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius-sm);
  box-shadow: var(--vx-shadow-lg);
  padding: 12px 16px;
  white-space: nowrap;
  animation: vxevCityPop .3s ease;
}
@keyframes vxevCityPop {
  from { opacity: 0; transform: translate(-50%, 100%) translateY(-6px); }
  to   { opacity: 1; transform: translate(-50%, 100%); }
}
.vxev-cityshape-city {
  font-weight: 800;
  font-size: 15px;
  color: var(--vx-primary);
  margin-bottom: 6px;
}
.vxev-cityshape-counts {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--vx-text-2);
}
.vxev-cityshape-counts b { color: var(--vx-text); font-size: 16px; }

@media (max-width: 768px) {
  .vxev-cityshape {
    top: 16px;
    left: auto;
    right: 16px;
    width: clamp(80px, 26vw, 130px);
  }
  .vxev-cityshape-panel {
    left: auto;
    right: 0;
    transform: translateY(100%);
  }
  @keyframes vxevCityPop {
    from { opacity: 0; transform: translateY(100%) translateY(-6px); }
    to   { opacity: 1; transform: translateY(100%); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .vxev-cityshape { transition: none; opacity: 1; transform: none; }
}
.vxev-cityshape-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,.84,.44,1);
}
.vxev-cityshape-wrap.is-in { opacity: 1; transform: none; }

.vxev-cityshape-svg {
  width: clamp(90px, 12vw, 150px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
.vxev-cityshape-svg svg { width: 100%; height: 100%; display: block; overflow: visible; }
.vxev-cityshape-svg path {
  fill: var(--vx-primary-light);
  stroke: var(--vx-primary);
  stroke-width: 5;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition: fill .25s ease;
}
.vxev-cityshape-wrap:hover path { fill: var(--vx-primary); }

.vxev-cityshape-city {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--vx-text);
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.vxev-cityshape-counts {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--vx-text-2);
}
.vxev-cityshape-counts b {
  font-size: 22px;
  color: var(--vx-primary);
  margin-right: 4px;
}

@media (max-width: 640px) {
  .vxev-cityshape-wrap { flex-direction: column; text-align: center; padding: 20px 16px; }
  .vxev-cityshape-counts { justify-content: center; }
}
.vxev-card-shapebar {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--vx-radius);
  background: var(--vx-bg-footer);
  opacity:0.8;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.vxev-card-shape {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(.92);
  transition: opacity .6s ease, transform .6s cubic-bezier(.16,.84,.44,1);
}
.vxev-card-shape.is-in { opacity: 1; transform: none; }
.vxev-card-shape svg { width: 100%; height: 100%; display: block; overflow: visible; }
.vxev-card-shape path {
  fill: rgba(255,255,255,.9);
  stroke: none;
}

.vxev-card-shapeinfo { min-width: 0; }
.vxev-card-shapecity {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: -.3px;
}
.vxev-card-shapedate {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  line-height: 1.4;
}
