:root {
  --vtx-clr-bg: #131313;
  --vtx-clr-surface: #1e1f1f;
  --vtx-clr-surface-high: #2a2a2a;
  --vtx-clr-surface-low: #1c1b1b;
  --vtx-clr-primary: #ffffff;
  --vtx-clr-neon: #c3f400;
  --vtx-clr-neon-dim: #abd600;
  --vtx-clr-text-main: #e5e2e1;
  --vtx-clr-text-muted: #8e9379;
  --vtx-clr-dark-matte: #0e0e0e;
  --vtx-space-margin: 24px;
  --vtx-space-gutter: 16px;
  --vtx-radius-sm: 4px;
  --vtx-radius-lg: 8px;
  --vtx-font-headline: "Impact", "Arial Black", -apple-system, sans-serif;
  --vtx-font-body: "Courier New", "Segoe UI", monospace, sans-serif;
}

*,
*::before,
*::after {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

a {
  text-decoration: none;
}

.ad-container {
  margin: 16px auto;
  text-align: center;
}

.ad-container[data-ad-index="0"] {
  margin-top: 0;
}

.ad-slot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  min-height: 250px;
  max-width: 300px;
  margin: auto;
}

html,
body {
  background-color: var(--vtx-clr-bg);
  color: var(--vtx-clr-text-main);
  font-family: var(--vtx-font-body);
  font-size: 14px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.vtx-global-noise {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  z-index: 9999;
}

.vtx-hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.vtx-hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.vtx-main-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--vtx-clr-bg);
  border-bottom: 2px solid var(--vtx-clr-primary);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  padding: 16px var(--vtx-space-margin);
}

.vtx-brand-wrapper {
  display: block;
}

.vtx-logo-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 12px;
}

.vtx-logo-icon {
  width: 32px;
  height: 32px;
}

.vtx-logo-text {
  font-family: var(--vtx-font-headline);
  font-size: 24px;
  letter-spacing: -1px;
  color: var(--vtx-clr-primary);
}

.vtx-nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 32px;
  margin-right: auto;
  margin-left: 20px;
}

.vtx-nav-item {
  color: var(--vtx-clr-text-muted);
  text-decoration: none;
  font-family: var(--vtx-font-headline);
  font-size: 16px;
  padding: 4px 8px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.vtx-nav-item:hover {
  background-color: var(--vtx-clr-primary);
  color: var(--vtx-clr-bg);
}

.vtx-active-link {
  color: var(--vtx-clr-neon);
  border-bottom: 2px solid var(--vtx-clr-neon);
}

.vtx-header-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}

.vtx-nav-item-container {
  position: relative;
  display: inline-block;
  height: 100%;
}

.vtx-nav-drop-pane {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #121212;
  border: 1px solid #222222;
  min-width: 180px;
  display: none;
  z-index: 250;
  padding: 6px 0;
  margin-top: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85);
}

.vtx-nav-drop-pane::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.vtx-nav-item-container:hover .vtx-nav-drop-pane {
  display: block;
}

.vtx-nav-drop-item {
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 800;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: left;
}

.vtx-nav-drop-item:hover {
  background-color: #1a1a1a;
  color: #c3f400;
}

.vtx-search-bar-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  background: transparent;
  border: 1px solid transparent;
  padding: 4px;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 32px;
  overflow: hidden;
  border-radius: 2px;
}

.vtx-search-bar-wrapper.vtx-active {
  width: 240px;
  background: #141414;
  border-color: #222222;
  padding: 4px 12px;
}

.vtx-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 11px;
  font-family: monospace;
  width: 0;
  opacity: 0;
  -webkit-transition: width 0.3s ease, opacity 0.2s ease;
  transition: width 0.3s ease, opacity 0.2s ease;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
}

.vtx-search-bar-wrapper.vtx-active .vtx-search-input {
  width: 170px;
  opacity: 1;
}

.vtx-search-trigger {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  padding: 4px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.vtx-search-trigger:hover {
  color: #c3f400;
}

.vtx-search-icon {
  width: 24px;
  height: 24px;
}

.vtx-section-block {
  padding: 48px var(--vtx-space-margin);
}

.vtx-section-headline-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
          align-items: flex-end;
  border-bottom: 4px solid var(--vtx-clr-primary);
  padding-bottom: 8px;
  margin-bottom: 24px;
}

.vtx-section-title {
  font-family: var(--vtx-font-headline);
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.vtx-italic-title {
  font-style: italic;
  border-left: 8px solid var(--vtx-clr-neon);
  padding-left: 16px;
}

.vtx-section-subtitle {
  font-size: 12px;
  font-weight: 700;
  color: var(--vtx-clr-neon-dim);
  letter-spacing: 1.5px;
  padding-bottom: 6px;
}

.vtx-grid-five-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--vtx-space-gutter);
}

.vtx-grid-six-columns {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--vtx-space-gutter);
}

.vtx-card-container-9-16 {
  position: relative;
  aspect-ratio: 9 / 16;
  background-color: var(--vtx-clr-surface);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
}

.vtx-card-container-9-16:hover {
  border-color: var(--vtx-clr-neon);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.vtx-lazy-img-node {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.vtx-card-container-9-16:hover .vtx-lazy-img-node {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.vtx-viral-grid-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  background-color: #0b0b0b;
  width: 100%;
  cursor: pointer;
  position: relative;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

.vtx-viral-thumb-wrap {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background-color: #1a1a1a;
  position: relative;
}

.vtx-viral-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.75)), color-stop(35%, rgba(0, 0, 0, 0.45)), color-stop(65%, rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 35%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 35%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0) 100%);
}

.vtx-viral-category {
  display: inline-block;
  -webkit-align-self: flex-start;
          align-self: flex-start;
  background-color: #ccff00;
  color: #000000;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 3px 6px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.vtx-viral-title {
  color: #ffffff;
  font-family: 'Impact', 'Arial Black', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: 4px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vtx-viral-duration {
  color: #777777;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vtx-card-gradient-shield {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.95)), color-stop(50%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.1)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  padding: 16px;
  z-index: 2;
}

.vtx-badge-top-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}

.vtx-category-tag {
  background-color: var(--vtx-clr-neon);
  color: var(--vtx-clr-bg);
  font-size: 11px;
  font-weight: 900;
  padding: 2px 6px;
  text-transform: uppercase;
}

.vtx-duration-pill {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--vtx-clr-primary);
  font-size: 11px;
  padding: 2px 6px;
}

.vtx-meta-bottom-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  gap: 8px;
}

.vtx-stat-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--vtx-clr-text-main);
}

.vtx-play-icon-svg {
  width: 28px;
  height: 28px;
  fill: var(--vtx-clr-neon);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.vtx-card-container-9-16:hover .vtx-play-icon-svg {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.vtx-video-main-title {
  font-family: var(--vtx-font-headline);
  font-size: 18px;
  color: #ffffff;
  line-height: 1.1;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 40px;
}

.vtx-compact-grid-card {
  position: relative;
  cursor: pointer;
}

.vtx-compact-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vtx-compact-details {
  padding: 8px;
}

.vtx-compact-title {
  font-family: var(--vtx-font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--vtx-clr-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vtx-compact-category {
  font-size: 12px;
  font-weight: 700;
  color: var(--vtx-clr-neon-dim);
  letter-spacing: 1.5px;
  padding-bottom: 6px;
}

.vtx-carousel-outer-wrap {
  background-color: var(--vtx-clr-surface-low);
}

.vtx-carousel-header-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  margin-bottom: 24px;
}

.vtx-action-btn {
  background-color: var(--vtx-clr-primary);
  color: var(--vtx-clr-bg);
  border: none;
  font-family: var(--vtx-font-headline);
  font-size: 16px;
  padding: 8px 24px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.vtx-action-btn:hover {
  background-color: var(--vtx-clr-neon);
}

.vtx-slider-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.vtx-slider-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 16px;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.vtx-slider-slide-node {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: -webkit-calc((100% - (16px * 4)) / 5);
  width: calc((100% - (16px * 4)) / 5);
}

.vtx-slider-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.vtx-slider-arrow:hover {
  background-color: var(--vtx-clr-neon);
  color: var(--vtx-clr-bg);
}

.vtx-arrow-left {
  left: 10px;
}

.vtx-arrow-right {
  right: 10px;
}

.vtx-slider-indicators {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.vtx-indicator-dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.vtx-indicator-dot.vtx-dot-active {
  background-color: var(--vtx-clr-neon);
  width: 24px;
  border-radius: 4px;
}

.vtx-editors-panel {
  background-color: var(--vtx-clr-surface-high);
  position: relative;
}

.vtx-editors-layout-split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 48px;
}

.vtx-editors-branding-side {
  width: 30%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
}

.vtx-giant-title {
  font-family: var(--vtx-font-headline);
  font-size: 72px;
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--vtx-clr-neon);
  margin-bottom: 24px;
}

.vtx-hollow-pill-btn {
  background: none;
  border: 4px solid var(--vtx-clr-neon);
  color: var(--vtx-clr-neon);
  font-family: var(--vtx-font-headline);
  font-size: 20px;
  padding: 12px;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.vtx-hollow-pill-btn:hover {
  background-color: var(--vtx-clr-neon);
  color: var(--vtx-clr-bg);
}

.vtx-editors-list-side {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vtx-rank-row-item {
  background-color: var(--vtx-clr-bg);
  padding: 16px 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  border-left: 8px solid var(--vtx-clr-primary);
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.vtx-rank-row-item:hover {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.vtx-rank-row-item:hover {
  border-left-color: var(--vtx-clr-neon);
}

.vtx-rank-left-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 24px;
}

.vtx-rank-number {
  font-family: var(--vtx-font-headline);
  font-size: 32px;
  color: var(--vtx-clr-primary);
}

.vtx-rank-row-item:hover .vtx-rank-number {
  color: var(--vtx-clr-neon);
}

.vtx-rank-title {
  font-family: var(--vtx-font-headline);
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  max-height: 66px;
  overflow: hidden;
}

.vtx-rank-duration {
  font-size: 12px;
  color: var(--vtx-clr-text-muted);
}

.vtx-liked-grand-block {
  background-color: var(--vtx-clr-bg);
}

.vtx-liked-layout-split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 32px;
}

.vtx-liked-title-column {
  width: 30%;
}

.vtx-liked-grid-column {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vtx-wide-card-container {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 2px solid #ffffff;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: border 0.2s ease;
  transition: border 0.2s ease;
}

.vtx-wide-card-container:hover {
  border-color: var(--vtx-clr-neon);
}

.vtx-wide-overlay-shield {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0.1)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  padding: 16px;
}

.vtx-live-tag {
  background-color: #ff3b30;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
}

.vtx-highlight-tag {
  background-color: #00e0ff;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
}

.vtx-wide-bottom-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
          align-items: flex-end;
}

.vtx-fullbleed-highlight-section {
  background-color: var(--vtx-clr-neon);
  padding: 64px var(--vtx-space-margin);
}

.vtx-fullbleed-inner-layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 32px;
}

.vtx-fullbleed-caption-side {
  width: 30%;
}

.vtx-giant-black-title {
  font-family: var(--vtx-font-headline);
  font-size: 72px;
  color: var(--vtx-clr-bg);
  line-height: 0.9;
}

.vtx-fullbleed-grid-side {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vtx-matte-dark-box {
  background-color: var(--vtx-clr-dark-matte);
  padding: 20px;
  min-height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.vtx-matte-dark-box:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.vtx-matte-category {
  font-size: 11px;
  color: var(--vtx-clr-neon);
  font-weight: 700;
  text-transform: uppercase;
}

.vtx-matte-title {
  font-family: var(--vtx-font-headline);
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  height: 57px;
  overflow: hidden;
  margin: 10px 0;
}

.vtx-matte-views {
  font-size: 11px;
  color: var(--vtx-clr-text-muted);
  white-space: nowrap;
  overflow: hidden;
}

.vtx-main-footer {
  background-color: var(--vtx-clr-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px var(--vtx-space-margin) 20px var(--vtx-space-margin);
}

.vtx-footer-meta-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  margin-bottom: 24px;
}

.vtx-footer-logo-fallback {
  font-family: var(--vtx-font-headline);
  font-size: 24px;
  color: #fff;
}

.vtx-footer-legal-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 24px;
}

.vtx-footer-legal-links a {
  color: var(--vtx-clr-text-muted);
  text-decoration: none;
  font-size: 12px;
}

.vtx-footer-legal-links a:hover {
  color: var(--vtx-clr-neon);
}

.vtx-square-action-node {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  text-decoration: none;
  background-color: var(--vtx-dynamic-accent, #ccff00);
  box-shadow: 3px 3px 0px #000000, 5px 5px 0px #ffffff;
  -webkit-transition: box-shadow 0.1s ease, -webkit-transform 0.1s ease;
  transition: box-shadow 0.1s ease, -webkit-transform 0.1s ease;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  transition: transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
  cursor: pointer;
}

.vtx-square-action-node svg {
  width: 22px;
  height: 22px;
  color: #1a1613;
}

.vtx-square-action-node:hover {
  -webkit-transform: translate(-1px, -1px);
          transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px #000000, 7px 7px 0px #ffffff;
}

.vtx-square-action-node:active {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
  box-shadow: 0px 0px 0px #000000, 2px 2px 0px #ffffff;
}

.vtx-footer-copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  text-align: left;
}

@media (max-width: 900px) {
  .vtx-nav-links {
    display: none;
  }

  .vtx-grid-five-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vtx-grid-six-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vtx-editors-layout-split,
  .vtx-liked-layout-split,
  .vtx-fullbleed-inner-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }

  .vtx-editors-branding-side,
  .vtx-editors-list-side,
  .vtx-liked-title-column,
  .vtx-liked-grid-column,
  .vtx-fullbleed-caption-side,
  .vtx-fullbleed-grid-side {
    width: 100%;
  }

  .vtx-slider-slide-node {
    width: -webkit-calc((100% - (16px * 2)) / 3);
    width: calc((100% - (16px * 2)) / 3);
  }

  .vtx-fullbleed-grid-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .vtx-footer-meta-line {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 10px;

  }

  .vtx-footer-legal-links {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .vtx-grid-five-columns,
  .vtx-grid-six-columns,
  .vtx-fullbleed-grid-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vtx-editors-list-side,
  .vtx-liked-grid-column {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }


  .vtx-slider-slide-node {
    width: -webkit-calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
  }

  .vtx-card-container-9-16,
  .vtx-viral-grid-card {
    height: 350px;
    aspect-ratio: auto;
  }

  .vtx-viral-grid-card .vtx-viral-thumb-wrap {
    height: 100%;
    aspect-ratio: auto;
  }

  .vtx-compact-thumb-wrap {
    height: 200px;
    aspect-ratio: auto;
  }

  .vtx-rank-row-item {
    height: 98px;
  }

  .vtx-wide-card-container {
    height: 235px;
    aspect-ratio: auto;
  }
}
