/* =========================
   1. ROOT + GLOBAL
   ========================= */
:root {
  --vc-bg: #040612;
  --vc-bg-soft: #0b1020;
  --vc-card: #101626;
  --vc-border: #263043;
  --vc-accent: #00ffa3;
  --vc-accent-soft: rgba(0, 255, 163, 0.15);
  --vc-text: #f9fafb;
  --vc-muted: #9ca3af;
  --vc-danger: #ef4444;
  --vc-offline: #6b7280;
  --vc-radius: 0.85rem;
  --vc-radius-pill: 999px;
  --vc-shadow-soft: 0 20px 40px rgba(0,0,0,0.6);
  --vc-font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--vc-font-main);
  background: radial-gradient(circle at top, #101828 0, #020617 55%);
  color: var(--vc-text);
}

/* Layout wrapper */
.vc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

/* =========================
   2. HEADER
   ========================= */
.vc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.95);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  backdrop-filter: blur(12px);
}

.vc-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between; /* keeps logo left, nav + right block on the other side */
  gap: 0.75rem;
}

.vc-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.vc-logo__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--vc-accent);
  box-shadow: 0 0 14px var(--vc-accent);
}

.vc-logo__text {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vc-text);
  font-size: 0.95rem;
}

.vc-nav {
  display: flex;
  gap: 1rem;
}

.vc-nav__link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--vc-muted);
}

.vc-nav__link:hover {
  color: var(--vc-text);
}

/* Right side (language switcher etc.) */
.vc-header__right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0.5rem;
}
/* =========================
   2a. LANGUAGE SWITCHER
   ========================= */
.vc-lang-switcher {
  position: relative;
  font-size: 0.8rem;
}

.vc-lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--vc-radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.98);
  color: var(--vc-text);
  cursor: pointer;
  outline: none;
  font-size: 0.8rem;
  line-height: 1;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.08s ease;
}

.vc-lang-switcher__btn:hover,
.vc-lang-switcher__btn:focus-visible {
  background: rgba(15, 23, 42, 1);
  border-color: var(--vc-accent);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), var(--vc-shadow-soft);
}

/* small flag in button */
.vc-lang-switcher__flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
  flex-shrink: 0;
}

.vc-lang-switcher__flag img {
  display: block;
  width: 100%;
  height: 100%;
}

.vc-lang-switcher__code {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vc-lang-switcher__chevron {
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Dropdown menu */
.vc-lang-switcher__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  min-width: 170px;
  padding: 0.35rem;
  border-radius: 0.8rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--vc-shadow-soft);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition:
    opacity 0.12s ease,
    transform 0.12s ease;
  z-index: 150;
}

/* Pure-CSS hover behaviour (no JS needed for now) */
.vc-lang-switcher:hover .vc-lang-switcher__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vc-lang-switcher__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.45rem;
  border-radius: 0.6rem;
  text-decoration: none;
  color: var(--vc-text);
  font-size: 0.8rem;
  white-space: nowrap;
}

.vc-lang-switcher__item:hover,
.vc-lang-switcher__item:focus-visible {
  background: rgba(30, 64, 175, 0.45);
}

.vc-lang-switcher__item-flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
  flex-shrink: 0;
}

.vc-lang-switcher__item-flag img {
  display: block;
  width: 100%;
  height: 100%;
}

.vc-lang-switcher__item-code {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.vc-lang-switcher__item-name {
  color: var(--vc-muted);
}

/* active language in list */
.vc-lang-switcher__item--active {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.65);
}

/* =========================
   2b. HEADER RESPONSIVE
   ========================= */
@media (max-width: 800px) {
  .vc-header__inner {
    padding-inline: 0.75rem;
  }
  .vc-nav {
    gap: 0.7rem;
  }
  .vc-nav__link {
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .vc-header__inner {
    flex-wrap: wrap;
  }
  .vc-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.2rem;
  }
  .vc-header__right {
    margin-left: auto;
  }
}


/* =========================
   3. PILLS, TAGS, BADGES
   ========================= */
.vc-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: var(--vc-radius-pill);
  font-size: 0.75rem;
  background: rgba(148, 163, 184, 0.25);
  color: var(--vc-text);
  margin-right: 0.25rem;
}
.vc-pill--soft {
  background: rgba(148, 163, 184, 0.15);
  color: var(--vc-muted);
}
.vc-pill--flag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.vc-pill--accent {
  background: var(--vc-accent);
  color: #020617;
}

.vc-tag {
  font-size: 0.7rem;
  border-radius: var(--vc-radius-pill);
  padding: 0.1rem 0.5rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}

.vc-flag {
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(0,0,0,0.5);
}

/* Badge (LIVE, VERIFIED etc) */
.vc-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.5rem;
  border-radius: var(--vc-radius-pill);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(148, 163, 184, 0.16);
  color: #e5e7eb;
}
.vc-badge--live {
  background: var(--vc-danger);
  color: #fff;
}
.vc-badge--offline {
  background: var(--vc-offline);
  color: #fff;
}
.vc-badge--green {
  background: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
}
.vc-badge--outline {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

/* =========================
   4. CARDS + GRID (INDEX)
   ========================= */
.vc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.vc-card {
  background: var(--vc-card);
  border-radius: var(--vc-radius);
  box-shadow: var(--vc-shadow-soft);
  border: 1px solid var(--vc-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vc-card__thumb-wrap {
  position: relative;
  display: block;
}
.vc-card__thumb {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.vc-card__live-dot {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  padding: 0.15rem 0.6rem;
  border-radius: var(--vc-radius-pill);
  background: rgba(220, 38, 38, 0.95);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
}
.vc-card__ribbon {
  position: absolute;
  top: 0.6rem;
  right: -2.1rem;
  background: #f97316;
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  transform: rotate(45deg);
  padding: 0.15rem 1.6rem;
  pointer-events: none;
}
.vc-card__body {
  padding: 0.6rem 0.7rem 0.7rem;
}
.vc-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vc-card__name {
  font-weight: 600;
  color: var(--vc-text);
  text-decoration: none;
}
.vc-card__name:hover {
  color: var(--vc-accent);
}
.vc-card__viewers {
  font-size: 0.8rem;
  color: var(--vc-muted);
}
.vc-card__meta {
  margin-top: 0.4rem;
}
.vc-card__tags {
  margin-top: 0.4rem;
}

/* Focus + tooltips */
.vc-card__thumb-wrap:focus-visible,
.vc-card__name:focus-visible,
.vc-tag:focus-visible {
  outline: 2px solid var(--vc-accent);
  outline-offset: 2px;
}
.vc-card__viewers[title],
.vc-card__live-dot[title],
.vc-card__ribbon[title],
.vc-pill[title],
.vc-tag[title] {
  cursor: help;
}
.vc-card__interaction-meta {
  display: none;
}

/* Pagination */
.vc-pagination {
  margin: 1.5rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.vc-page-link {
  padding: 0.25rem 0.75rem;
  border-radius: var(--vc-radius-pill);
  border: 1px solid var(--vc-border);
  color: var(--vc-muted);
  text-decoration: none;
}
.vc-page-link:hover {
  color: var(--vc-text);
  border-color: var(--vc-accent);
}
.vc-page-link--disabled {
  opacity: 0.4;
  pointer-events: none;
}
.vc-page-status {
  color: var(--vc-muted);
}

/* =========================
   5. FOOTER
   ========================= */
.vc-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: #020617;
}
.vc-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--vc-muted);
}
.vc-footer__small {
  margin: 0.3rem 0 0;
}

/* =========================
   6. FILTERS (INDEX)
   ========================= */
.vc-filters {
  margin: 0 0 1.2rem;
}
.vc-filters__form {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--vc-radius);
  border: 1px solid var(--vc-border);
  padding: 0.75rem 0.9rem;
  box-shadow: var(--vc-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.vc-filters__line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.vc-filters__group {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  flex: 1 1 180px;
}
.vc-filters__group label {
  font-size: 0.75rem;
  color: var(--vc-muted);
  margin-bottom: 0.25rem;
}
.vc-filters__group select {
  border-radius: 0.5rem;
  border: 1px solid var(--vc-border);
  background: rgba(15,23,42,0.9);
  color: var(--vc-text);
  padding: 0.3rem 0.5rem;
  font-size: 0.85rem;
}

/* Toggles */
.vc-filters__toggles {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.vc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--vc-muted);
}
.vc-toggle input { display: none; }
.vc-toggle__fake {
  width: 32px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid var(--vc-border);
  background: rgba(15,23,42,0.9);
  position: relative;
  transition: all 0.18s ease;
}
.vc-toggle__fake::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--vc-muted);
  transition: all 0.18s ease;
}
.vc-toggle input:checked + .vc-toggle__fake {
  border-color: var(--vc-accent);
  background: var(--vc-accent-soft);
}
.vc-toggle input:checked + .vc-toggle__fake::after {
  transform: translateX(12px);
  background: var(--vc-accent);
}
.vc-toggle__label {
  white-space: nowrap;
}

/* Filter actions */
.vc-filters__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.vc-filters__count {
  font-size: 0.8rem;
  color: var(--vc-muted);
}

/* Buttons */
.vc-btn {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vc-btn--primary {
  background: var(--vc-accent);
  color: #020617;
}
.vc-btn--primary:hover {
  filter: brightness(1.05);
}
.vc-btn--ghost {
  border-color: var(--vc-border);
  background: transparent;
  color: var(--vc-muted);
}
.vc-btn--ghost:hover {
  border-color: var(--vc-accent);
  color: var(--vc-text);
}

@media (max-width: 700px) {
  .vc-filters__actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* =========================
   7. MINI GRIDS (OFFLINE / SUGGEST)
   ========================= */
.vc-mini-grid {
  display: grid;
  gap: 0.5rem;
}
.vc-mini-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.vc-mini-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.vc-mini-card {
  display: block;
  background: rgba(15,23,42,0.9);
  border-radius: 0.6rem;
  overflow: hidden;
  border: 1px solid var(--vc-border);
  text-decoration: none;
}
.vc-mini-card__thumb {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}
.vc-mini-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0.35rem 0.3rem;
  font-size: 0.75rem;
}
.vc-mini-card__name {
  color: var(--vc-text);
}
.vc-mini-card:hover .vc-mini-card__name {
  color: var(--vc-accent);
}
.vc-suggest-section {
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .vc-mini-grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .vc-mini-grid--3,
  .vc-mini-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   8. COUNTRY CLOUD
   ========================= */
.vc-box--countries {
  margin-top: 1.5rem;
}
.vc-box__header--countries {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.vc-country-filter {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.vc-country-filter__search {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--vc-border);
  background: rgba(15,23,42,0.9);
  color: var(--vc-text);
  font-size: 0.8rem;
}
.vc-country-filter__sort {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--vc-border);
  background: rgba(15,23,42,0.9);
  color: var(--vc-muted);
  font-size: 0.8rem;
}
.vc-country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 0.45rem 0.75rem;
}
.vc-country-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(148,163,184,0.35);
  text-decoration: none;
  color: var(--vc-text);
  font-size: 0.8rem;
}
.vc-country-pill:hover {
  border-color: var(--vc-accent);
}
.vc-country-pill__flag img {
  display: block;
  border-radius: 2px;
}
.vc-country-pill__name {
  flex: 1;
}
.vc-country-pill__count {
  font-weight: 600;
  color: var(--vc-muted);
}
@media (max-width: 700px) {
  .vc-box__header--countries {
    flex-direction: column;
    align-items: flex-start;
  }
  .vc-country-filter {
    width: 100%;
  }
  .vc-country-filter__search {
    flex: 1;
  }
}

/* =========================
   9. RECORDINGS MODAL + DOCK
   ========================= */
.vc-rec-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vc-rec-modal[hidden] { display: none; }

.vc-rec-modal__card {
  background: #020617;
  border-radius: 0.9rem;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 24px 50px rgba(0,0,0,0.7);
  padding: 1rem 1.1rem 1.1rem;
  max-width: 480px;
  width: 100%;
  color: var(--vc-text);
  position: relative;
}
.vc-rec-modal__title {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
}
.vc-rec-modal__lead {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--vc-muted);
}
.vc-rec-modal__hint {
  margin: 0.4rem 0 0.15rem;
  font-size: 0.85rem;
  color: var(--vc-muted);
}
.vc-rec-modal__selected {
  margin: 0.15rem 0 0.8rem;
  font-size: 0.85rem;
}
#vcRecDuration { width: 100%; }
.vc-rec-modal__actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.vc-rec-modal__close {
  position: absolute;
  right: 0.6rem;
  top: 0.4rem;
  border: 0;
  background: transparent;
  color: var(--vc-muted);
  font-size: 1.2rem;
  cursor: pointer;
}

/* Dock */
.vc-rec-dock {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 360px;
  max-width: 95vw;
  background: #020617;
  border-radius: 0.9rem;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 18px 40px rgba(0,0,0,0.75);
  z-index: 9999;
  font-size: 0.85rem;
}
.vc-rec-dock[hidden] { display: none; }
.vc-rec-dock__header {
  padding: 0.45rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148,163,184,0.3);
}
.vc-rec-dock__icon { margin-right: 0.35rem; }
.vc-rec-dock__title { font-weight: 600; }
.vc-rec-dock__badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.05rem 0.45rem;
  border-radius: 999px;
  background: rgba(22,163,74,0.18);
  color: #bbf7d0;
  font-size: 0.75rem;
}
.vc-rec-dock__toggle {
  border: 0;
  background: transparent;
  color: var(--vc-muted);
  font-size: 0.8rem;
  cursor: pointer;
}
.vc-rec-dock__body {
  max-height: 60vh;
  overflow-y: auto;
  padding: 0.5rem;
}
.vc-rec-item {
  padding: 0.4rem 0.35rem 0.5rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(31,41,55,0.9);
  background: #020617;
  margin-bottom: 0.4rem;
}
.vc-rec-item__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
}
.vc-rec-item__user { font-weight: 600; }
.vc-rec-item__status {
  font-size: 0.78rem;
  color: var(--vc-muted);
}
.vc-rec-item__bar-wrap { margin: 0.2rem 0 0.25rem; }
.vc-rec-item__bar-bg {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(30,64,175,0.4);
  overflow: hidden;
}
.vc-rec-item__bar-fill {
  height: 100%;
  width: 0;
  background: rgba(59,130,246,0.95);
}
.vc-rec-item__meta {
  font-size: 0.78rem;
  color: var(--vc-muted);
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}
.vc-rec-item__actions {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.vc-rec-item__actions .vc-btn {
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
}
.vc-rec-dock--collapsed .vc-rec-dock__body {
  display: none;
}

/* Stats table */
.vc-rec-stats {
  margin-top: 0.5rem;
  max-height: 60vh;
  overflow: auto;
}
.vc-rec-stats .vc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}
.vc-rec-stats .vc-table thead {
  background: rgba(15, 23, 42, 0.95);
}
.vc-rec-stats .vc-table th,
.vc-rec-stats .vc-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(30, 41, 59, 0.9);
  white-space: nowrap;
}
.vc-rec-stats .vc-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vc-muted);
}
.vc-rec-stats .vc-table tbody tr:nth-child(2n) {
  background: rgba(15, 23, 42, 0.65);
}
.vc-rec-stats .vc-table tbody tr:hover {
  background: rgba(30, 64, 175, 0.25);
}
.vc-rec-stats .vc-table td:first-child {
  width: 2.2rem;
  text-align: center;
  font-weight: 600;
  color: #e5e7eb;
}
.vc-rec-stats .vc-table td:nth-child(2) a {
  color: #bfdbfe;
  text-decoration: none;
}
.vc-rec-stats .vc-table td:nth-child(2) a:hover {
  text-decoration: underline;
}

/* badges + pills inside stats */
.vc-rec-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.05rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
}
.vc-rec-badge--online {
  background: rgba(22, 163, 74, 0.18);
  color: #bbf7d0;
  border-color: rgba(22, 163, 74, 0.5);
}
.vc-rec-badge--offline {
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  border-color: rgba(239, 68, 68, 0.5);
}
.vc-rec-badge--country {
  background: rgba(30, 64, 175, 0.18);
  color: #dbeafe;
  border-color: rgba(59, 130, 246, 0.55);
}
.vc-rec-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.9);
}
.vc-rec-pill--primary {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.7);
}
.vc-rec-stats .vc-table td:nth-child(5),
.vc-rec-stats .vc-table td:nth-child(6),
.vc-rec-stats .vc-table td:nth-child(7) {
  text-align: right;
}

/* model cell in stats */
.vc-rec-model {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.vc-rec-model__avatar {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  background: #020617;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.7);
}
.vc-rec-model__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vc-rec-model__avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #9ca3af;
}
.vc-rec-model__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.vc-rec-model__name {
  font-weight: 600;
  font-size: 0.9rem;
}
.vc-rec-model__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

/* wide stats modal */
.vc-modal.vc-rec-modal--wide .vc-modal__dialog {
  width: min(900px, 96vw);
}

/* =========================
   10. FEATURED STRIP
   ========================= */
.vc-featured {
  margin: 1.5rem 0 1.75rem;
  padding: 0.75rem 0.9rem 1rem;
  border-radius: var(--vc-radius);
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.18), rgba(4, 6, 18, 0.96));
  border: 1px solid rgba(34, 197, 94, 0.45);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.7);
}
.vc-featured__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
}
.vc-featured__title {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vc-featured__subtitle {
  margin: 0;
  font-size: 0.8rem;
  color: var(--vc-muted);
}
.vc-featured__scroller {
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.vc-featured__list {
  display: flex;
  gap: 0.9rem;
  min-width: 100%;
}
.vc-featured__item {
  flex: 0 0 auto;
  width: 96px;
  text-align: center;
  text-decoration: none;
}
.vc-featured__hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--vc-muted);
}
.vc-featured__avatar-wrap {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  padding: 3px;
  background: radial-gradient(circle at top, #a3e635, #22c55e);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
}
.vc-featured__avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(15, 23, 42, 0.95);
}
.vc-featured__avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #020617;
  color: #9ca3af;
  font-size: 0.85rem;
}
.vc-featured__name {
  display: block;
  font-size: 0.8rem;
  color: var(--vc-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vc-featured__viewers {
  display: block;
  font-size: 0.75rem;
  color: var(--vc-muted);
}
.vc-featured__item:hover .vc-featured__name {
  color: var(--vc-accent);
}
@media (max-width: 700px) {
  .vc-featured__item {
    width: 80px;
  }
  .vc-featured__avatar-wrap {
    width: 80px;
    height: 80px;
  }
}

/* =========================
   11. GENERIC HELPERS
   ========================= */
.vc-empty {
  padding: 2rem 0;
  text-align: center;
  color: var(--vc-muted);
}
.vc-section--updating {
  animation: vcSectionFade 0.35s ease-out;
}
@keyframes vcSectionFade {
  from {
    opacity: 0.2;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive header / hero */
@media (max-width: 900px) {
  .vc-hero__meta {
    text-align: left;
  }
}
@media (max-width: 700px) {
  .vc-hero {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   12. COMPACT SHARE RAIL
   ========================= */
.vc-share-rail {
  position: fixed;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 0 0, rgba(0, 255, 163, 0.18), transparent 70%),
    rgba(0, 0, 0, 0.82);
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.9);
}

/* Desktop – vertical right */
@media (min-width: 768px) {
  .vc-share-rail {
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    flex-direction: column;
    padding: 0.6rem 0.45rem;
  }
}

/* Mobile – horizontal bottom */
@media (max-width: 767.98px) {
  .vc-share-rail {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    padding-inline: 0.7rem;
  }
  .vc-share-rail__btn:nth-child(n+6) {
    display: none;
  }
}

.vc-share-rail__btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vc-font-main);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 6px 16px rgba(0, 0, 0, 0.7);
  color: #fff;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    filter 0.15s ease-out;
}
.vc-share-rail__btn:hover,
.vc-share-rail__btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 10px 22px rgba(0, 0, 0, 0.9);
}
.vc-share-rail__btn--copied {
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.85),
    0 0 18px rgba(34, 197, 94, 0.75);
}
.vc-share-rail__label {
  line-height: 1;
}

/* Brand colors */
.vc-share-rail__btn--whatsapp {
  background: radial-gradient(circle at 30% 20%, #64f593, #25d366);
}
.vc-share-rail__btn--facebook {
  background: radial-gradient(circle at 30% 20%, #5b86ff, #1877f2);
}
.vc-share-rail__btn--x {
  background: radial-gradient(circle at 50% 0, #151a25, #020617);
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.7),
    0 7px 18px rgba(0, 0, 0, 0.9);
}
.vc-share-rail__btn--x .vc-share-rail__label {
  color: #facc15;
  text-shadow: 0 0 4px rgba(250, 204, 21, 0.9);
}
.vc-share-rail__btn--telegram {
  background: radial-gradient(circle at 30% 20%, #4dd5ff, #0088cc);
}
.vc-share-rail__btn--linkedin {
  background: radial-gradient(circle at 30% 20%, #4da9ff, #0077b5);
}
.vc-share-rail__btn--reddit {
  background: radial-gradient(circle at 30% 20%, #ffc46b, #ff4500);
}
.vc-share-rail__btn--copy {
  background: radial-gradient(circle at 30% 20%, #ff6f9a, #e11d48);
}

/* Fallback brands */
.vc-share-rail__btn--pinterest { background: #bd081c; }
.vc-share-rail__btn--email     { background: #6366f1; }
.vc-share-rail__btn--native    { background: #14b8a6; }
.vc-share-rail__btn--vk        { background: #2787f5; }
.vc-share-rail__btn--ok        { background: #ee8208; }
.vc-share-rail__btn--mailru    { background: #168de2; }

.vc-footer__legal {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: var(--vc-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.vc-footer__legal a {
  color: var(--vc-muted);
  text-decoration: none;
}
.vc-footer__legal a:hover {
  color: var(--vc-text);
}

/* =========================
   COOKIE BANNER
   ========================= */

.vc-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12000;
  pointer-events: none; /* conținutul interior gestionează click-urile */
}

.vc-cookie-banner__inner {
  pointer-events: auto;
  max-width: 960px;
  margin: 0 auto 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.vc-cookie-banner__text {
  flex: 1 1 260px;
  color: var(--vc-muted);
}

.vc-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.vc-cookie-banner__btn {
  min-width: 130px;
}

.vc-cookie-banner__link {
  font-size: 0.8rem;
  color: var(--vc-accent);
  text-decoration: none;
}
.vc-cookie-banner__link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .vc-cookie-banner__inner {
    margin-inline: 0.5rem;
  }
}

