/*
 * Vidflow immersive UI stylesheet
 * Author: Temlines · https://templines.com
 * Description: Core layout, typography, and motion rules for the Vidflow experience,
 *   covering studio, feed, upload, boost, and premium modal surfaces.
 */
.vf-page-studio {
  background: radial-gradient(circle at top, rgba(110, 87, 255, 0.18), transparent 45%), #040107;
  color: #fff;
}




.vf-page-studio .vf-shell {
  max-width: 1440px;
}

.vf-header-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.vf-header-nav a {
  text-decoration: none;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.vf-header-nav a[aria-current='page'] {
  color: #fff;
}

.vf-studio-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
    overflow: hidden;
    margin-top: 32px;
    margin-bottom: 48px;
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid var(--vf-border);
    border-radius: var(--vf-radius-xl);
    background: linear-gradient(130deg, rgba(246, 76, 255, 0.08), rgba(89, 255, 205, 0.08));
    box-shadow: var(--vf-shadow-soft);
}



.vf-page-studio .vf-overline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
}

.vf-studio-hero-copy h1 {
font-size: clamp(3rem, 6vw, 2.5rem);
    margin: 12px 0;
    font-weight: 500;
}

.vf-studio-hero-copy > p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 90%;
}

.vf-studio-hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vf-studio-hero-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.vf-studio-hero-stats strong {
    font-size: 1.5rem;
    display: block;
    font-weight: 500;
}

.vf-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}

.vf-studio-hero-media {
position: relative;
    margin-top: 0px;
    margin-right:0px;

}

.vf-studio-media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

@media (max-width: 1560px) {
  .vf-studio-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-studio-media-grid img:nth-child(5),
  .vf-studio-media-grid img:nth-child(6) {
    display: none;
  }
}

.vf-studio-media-grid img {
    width: 100%;
    border-radius: var(--vf-radius-lg);
    height: 260px;
    object-fit: cover;
    filter: saturate(1.1);
    animation: vf-studio-media-pulse 8s ease-in-out infinite;
    transform-origin: center;
    will-change: transform, filter;
    animation-delay: var(--vf-studio-pulse-delay, 0s);
}

.vf-studio-media-grid img:nth-child(1) {
    --vf-studio-pulse-delay: 0s;
}

.vf-studio-media-grid img:nth-child(2) {
    --vf-studio-pulse-delay: 1.2s;
}

.vf-studio-media-grid img:nth-child(3) {
    --vf-studio-pulse-delay: 2.4s;
}

.vf-studio-media-grid img:nth-child(4) {
    --vf-studio-pulse-delay: 3.6s;
}

.vf-studio-media-grid img:nth-child(5) {
    --vf-studio-pulse-delay: 4.8s;
}

.vf-studio-media-grid img:nth-child(6) {
    --vf-studio-pulse-delay: 6s;
}

.vf-studio-card {
  position: absolute;
  background: var(--vf-panel);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--vf-radius-xl);
  padding: 16px 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  transform-origin: center;
  font-weight: normal;
}

.vf-studio-card-progress {
    top: -26px;
    right: -20px;
}

.vf-studio-card-rating {
    bottom: 18px;
    left: -120px;
}

.vf-stars {
  font-size: 1.2rem;
  color: orange;
}

.vf-studio-ribbons {
  margin: 40px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vf-studio-ribbon {
  overflow: hidden;
  border-radius: var(--vf-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0;
  background: linear-gradient(120deg, rgba(125, 247, 132, 0.25), rgba(148, 117, 255, 0.2));
  transform: rotate(-4deg);
}

.vf-studio-ribbon-secondary {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(0, 255, 170, 0.2));
  transform: rotate(3deg);
}

.vf-studio-ribbon-track {
  display: flex;
  gap: 40px;
  animation: vf-feed-marquee 16s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.vf-studio-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 40px 0;
}

.vf-studio-panels article {
  border-radius: var(--vf-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  background: rgba(8, 7, 12, 0.85);
  min-height: 240px;
}

.vf-studio-proof {
  margin: 60px 0 100px;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-2xl);
  padding: clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  background: rgba(12, 10, 18, 0.9);
}

.vf-studio-proof ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
}
.vf-creator-info {
  margin-bottom: 48px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-xl);
  background: rgba(7, 6, 14, 0.6);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vf-creator-info-head h2 {
  margin: 0;
}

.vf-creator-info-head p {
  margin: 8px 0 0;
  color: var(--vf-text-muted);
}

.vf-creator-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.vf-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  background: rgba(9, 7, 14, 0.5);
}

.vf-info-icon {
  flex-shrink: 0;
}

.vf-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vf-icon-circle svg {
  width: 26px;
  height: 26px;
  color: var(--vf-secondary);
}

.vf-info-label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vf-text-muted);
}

.vf-info-value {
  margin: 4px 0 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.vf-chat-panel {
  margin-bottom: 48px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-xl);
  background: rgba(7, 6, 14, 0.6);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vf-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.vf-chat-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--vf-secondary);
  flex-shrink: 0;
}

.vf-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vf-chat-status {
  margin: 6px 0 0;
  color: var(--vf-text-muted);
}

.vf-chat-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 6px;
}

.vf-chat-message {
  padding: 14px 16px;
  border-radius: var(--vf-radius-lg);
  width: fit-content;
  max-width: 70%;
  line-height: 1.5;
  font-size: 0.95rem;
  position: relative;
}

.vf-chat-message span {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #040308;
}

.vf-chat-message-host {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vf-chat-message-guest {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--vf-primary), var(--vf-secondary));
  color: #040308;
}

.vf-chat-input {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vf-chat-input input {
  flex: 1;
  min-width: 200px;
  border-radius: var(--vf-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 6, 14, 0.4);
  color: var(--vf-text);
  padding: 14px 16px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.vf-chat-input input:focus {
  border-color: var(--vf-secondary);
  outline: none;
}

:root {
  color-scheme: dark;
  --vf-bg: #07030a;
  --vf-panel: rgba(17, 16, 26, 0.99);
  --vf-panel-strong: rgba(29, 26, 47, 0.9);
  --vf-border: rgba(255, 255, 255, 0.15);
  --vf-primary: #f64cff;
  --vf-primary-soft: rgba(246, 76, 255, 0.2);
  --vf-secondary: #59ffcd;
  --vf-text: #f7f3ff;
  --vf-text-muted: rgba(247, 243, 255, 0.68);
  --vf-font-display: "Space Grotesk", "Urbanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --vf-font-body: "Urbanist", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --vf-shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.4);
  --vf-radius-xl: 28px;
  --vf-radius-lg: 20px;
  --vf-radius-md: 16px;
  --vf-radius-pill: 999px;
  --vf-bg-pattern: radial-gradient(circle at 20% 20%, rgba(89, 255, 205, 0.1) 0, transparent 40%), radial-gradient(circle at 80% 0, rgba(246, 76, 255, 0.2) 0, transparent 55%), linear-gradient(145deg, rgba(7, 3, 10, 1) 0%, rgba(14, 10, 23, 1) 100%);
}

* {
  box-sizing: border-box;
}

:root[data-theme='light'] {
  color-scheme: light;
  --vf-bg: #faf9ff;
  --vf-panel: rgba(255, 255, 255, 0.92);
  --vf-panel-strong: rgba(248, 246, 255, 0.98);
  --vf-border: rgba(64, 52, 118, 0.14);
  --vf-primary: #7557ff;
  --vf-primary-soft: rgba(117, 87, 255, 0.18);
  --vf-secondary: #ff8dc1;
  --vf-text: #1a1630;
  --vf-text-muted: rgba(26, 22, 48, 0.6);
  --vf-shadow-soft: 0 18px 50px rgba(63, 42, 120, 0.12);
  --vf-bg-pattern: radial-gradient(circle at 18% 20%, rgba(255, 141, 193, 0.18) 0, transparent 42%), radial-gradient(circle at 82% 8%, rgba(117, 87, 255, 0.22) 0, transparent 52%), linear-gradient(135deg, #fefeff 0%, #ecebff 100%);
}

:root[data-theme='light'] .vf-creator-featured {
    background: #fff;
}

:root[data-theme='light']  .vf-action-pill:not(hover){
      background: #fff; 
}

:root[data-theme='light']  .vf-action-pill:hover{
        background: var(--vf-secondary);
    color: #050307;
}

:root[data-theme='light']  .vf-creator-hero{
     background: #fff;   
}


:root[data-theme='light']  .vf-logo-mark{
    color: #fff;
}


:root[data-theme='light'] .vf-hero {
  background: #fff;
}

:root[data-theme='light'] .vf-feed-ribbon-track span {
    color: #222;
}

:root[data-theme='light'] .vf-btn-primary {
    color: #fff;
}


:root[data-theme='light'] .vf-hero-insights-grid dt {
    color: #222;
}

:root[data-theme='light']  .vf-page-creator .vf-hero-stats {
    background: rgba(117, 87, 255, 0.12);
}


:root[data-theme='light']  .vf-creator-meta div {
    background: rgba(255, 255, 255, 0.54);
}



:root[data-theme='light'] .vf-chip-active {
    background-color: var(--vf-primary);
}


:root[data-theme='light'] .vf-token-tier {
    background: #fff;
}




:root[data-theme='light'] .vf-pricing-table-wrap {
    background: rgba(117, 87, 255, 0.12);
}

:root[data-theme='light']  .vf-pricing{
    background: #fff;
    box-shadow: 0 30px 80px rgba(8, 5, 24, 0.1);
}


:root[data-theme='light'] .vf-pricing-table tbody td {
    color: #222;
}


:root[data-theme='light'] .vf-pricing-table tbody th, :root[data-theme='light'] .vf-pricing-table tbody td {
    border-top-color: var(--vf-border);
}


:root[data-theme='light'] .vf-plan-featured .vf-plan-tag {
    color: #222;
}



:root[data-theme='light'] .vf-studio-card{
    background: linear-gradient(120deg, rgba(246, 76, 255, 0.18), rgba(89, 255, 205, 0.12));
    background-color: #fff;
}


:root[data-theme='light'] .vf-upload-panel{
    background: #fff;
}


body {
  margin: 0;
  font-family: var(--vf-font-body);
  background-color: var(--vf-bg);
  background-image: var(--vf-bg-pattern);
  color: var(--vf-text);
  min-height: 100vh;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

button {
  font-family: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vf-shell {
    display: grid;
    grid-template-columns: clamp(210px, 18vw, 260px) minmax(0, 1fr);
    gap: clamp(16px, 2vw, 32px);
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 32px clamp(12px, 3vw, 40px) 60px;
}

.vf-left-nav {
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-xl);
  background: var(--vf-panel);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 32px;
  height: calc(100vh - 64px);
  box-shadow: var(--vf-shadow-soft);
}

.vf-left-nav-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.vf-left-nav-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--vf-primary), var(--vf-secondary));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #050307;
  text-transform: lowercase;
}

.vf-left-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vf-left-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--vf-radius-lg);
  color: var(--vf-text-muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

.vf-left-menu-link svg {
  width: 22px;
  height: 22px;
}

.vf-left-menu-link-active,
.vf-left-menu-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--vf-text);
}

.vf-left-nav-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
}

.vf-theme-label {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vf-text-muted);
    text-transform: uppercase;
    text-align: center;
}

.vf-theme-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding:8px 5px;
  border-radius: var(--vf-radius-pill);
  border: 1px solid var(--vf-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--vf-text);
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
}

.vf-theme-toggle[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.vf-theme-note {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--vf-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vf-theme-note-visible {
  opacity: 1;
  transform: translateY(0);
}

.vf-theme-note-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--vf-primary);
}

.vf-theme-note-icon svg {
  width: 100%;
  height: 100%;
}

.vf-theme-toggle .vf-theme-option {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  z-index: 2;
}

.vf-theme-thumb {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: calc(50% - 6px);
  border-radius: var(--vf-radius-pill);
  background: var(--vf-primary);
  transition: transform 0.25s ease;
  z-index: 1;
}

:root[data-theme='light'] .vf-theme-thumb {
  transform: translateX(100%);
}

:root[data-theme='light'] .vf-theme-toggle {
  background: rgba(10, 5, 35, 0.05);
}

:root[data-theme='light'] .vf-left-nav {
  background: var(--vf-panel);
  border-color: var(--vf-border);
  box-shadow: 0 15px 40px rgba(45, 32, 82, 0.12);
}

:root[data-theme='light'] .vf-header {
  background: var(--vf-panel);
  border-color: var(--vf-border);
  box-shadow: 0 12px 32px rgba(45, 32, 82, 0.1);
}

:root[data-theme='light'] .vf-rail-card,
:root[data-theme='light'] .vf-banner,
:root[data-theme='light'] .vf-card {
  background: var(--vf-panel);
  border-color: var(--vf-border);
  box-shadow: 0 18px 42px rgba(45, 32, 82, 0.12);
    border: 0;
}

:root[data-theme='light'] .vf-mobile-panel {
  background: rgba(255, 255, 255, 0.96);
  color: var(--vf-text);
}

:root[data-theme='light'] .vf-left-menu-link-active,
:root[data-theme='light'] .vf-left-menu-link:hover {
  background: rgba(117, 87, 255, 0.12);
  color: var(--vf-text);
}

:root[data-theme='light'] .vf-burger {
  border-color: var(--vf-border);
  background: rgba(117, 87, 255, 0.12);
  color: var(--vf-text);
}

:root[data-theme='light'] .vf-btn-outline {
    border: 1px solid rgba(117, 87, 255, 0.4);
    color: #222;
    background: rgba(10, 5, 35, 0.05);
}
:root[data-theme='light'] .vf-token-tier {
    background: #fff;
}


:root[data-theme='light'] .vf-btn-primary {
  background: linear-gradient(135deg, #7557ff, #ff8dc1);
  box-shadow: 0 12px 30px rgba(117, 87, 255, 0.3);
}

:root[data-theme='light'] .vf-btn-outline {
border-color: rgba(117, 87, 255, 0.4);
    color: #222;
    border: 0;
}

:root[data-theme='light']  .vf-btn-ghost {
    background: rgba(10, 5, 35, 0.05);
}

:root[data-theme='light']  .vf-token-balance { 
    background: #fff;
}


:root[data-theme='light'] .vf-card-badge {
  background: rgba(117, 87, 255, 0.12);
  color: var(--vf-text);
}

:root[data-theme='light']  .vf-creator-card{
    background-color: #fff;
}

:root[data-theme='light']  .vf-creators {
    background: #fff;
}


:root[data-theme='light']  .vf-floating-card{
    background: #fff; 
}


:root[data-theme='light'] .vf-hero-insights-icon{
    background: rgba(10, 5, 35, 0.05);

}


:root[data-theme='light']  .vf-content-stack{
    background: #fff;   
}

:root[data-theme='light'] .vf-studio-hero{
     background: #fff;  
}

:root[data-theme='light']  .vf-theme-option-active{
    color: #fff;
}


:root[data-theme='light']  .vf-studio-hero-copy > p {
    color: #222;

}



.vf-app-shell {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 0 0px;
}

.vf-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 24vw, 360px);
  gap: clamp(24px, 3vw, 40px);
  align-items: flex-start;
}

.vf-main-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vf-feed-shell {
  width: 100%;
  max-width: none;
}

.vf-right-rail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.vf-rail-card {
  border-radius: var(--vf-radius-xl);
  border: 1px solid var(--vf-border);
  background: rgba(13, 11, 19, 0.82);
  padding: 22px;
  box-shadow: var(--vf-shadow-soft);
}

.vf-rail-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.vf-rail-card p {
  margin: 0 0 12px;
  color: var(--vf-text-muted);
}

.vf-rail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vf-rail-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--vf-text-muted);
}

.vf-rail-badge {
  padding: 6px 12px;
  border-radius: var(--vf-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vf-rail-avatars {
  display: flex;
  margin-top: 14px;
}

.vf-rail-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #0b060f;
  margin-left: -10px;
}

.vf-chat-input input:focus {
  border-color: var(--vf-secondary);
  outline: none;
}

.vf-chat-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.vf-chat-flyout {
  width: min(360px, calc(100vw - 40px));
  background: rgba(9, 7, 14, 0.92);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-xl);
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
    position: relative;
    right: 60px;
}

.vf-chat-flyout[hidden] {
  display: block;
}

.vf-chat-float-active .vf-chat-flyout {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.vf-chat-flyout-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vf-chat-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--vf-text);
  padding: 6px;
  cursor: pointer;
}

.vf-floating-chat-container {
  position: relative;
}

.vf-coupon-badge-wrap {
  position: absolute;
  right: -7px;
  top: 20px;
  width: 235px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.vf-coupon-badge {
  background: #ffffff;
  color: #111;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 7px 30px 7px 14px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: auto;
}

.vf-coupon-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.vf-chat-button {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    right: 0;
    bottom: 0;
}

.vf-chat-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(79, 172, 254, 0.5);
}

.vf-chat-button:active {
  transform: scale(0.95);
}

.vf-light-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
  animation: vfRotate 4s linear infinite;
}

.vf-liquid-waves,
.vf-ripple-effect,
.vf-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
}

.vf-liquid-wave {
  position: absolute;
  width: 120px;
  height: 120px;
  top: -25px;
  left: -25px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(79, 172, 254, 0.3), rgba(0, 242, 254, 0.4), rgba(255, 255, 255, 0.25));
  animation: vfLiquidFlow 3s ease-in-out infinite;
}

.vf-liquid-wave:nth-child(2) {
  width: 140px;
  height: 140px;
  top: -35px;
  left: -35px;
  animation-delay: 0.6s;
}

.vf-liquid-wave:nth-child(3) {
  width: 160px;
  height: 160px;
  top: -45px;
  left: -45px;
  animation-delay: 1.2s;
}

.vf-liquid-wave:nth-child(4) {
  width: 180px;
  height: 180px;
  top: -55px;
  left: -55px;
  animation-delay: 1.8s;
}

.vf-liquid-wave:nth-child(5) {
  width: 200px;
  height: 200px;
  top: -65px;
  left: -65px;
  animation-delay: 2.4s;
}

.vf-ripple {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  animation: vfRipple 4s ease-out infinite;
}

.vf-ripple:nth-child(1) {
  width: 100px;
  height: 100px;
  top: -10px;
  left: -10px;
}

.vf-ripple:nth-child(2) {
  width: 120px;
  height: 120px;
  top: -20px;
  left: -20px;
  animation-delay: 1s;
}

.vf-ripple:nth-child(3) {
  width: 140px;
  height: 140px;
  top: -30px;
  left: -30px;
  animation-delay: 2s;
}

.vf-ripple:nth-child(4) {
  width: 160px;
  height: 160px;
  top: -40px;
  left: -40px;
  animation-delay: 3s;
}

.vf-chat-icon {
  position: relative;
  width: 60%;
  height: 60%;
  z-index: 1;
  animation: vfSvgPulse 2s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes vfSvgPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.vf-chat-button.vf-chat-button-active .vf-chat-icon {
  animation: vfSvgPulse 2s ease-in-out infinite, vfSvgRotate 6s linear infinite;
}

@keyframes vfSvgRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.vf-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  animation: vfParticleFloat 3s ease-in-out infinite;
}

.vf-particle:nth-child(2) {
  left: 70%;
  animation-delay: 0.4s;
}

.vf-particle:nth-child(3) {
  top: 70%;
  animation-delay: 0.8s;
}

.vf-particle:nth-child(4) {
  left: 30%;
  bottom: 20%;
  animation-delay: 1.2s;
}

.vf-unread-badge {
    position: absolute;
    top: 26px;
    right: 26px;
    background: transparent;
    color: #fff;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

@keyframes vfLiquidFlow {
  0% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) rotate(360deg);
    opacity: 0.6;
  }
}

@keyframes vfRipple {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes vfParticleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) scale(1.2);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .vf-shell {
    grid-template-columns: 1fr;
    padding: 10px  10px;
  }

  .vf-left-nav {
    display: none;
  }

  .vf-left-nav-head,
  .vf-left-nav-footer {
    display: none;
  }

  .vf-app-shell {
    padding-bottom: 10px;
  }

  .vf-right-rail {
    position: static;
  }

  .vf-header.vf-header-hidden {
    transform: none;
  }
}

.vf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 32px);
  padding: 20px clamp(16px, 3vw, 40px);
  background: rgba(7, 6, 14, 0.8);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  box-shadow: var(--vf-shadow-soft);
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px);
  transition: transform 0.35s ease;
  z-index: 998;
}

.vf-header.vf-header-hidden {
  transform: translateY(calc(-100% - 12px));
}

.vf-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--vf-font-display);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--vf-text);
}

.vf-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--vf-primary), var(--vf-secondary));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #0b060f;
}

.vf-logo-text {
  font-size: 1.25rem;
}

.vf-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.vf-header-search {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 260px;
    max-width: 360px;
}

.vf-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 6, 14, 0.55);
  color: var(--vf-text);
  position: relative;
  isolation: isolate;
  box-shadow: 0 10px 25px rgba(5, 0, 20, 0.45);
  backdrop-filter: blur(4px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.vf-burger::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: -1;
  background: linear-gradient(135deg, rgba(118, 87, 255, 0.6), rgba(255, 141, 193, 0.5));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.vf-burger:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(15, 12, 26, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(5, 0, 20, 0.55);
}

.vf-burger:hover::after {
  opacity: 1;
}

.vf-burger:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
}

.vf-burger:focus-visible::after {
  opacity: 1;
}

.vf-burger-line {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, width 0.25s ease;
}

.vf-burger-line:nth-child(1) {
  width: 22px;
}

.vf-burger-line:nth-child(2) {
  width: 16px;
}

.vf-burger-line:nth-child(3) {
  width: 22px;
}

.vf-mobile-panel {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 85vw);
  background: rgba(9, 7, 14, 0.96);
  backdrop-filter: blur(16px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 50;
}

.vf-mobile-panel-active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.vf-mobile-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--vf-font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vf-mobile-close {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--vf-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--vf-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vf-mobile-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vf-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.vf-mobile-links a {
  text-decoration: none;
  color: var(--vf-text);
  font-weight: 600;
}

.vf-search-close,
.vf-search-reset {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--vf-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--vf-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.vf-search-close:hover,
.vf-search-reset:hover {
  border-color: var(--vf-secondary);
  background: rgba(255, 255, 255, 0.08);
}

.vf-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 18px;
  border: 1px solid var(--vf-border);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vf-search-field:focus-within {
  border-color: var(--vf-secondary);
  box-shadow: 0 0 0 2px rgba(255, 111, 60, 0.25);
}

.vf-search-icon svg,
.vf-search-reset svg,
.vf-search-close svg {
  width: 22px;
  height: 22px;
}

.vf-search-input {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
}

.vf-search-input::placeholder {
  color: var(--vf-text-muted);
}

.vf-search-dynamic {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vf-secondary);
  min-width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.vf-search-dynamic span {
  display: inline-block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.vf-search-dynamic.vf-search-word-transition span {
  opacity: 0;
  transform: translateY(-8px);
}

.vf-header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}


.vf-creator-hero-actions  .vf-btn-ghost {
    background: rgba(255, 255, 255, 0.88);
    color: #222;
}

.vf-header-search.vf-search-collapsed .vf-search-field {
  display: none;
}

.vf-header-search.vf-search-collapsed {
  flex: initial;
}

.vf-header-search-compact {
    width: 100%;
    border: 0;
    outline: 0;
}

.vf-no-scroll {
  overflow: hidden;
}

.vf-search-field-compact {
  padding: 8px 14px;
  gap: 8px;
  border-radius: 14px;
}

.vf-search-field-compact .vf-search-input {
  font-size: 0.95rem;
    outline: none;
    background: none;
}

.vf-search-field-compact .vf-search-icon svg,
.vf-search-field-compact .vf-search-reset svg {
  width: 18px;
  height: 18px;
}

.vf-search-field-compact .vf-search-reset {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.vf-search-field-compact .vf-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vf-btn {
  border: none;
  border-radius: var(--vf-radius-pill);
  padding: 12px 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--vf-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.vf-btn-primary {
  position: relative;
  background: linear-gradient(120deg, var(--vf-primary), var(--vf-secondary), var(--vf-primary));
  background-size: 200% 200%;
  color: #050307;
  box-shadow: 0 20px 40px rgba(246, 76, 255, 0.35);
  animation: vf-btn-gradient-wave 4s ease infinite;
}

@keyframes vf-btn-gradient-wave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.vf-btn-outline {
  background: transparent;
  border: 1px solid var(--vf-border);
}

.vf-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
}

.vf-btn:hover {
  transform: translateY(-2px);
}


.vf-btn-subscribe {
    background: transparent;
    border: 1px solid var(--vf-border);
    background: var(--vf-secondary);
    color: #222;
}


:root[data-theme='light'] .vf-btn-subscribe {
    background: var(--vf-secondary);
    color: #fff;
}

:root[data-theme='light'] .vf-creator-hero-actions .vf-btn-ghost {
    background-color: #fff;
    color: var(--vf-text);
}


.vf-hero {
  margin-top: 50px;
  padding: clamp(36px, 5vw, 70px);
  background: linear-gradient(130deg, rgba(246, 76, 255, 0.08), rgba(89, 255, 205, 0.08));
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-xl);
  box-shadow: var(--vf-shadow-soft);
    overflow: hidden;
}





.vf-hero-inner{
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 48px); 
}

.vf-hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  font-family: var(--vf-font-display);
  margin: 12px 0;
    line-height: 1.1;
}

.vf-hero-body {
    color: var(--vf-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 540px;
    letter-spacing: 0.2px;
}

.vf-overline,.vf-studio-hero-copy .vf-overline,.vf-pricing-headline .vf-overline{
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--vf-secondary) !important;
    font-weight: 600;
}

.vf-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.vf-hero-reel {
  display: flex;
  gap: 18px;
  margin-top: 32px;
}

@media (max-width: 1290px) {
  .vf-hero-reel {
    display: none;
  }
    
    .vf-hero-inner {
    grid-template-columns: none;
}
    
    
    .vf-hero-inner    .vf-hero-reel {
    min-height: auto;
    top: 0;
    margin: 0;
}
    
    
}

.vf-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    margin-top: 45px;
}

.vf-pricing {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--vf-radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top right, rgba(246, 76, 255, 0.18), transparent 40%),
    radial-gradient(circle at bottom left, rgba(89, 255, 205, 0.18), transparent 35%),
    rgba(9, 7, 14, 0.78);
  box-shadow: 0 30px 80px rgba(8, 5, 24, 0.6);
}

.vf-pricing-headline h1 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.vf-pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--vf-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 3, 12, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.vf-pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 0.95rem;
}

.vf-pricing-table thead th {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    color: var(--vf-text-muted);
    padding: 28px 24px 18px;
    text-align: left;
    font-weight: 600;
}
.vf-pricing-plan {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--vf-text);
}

.vf-plan-name {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vf-text-muted);
}

.vf-plan-price {
    font-size: 1.3rem;
    font-weight: 500;
}

.vf-plan-price span {
  font-size: 1rem;
  color: var(--vf-text-muted);
}

.vf-plan-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vf-plan-featured .vf-plan-tag {
  background: rgba(246, 76, 255, 0.25);
  color: #fff;
}

.vf-pricing-table tbody th,
.vf-pricing-table tbody td {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vf-pricing-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--vf-text);
  background: rgba(255, 255, 255, 0.01);
}

.vf-pricing-table tbody td {
    text-align: left;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 960px) {
  .vf-pricing-table {
    width: 100%;
  }

  .vf-pricing-table thead {
    display: none;
  }

  .vf-pricing-table tbody,
  .vf-pricing-table tr,
  .vf-pricing-table th,
  .vf-pricing-table td {
    display: block;
    width: 100%;
  }

  .vf-pricing-table tr {
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--vf-radius-xl);
    overflow: hidden;
  }

  .vf-pricing-table tbody th {
    background: rgba(255, 255, 255, 0.04);
    padding: 16px 20px;
    font-size: 1.2rem;
  }

  .vf-pricing-table tbody td {
    padding: 12px 20px 12px 120px;
    position: relative;
    text-align: left;
  }

  .vf-pricing-table tbody td::before {
    content: attr(data-label);
    position: absolute;
    left: 20px;
    top: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vf-text-muted);
  }

  .vf-pricing-plan {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: space-between;
  }

  .vf-plan-price {
    font-size: 1.4rem;
  }

  .vf-pricing-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
  }
}

.vf-btn-premium {
  position: relative;
  overflow: hidden;
}

.vf-btn-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% -50%, rgba(255, 255, 255, 0.35), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vf-btn-premium:hover::after,
.vf-btn-premium:focus-visible::after {
  opacity: 1;
}

.vf-premium-modal .vf-token-modal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  overflow-y: auto;
  max-height: calc(100vh - 120px);
  padding-right: 4px;
  scrollbar-width: thin;
}

.vf-premium-modal .vf-token-modal::-webkit-scrollbar {
  width: 6px;
}

.vf-premium-modal .vf-token-modal::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.vf-token-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.vf-token-head-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}

.vf-token-balance {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: var(--vf-radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
}

.vf-token-balance-value {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.vf-token-balance-value strong {
  font-size: 1.8rem;
}


.vf-token-balance p{
    font-size: 14px;
    padding: 0;
    margin: 0;
    line-height: 1;
    opacity: 0.6;
}

.vf-token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.vf-token-tier {
  padding: 16px;
  border-radius: var(--vf-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.vf-token-tier-body {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.vf-token-tier-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(249, 194, 60, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vf-token-tier-icon svg {
  width: 24px;
  height: 24px;
}

.vf-token-tier-featured {
  border-color: rgba(246, 76, 255, 0.4);
  background: rgba(246, 76, 255, 0.08);
}

.vf-token-badge {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #fdced8;
  color: #9d1447;
  border-radius: 999px;
  padding: 2px 8px;
  align-self: flex-start;
}

.vf-token-amount {
  font-size: 1.4rem;
  font-weight: 600;
}

.vf-token-rate {
  color: var(--vf-text-muted);
  font-size: 0.85rem;
}

.vf-token-modal-card {
  max-width: 560px;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
}

.vf-signin-card {
  max-width: 480px;
}

.vf-signin-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vf-signin-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.vf-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}

.vf-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--vf-secondary);
}

.vf-signin-link {
  color: var(--vf-secondary);
  text-decoration: none;
  font-weight: 600;
}

.vf-signin-link:hover,
.vf-signin-link:focus-visible {
  text-decoration: underline;
}

.vf-upload-panel {
  background: linear-gradient(135deg, rgba(26, 19, 41, 0.8), rgba(16, 18, 32, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vf-radius-2xl);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 35px 120px rgba(8, 3, 24, 0.55);
}

.vf-upload-head h2 {
  margin: 8px 0 12px;
}

.vf-upload-head p {
  color: var(--vf-text-muted);
}

html .vf-upload-head .vf-overline {
  color: var(--vf-secondary);
}

.vf-upload-drop {
  border: 1.5px dashed rgba(255, 255, 255, 0.25);
  border-radius: var(--vf-radius-2xl);
  padding: 32px 28px;
  text-align: center;
  cursor: pointer;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease, transform 0.2s ease, background 0.3s ease;
    border-radius: 30px;
}

.vf-upload-drop:focus-within,
.vf-upload-drop:hover {
  border-color: rgba(246, 76, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.vf-upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.vf-upload-drop-inner {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.vf-upload-icon svg {
  animation: vf-upload-arrow-bounce 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes vf-upload-arrow-bounce {
  0% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(-4px);
  }
}

.vf-upload-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vf-secondary);
  margin-bottom: 4px;
}

.vf-upload-callout {
  font-size: 1.35rem;
  font-weight: 600;
}

.vf-upload-callout span {
  color: var(--vf-secondary);
}

.vf-upload-meta {
  font-size: 0.95rem;
  color: var(--vf-text-muted);
}

.vf-upload-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vf-upload-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.vf-upload-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.vf-upload-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--vf-text-muted);
  margin-bottom: 6px;
}

.vf-upload-token-cost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vf-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vf-upload-token-cost svg {
  width: 16px;
  height: 16px;
}

.vf-upload-text,
.vf-upload-textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--vf-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--vf-text);
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.vf-upload-text::placeholder,
.vf-upload-textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.vf-upload-text:focus,
.vf-upload-textarea:focus {
  outline: none;
  border-color: rgba(246, 76, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
}

.vf-upload-hint {
  font-size: 0.85rem;
  color: var(--vf-text-muted);
  margin-top: -4px;
}

.vf-upload-value {
  font-size: 1.05rem;
  font-weight: 600;
}

.vf-upload-submit {
  align-self: flex-start;
}

@media (max-width: 640px) {
  .vf-upload-panel {
    padding: 20px;
  }

  .vf-upload-drop {
    padding: 28px 18px;
  }

  .vf-upload-callout {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .vf-token-grid {
    grid-template-columns: 1fr;
  }

  .vf-token-modal-card {
    margin: 32px 12px;
    max-height: calc(100vh - 24px);
  }
}

.vf-pricing-table tbody tr:hover td,
.vf-pricing-table tbody tr:hover th {
  background: rgba(255, 255, 255, 0.02);
}

.vf-pricing-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.vf-pricing-cta p {
  margin: 0;
  color: var(--vf-text-muted);
}

.vf-pricing-cta a {
  color: var(--vf-primary);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .vf-pricing-table {
    min-width: 560px;
  }

  .vf-pricing-table thead th:first-child,
  .vf-pricing-table tbody th {
    position: sticky;
    left: 0;
    background: rgba(9, 7, 14, 0.95);
    z-index: 1;
  }
}

.vf-hero-stats dt {
  color: var(--vf-text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.vf-hero-stats dd {
  margin: 8px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.vf-hero-reel {
    position: relative;
    min-height: 320px;
    top: -43px;
}

.vf-floating-card {
  position: absolute;
  background: var(--vf-panel-strong);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  padding: 16px;
  width: clamp(200px, 45%, 260px);
  box-shadow: var(--vf-shadow-soft);
  z-index: 77;
}

.vf-floating-card video {
  border-radius: var(--vf-radius-md);
  height: 300px;
}



@media (max-width: 1600px) {
    
    
    .vf-hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 2.3rem);
}
    
    
}

@media (max-width: 1500px) {
    

    
    .vf-hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 2.1rem);
}
    
    
}

.vf-floating-card-one {
    top: 14%;
    left: 1%;
    animation: vf-float 8s ease-in-out infinite;
}

.vf-floating-card-two {
  top: 18%;
  right: 0;
  animation: vf-float 7s ease-in-out infinite;
}

.vf-floating-card-three {
  bottom: 0;
  left: 30%;
  animation: vf-float 9s ease-in-out infinite;
}

@keyframes vf-float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0px);
  }
}

.vf-floating-caption {
  margin-top: 12px;
  color: var(--vf-text-muted);
  font-size: 0.9rem;
}

.vf-filters {
    margin-top: 75px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.vf-chip {
  border-radius: var(--vf-radius-pill);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.06);
  color: var(--vf-text);
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
}

.vf-chip-active {
  background: var(--vf-primary-soft);
  border-color: var(--vf-primary);
  color: #fff;
}

.vf-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: stretch;
}

.vf-grid-feed {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 24px;
}

.vf-grid-feed .vf-card {
  width: min(540px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 99;
}

.vf-grid-feed .vf-card-media {
  border-radius: var(--vf-radius-2xl);
  overflow: hidden;
  height: 70vh;
  max-height: 840px;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}



.vf-grid-feed .vf-card-body {
  padding: 35px;
}

.vf-grid-creator {
  margin-top: 0;
}

.vf-grid-feed.vf-grid-creator {
    margin-top: 100px;
    position: relative;
}

.vf-feed-ribbons {
    position: fixed;
    top: 45%;
    left: 10%;
    width: 120%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    pointer-events: none;
    z-index: -1;
}



.vf-feed-ribbonsw-box{
    position: absolute;
    left: -90%;
    top: 0;
    width: 2000px;
    height: 2000px;
}


.vf-feed-ribbonsw-box .vf-feed-ribbon-primary {
    transform: rotate(-54deg);
}


@media (max-width: 1100px) {

.vf-feed-ribbons{
    display: none;
}

}


.vf-feed-ribbon {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  border-radius: var(--vf-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(120deg, rgba(246, 76, 255, 0.18), rgba(89, 255, 205, 0.12));
  box-shadow: 0 12px 40px rgba(6, 3, 20, 0.45);
}


.vf-feed-ribbonsw-horizontale .vf-feed-ribbon-primary {
  transform: rotate(-7deg);
}


.vf-feed-ribbonsw-horizontale .vf-feed-ribbon-secondary{
    transform: rotate(7deg);
    background: rgba(246, 76, 255, 0.88)  !important;
}


.vf-feed-ribbonsw-horizontale{
    position: relative;
    left: -75px;
    width: 240%;
    margin-top: 100px;
    margin-bottom: 35px;
    right: -20px;
}


@media (max-width: 1560px) {


.vf-feed-ribbonsw-horizontale {
    position: relative;
    left: -75px;
    width: 240%;
    margin-top: 20px;
    margin-bottom: 0px;
}
    
    
    .vf-studio-card-rating {
    bottom: 18px;
    left: 60px;
}
    
}

.vf-studio-card,
.vf-feed-ribbons {
  will-change: transform;
}

.vf-feed-ribbon-primary {
  transform: rotate(-18deg);
}

.vf-feed-ribbon-secondary {
  transform: rotate(18deg);
  background: linear-gradient(120deg, rgba(81, 237, 255, 0.18), rgba(110, 87, 255, 0.12));
}

.vf-grid-feed {
  position: relative;
  padding-bottom: 220px;
}

.vf-feed-ribbon-track {
  display: flex;
  gap: 32px;
  animation: vf-feed-marquee 18s linear infinite;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.92);
}

.vf-feed-ribbon-secondary .vf-feed-ribbon-track {
  animation-duration: 24s;
  color: rgba(255, 255, 255, 0.92);
}

.vf-feed-ribbon-track span {
  color: inherit;
}

@keyframes vf-studio-media-pulse {
  0% {
    transform: scale(1) translateY(0);
    filter: saturate(1.05) brightness(1);
  }
  40% {
    transform: scale(1.035) translateY(-4px);
    filter: saturate(1.15) brightness(1.04);
  }
  70% {
    transform: scale(1.02) translateY(2px);
    filter: saturate(1.1) brightness(1.02);
  }
  100% {
    transform: scale(1) translateY(0);
    filter: saturate(1.05) brightness(1);
  }
}

@keyframes vf-studio-card-sway {
  0% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-6px) rotate(1.5deg);
  }
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
}

@keyframes vf-feed-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.vf-creator-hero {
  margin-top: 32px;
  margin-bottom: 48px;
  display: grid;
  gap: 50px;
  align-items: start;
  grid-template-columns: minmax(240px, 360px) minmax(320px, 1fr) minmax(240px, 320px);
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-xl);
  background: linear-gradient(130deg, rgba(246, 76, 255, 0.08), rgba(89, 255, 205, 0.08));
}

.vf-creator-hero-media {
  position: relative;
  max-width: 420px;
  display: block;
}

.vf-creator-hero-poster {
  border-radius: var(--vf-radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--vf-panel);
  box-shadow: var(--vf-shadow-soft);
}

.vf-creator-hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vf-creator-hero-badges {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vf-creator-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.7;
  justify-content: flex-start;
}

.vf-creator-hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0;
  letter-spacing: 1px;
}

.vf-creator-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin: 0;
}

.vf-creator-meta div {
  padding: 12px 14px;
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}

.vf-creator-meta dt {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vf-text-muted);
  margin: 0 0 4px;
}

.vf-creator-meta dd {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.vf-hero-insights {
display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
}

.vf-hero-insights > .vf-overline {
  margin-bottom: 4px;
}

.vf-hero-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}



.vf-hero-insights-grid div:hover::after,
.vf-hero-insights-grid div:focus-within::after {
  opacity: 1;
}

.vf-hero-insights-grid dt {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.vf-hero-insights-grid dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-text);
    padding-left: 46px;
    padding-bottom: 0;
    position: relative;
    top: -10px;
    font-weight: normal;
}

.vf-hero-insights-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  color: var(--vf-secondary);
    display: inline-flex;
    width: 34px;
    height: 34px;
    color: var(--vf-secondary);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    position: relative;
    top: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.vf-hero-insights-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.8;
}



.vf-page-creator .vf-hero-stats {
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-xl);
  padding: 30px;
  background: rgba(9, 7, 14, 0.65);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.vf-page-creator .vf-hero-stats-head h2 {
    margin: 4px 0 0;
    font-size: 1rem;
}

.vf-page-creator .vf-hero-stats .vf-creator-meta {
  grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
  gap: 8px;
}

@media (max-width: 1530px) {

    .vf-creator-meta div {
    height: 80px;
}

   html  .vf-page-creator .vf-hero-stats .vf-creator-meta {
        grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
    }
    
}

@media (min-width: 640px) {
  .vf-hero-insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vf-page-creator .vf-hero-stats .vf-creator-meta {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 1100px) {
  .vf-creator-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .vf-page-creator .vf-hero-stats {
    width: 100%;
  }
}

@media (max-width: 1530px) {
  .vf-page-creator .vf-creator-hero {
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  }

  .vf-page-creator .vf-hero-stats {
    grid-column: 1 / -1;
    display: flex;
  }
}

@media (max-width: 768px) {
  .vf-page-creator .vf-creator-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .vf-page-creator .vf-hero-stats {
    width: 100%;
  }
    
    html .vf-page-creator .vf-hero-stats .vf-creator-meta {
        display: flex;
        flex-direction: column;
    }
    
    
    .vf-creator-hero-copy {
    padding-top: 30px;
}
    
    .vf-creator-hero-media {
    margin: 0 auto;
}
    
}

.vf-creator-hero-actions {
display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: -25px;
    justify-content: center;
}

.vf-studio-modal[hidden] {
  display: none;
}

.vf-studio-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
}

.vf-studio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 4, 10, 0.75);
  backdrop-filter: blur(6px);
}

.vf-studio-modal-card {
  position: relative;
  max-width: 520px;
  margin: 80px auto;
  background: var(--vf-panel);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-xl);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.vf-studio-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: var(--vf-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
}

.vf-studio-modal-head h2 {
  margin: 8px 0 12px;
}

.vf-studio-modal-head p:last-of-type {
  color: var(--vf-text-muted);
  margin-bottom: 18px;
}

.vf-studio-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vf-studio-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.vf-studio-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vf-text-muted);
}

.vf-studio-field input,
.vf-studio-field textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  padding: 12px 14px;
  color: var(--vf-text);
  font: inherit;
}

.vf-studio-field input::placeholder,
.vf-studio-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.vf-studio-field textarea {
  resize: vertical;
}

.vf-studio-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .vf-studio-modal-card {
    margin: 40px 16px;
    padding: 24px;
  }

  .vf-studio-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.vf-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--vf-radius-pill);
  background: rgba(9, 7, 14, 0.85);
  color: var(--vf-text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.vf-content-stack {
  margin: 48px auto;
  background: rgba(9, 7, 14, 0.82);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--vf-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vf-content-stack h1,
.vf-content-stack h2,
.vf-content-stack h3,
.vf-content-stack h4,
.vf-content-stack h5,
.vf-content-stack h6 {
  margin: 0;
  font-family: var(--vf-font-display);
  line-height: 1.2;
}

.vf-content-stack h1 {
    font-size: clamp(2.2rem, 4vw, 2rem);
    padding: 10px 0;
}

.vf-content-stack h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  padding: 10px 0;
}

.vf-content-stack h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.vf-content-stack h4 {
  font-size: 1.25rem;
}

.vf-content-stack h5 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.vf-content-stack h6 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vf-text-muted);
}

.vf-content-stack p {
  margin: 0;
  color: var(--vf-text-muted);
  line-height: 1.7;
}

.vf-content-stack ul {
  margin: 0 0 12px 20px;
  padding: 0;
  color: var(--vf-text-muted);
  list-style: disc outside;
}

.vf-content-stack ol {
  margin: 0 0 12px 20px;
  padding: 0;
  color: var(--vf-text-muted);
  list-style: decimal outside;
}

.vf-content-stack code {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 0.9rem;
}

.vf-events-board {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.vf-events-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .vf-events-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }
}

.vf-events-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 340px;
}

.vf-events-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--vf-radius-lg);
  border: 1px solid var(--vf-border);
  background: rgba(255, 255, 255, 0.05);
}

.vf-events-search svg {
  width: 18px;
  height: 18px;
}

.vf-events-search input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--vf-text);
  font-size: 0.95rem;
}

.vf-events-search input::placeholder {
  color: var(--vf-text-muted);
}

.vf-events-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vf-events-type {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--vf-radius-pill);
  padding: 8px 16px;
  background: transparent;
  color: var(--vf-text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.vf-events-type-active,
.vf-events-type:hover {
  color: #050307;
  border-color: transparent;
  background: linear-gradient(120deg, var(--vf-primary), var(--vf-secondary));
}


.vf-events-schedule {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}


.vf-events-entry {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.vf-events-date {
  flex: 0 0 80px;
  text-align: center;
  border-radius: var(--vf-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 600;
  color: var(--vf-text);
}

.vf-events-date-day {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vf-text-muted);
}

.vf-events-date-num {
  font-size: 1.75rem;
  line-height: 1;
}

.vf-events-date-month {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.vf-events-entry-card {
    flex: 1;
    padding: 30px;
    border-radius: var(--vf-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--vf-panel);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.vf-events-entry-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--vf-text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
    position: absolute;
    right: 30px;
}

.vf-event-type,
.vf-event-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vf-event-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vf-primary);
}

.vf-event-icon svg {
  width: 100%;
  height: 100%;
}

.vf-events-entry-card h3 a {
  color: var(--vf-text);
  text-decoration: none;
}

.vf-events-entry-card h3 a:hover {
  text-decoration: underline;
}

html .vf-event-meta {
    font-weight: normal;
    color: var(--vf-secondary);
}

.vf-event-desc {
  margin-bottom: 4px;
}

.vf-events-entry-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vf-events-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.vf-event-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: var(--vf-radius-pill);
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--vf-text);
}

@media (max-width: 640px) {
  .vf-events-cta {
    max-width: none;
  }

  .vf-events-entry {
    flex-direction: column;
  }

  .vf-events-date {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 12px;
  }

  .vf-events-date-num {
    font-size: 1.25rem;
  }

  .vf-events-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

.vf-card {
  background: var(--vf-panel);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  overflow: hidden;
  box-shadow: var(--vf-shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
  width: 100%;
  margin: 0;
}

.vf-card:hover {
  transform: translateY(-8px);
  border-color: var(--vf-primary);
}

.vf-card-media {
  height: 390px;
  border-radius: var(--vf-radius-lg);
  display: inline-block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.vf-card-media video {
  border-radius: inherit;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.vf-grid-blured .vf-card-media {
  position: relative;
  isolation: isolate;
}

.vf-grid-blured .vf-card-media video {
  filter: blur(14px) saturate(0.3);
  transform: scale(1.08);
}

.vf-grid-blured .vf-card-media::after {
  content: '';
  position: absolute;
  background: rgba(7, 6, 14, 0.6);
  z-index: 2;
}

.vf-grid-blured .vf-card-media::before {
  content: '';
  position: absolute;
  width: 110px;
  height: 110px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  z-index: 3;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), rgba(7, 6, 14, 0.85)),
    url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M12 2a5 5 0 0 0-5 5v2H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-1V7a5 5 0 0 0-5-5m0 2a3 3 0 0 1 3 3v2H9V7a3 3 0 0 1 3-3m0 8a2 2 0 0 1 1 3.732V18h-2v-2.268A2 2 0 0 1 12 12Z'/%3E%3C/svg%3E")
      center/36px 36px no-repeat;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}


.vf-grid-blured .vf-actions-card{
    display: none;
}

.vf-grid-blured .vf-card {
  pointer-events: none;
}

.vf-actions-card {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  z-index: 2;
}

.vf-action-pill {
  --vf-action-size: 47px;
    flex-direction: row-reverse;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: var(--vf-action-size);
  height: var(--vf-action-size);
  padding: 9px 9px 10px 20px;
  border-radius: var(--vf-radius-pill);
  background: rgba(7, 6, 14, 0.65);
  color: var(--vf-text);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  gap: 12px;
  transition: width 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(6px);
}

.vf-action-pill button {
  border: none;
  background: transparent;
}

.vf-action-pill > .vf-action-icon {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vf-action-pill svg {
  width: 100%;
  height: 100%;
}

.vf-action-label {
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: none;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.vf-action-pill:hover,
.vf-action-pill:focus-visible {
  width: fit-content;
  background: var(--vf-secondary);
  color: #050307;
  border-color: transparent;
  outline: none;
}

.vf-action-pill:hover .vf-action-label,
.vf-action-pill:focus-visible .vf-action-label {
  opacity: 1;
  transform: translateX(0);
}

.vf-action-pill-primary {
  background: linear-gradient(135deg, var(--vf-primary), var(--vf-secondary));
  color: #050307;
  border-color: transparent;
}

.vf-action-pill-primary:hover,
.vf-action-pill-primary:focus-visible {
  background: linear-gradient(135deg, var(--vf-secondary), #ffd1f2);
}

.vf-action-pill-favorite {
  border-color: rgba(255, 255, 255, 0.4);
}

.vf-action-pill-favorite.vf-action-pill-active {
  background:var(--vf-secondary);
  color: #120306;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(255, 111, 60, 0.35);
}

.vf-card-body {
  padding: 18px 22px 26px;
}

.vf-card-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--vf-radius-pill);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vf-card-body h2 {
  margin: 16px 0 8px;
  font-size: 1.25rem;
    font-weight: 400;
}

.vf-card-body p {
    margin: 0;
    color: var(--vf-text-muted);
    font-weight: 500;
}

.vf-creators {
  margin-top: 56px;
  padding: clamp(32px, 4vw, 48px);
  border-radius: var(--vf-radius-xl);
  border: 1px solid var(--vf-border);
  background: linear-gradient(120deg, rgba(246, 76, 255, 0.1), rgba(89, 255, 205, 0.08));
}

.vf-creators-headline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.vf-creators h2 {
  font-size: clamp(1.8rem, 3vw, 2.1rem);
  margin: 12px 0 0;
}

.vf-creator-row {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.vf-creator-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--vf-radius-lg);
  background: rgba(5, 5, 9, 0.6);
  border: 1px solid var(--vf-border);
}

.vf-creator-card img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.vf-creator-card h3 {
  margin: 0 0 4px;
}

.vf-creator-card p {
  margin: 0;
  color: var(--vf-text-muted);
}

.vf-banner {
  margin-top: 56px;
  border-radius: var(--vf-radius-xl);
  border: 1px solid var(--vf-border);
  background: radial-gradient(circle at top, rgba(246, 76, 255, 0.2), rgba(7, 3, 10, 0.9));
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.vf-banner p {
  max-width: 520px;
  color: var(--vf-text-muted);
  font-size: 1.1rem;
}

.vf-banner .vf-overline{
    font-size: 14px;
}



.vf-banner h2{
    font-weight: 600;
    padding-bottom: 10px;
    padding-top: 10px;
    letter-spacing: 0.6px;
    font-size: 32px;
}

.vf-page-creators main {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
  padding: clamp(32px, 4vw, 48px);
}

.vf-creators-hero {
  display: flex;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
  align-items: flex-start;
}

.vf-creators-hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.vf-creators-hero-desc {
  margin: 0;
  color: var(--vf-text-muted);
  max-width: 520px;
}

.vf-creators-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vf-creators-feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-xl);
  padding: clamp(24px, 4vw, 48px);
  background: rgba(9, 7, 14, 0.65);
  box-shadow: var(--vf-shadow-soft);
}

.vf-creator-featured {
  margin-top: 32px;
  margin-bottom: 48px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-xl);
  background: linear-gradient(130deg, rgba(246, 76, 255, 0.08), rgba(89, 255, 205, 0.08));
  box-shadow: var(--vf-shadow-soft);
}


.vf-creator-featured .vf-creator-featured-inner{
    
     display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 32px);
  align-items: stretch; 
}

@media (max-width: 1570px) {
  .vf-creator-featured .vf-creator-featured-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vf-creator-featured .vf-card:nth-child(4) {
    display: none;
  }
}

.vf-creator-featured .vf-creator-hero-media {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vf-radius-xl);
  padding: 18px;
  background: rgba(8, 6, 14, 0.7);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.vf-creator-featured .vf-creator-hero-actions {
  margin-top: auto;
  justify-content: space-between;
}

.vf-creator-featured .vf-creator-hero-actions .vf-btn {
  flex: 1 1 auto;
  min-width: 0;
}

.vf-creator-featured .vf-creator-hero-actions .vf-btn + .vf-btn {
  margin-left: 0px;
}

.vf-section-heading {
    margin: 20px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.vf-section-heading .vf-overline {
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: var(--vf-secondary);
  text-transform: uppercase;
  margin: 0;
}

.vf-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 500;
    letter-spacing: 1px;
}

.vf-section-heading p:last-child {
  margin: 6px 0 0;
  color: var(--vf-text-muted);
  max-width: 640px;
}

@media (max-width: 1100px) {
  .vf-creator-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .vf-creator-featured {
    grid-template-columns: 1fr;
  }

  .vf-creator-featured .vf-creator-hero-actions {
    flex-direction: column;
  }

  .vf-creator-featured .vf-creator-hero-actions .vf-btn + .vf-btn {
    margin-left: 0;
    margin-top: 10px;
  }
}

.vf-creators-feature h2 {
  margin: 8px 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.vf-creators-feature-subtitle {
  margin: 0 0 18px;
  color: var(--vf-text-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vf-mini-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}

.vf-mini-metrics div {
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-lg);
  padding: 14px 16px;
  background: rgba(6, 5, 12, 0.6);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vf-mini-metrics dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vf-text-muted);
  margin: 0;
}

.vf-mini-metrics dd {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.vf-mini-metrics button {
  margin-top: 4px;
}

.vf-creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.vf-creators-grid .vf-creator-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vf-creators-grid .vf-creator-card .vf-card-media {
  height: 320px;
  border-radius: var(--vf-radius-lg);
  overflow: hidden;
}

.vf-creator-card-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vf-creators-grid .vf-creator-card:hover .vf-creator-card-portrait img {
  transform: scale(1.04);
  transition: transform 0.3s ease;
}

.vf-creators-grid .vf-creator-card:hover .vf-card-media::after {
  opacity: 0.35;
}

.vf-creators-grid .vf-creator-card .vf-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12, 10, 18, 0) 35%, rgba(12, 10, 18, 0.6));
  transition: opacity 0.3s ease;
  pointer-events: none;
  opacity: 0.15;
}

.vf-creators-grid .vf-creator-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.vf-creators-grid .vf-creator-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.vf-creator-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vf-creator-card-body > p {
  margin: 0;
  color: var(--vf-text-muted);
}

.vf-creator-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 6px 0 0;
}

.vf-creator-card-meta div {
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-md);
  padding: 10px 12px;
  background: rgba(4, 4, 8, 0.55);
}

.vf-creator-card-meta dt {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vf-text-muted);
}

.vf-creator-card-meta dd {
  margin: 4px 0 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.vf-creators-grid .vf-creator-card dl div {
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-md);
  padding: 10px 12px;
  background: rgba(4, 4, 8, 0.55);
}

.vf-creators-grid .vf-creator-card dt {
  margin: 0;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vf-text-muted);
}

.vf-creators-grid .vf-creator-card dd {
  margin: 4px 0 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.vf-creator-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .vf-creators-feature {
    grid-template-columns: 1fr;
  }

  .vf-mini-metrics {
    grid-template-columns: 1fr;
  }

  .vf-creators-grid .vf-creator-card dl {
    grid-template-columns: 1fr;
  }

  .vf-creator-card-meta {
    grid-template-columns: 1fr;
  }
}

.vf-footer {
  margin-top: 64px;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--vf-border);
  flex-wrap: wrap;
  gap: 16px;
}

.vf-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}

.vf-footer-links li {
    list-style: disc;
    margin-right: 10px;
}

.vf-footer-links a {
  text-decoration: none;
  color: var(--vf-text-muted);
  font-weight: 500;
}

.vf-footer-links a:hover,
.vf-footer-links a:focus-visible {
  color: var(--vf-primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.vf-creators-hero .vf-floating-card {
  min-width: 220px;
}

.vf-creator-chips {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vf-creator-chip {
  padding: 10px 20px;
  border-radius: var(--vf-radius-pill);
  border: 1px solid var(--vf-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--vf-text);
  cursor: pointer;
}

.vf-creator-chip-active {
  border-color: var(--vf-secondary);
  color: var(--vf-secondary);
}

.vf-creator-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.vf-creator-profile {
  border-radius: var(--vf-radius-xl);
  border: 1px solid var(--vf-border);
  background: rgba(12, 10, 18, 0.88);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--vf-shadow-soft);
}

.vf-creator-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.vf-creator-header img {
  width: 80px;
  height: 80px;
  border-radius: 24px;
}

.vf-creator-follow {
  white-space: nowrap;
}

.vf-creator-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
}

.vf-creator-meta strong {
  font-size: 1.4rem;
}

.vf-creator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vf-creator-tag {
  padding: 6px 12px;
  border-radius: var(--vf-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: var(--vf-text-muted);
}

.vf-creator-panels {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.vf-creator-panel {
  border-radius: var(--vf-radius-xl);
  border: 1px solid var(--vf-border);
  background: rgba(12, 10, 18, 0.82);
  padding: 24px;
}

.vf-creator-panel-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  color: var(--vf-text-muted);
  line-height: 1.6;
}

.vf-creator-banner {
  margin-top: 56px;
  border-radius: var(--vf-radius-xl);
  border: 1px solid var(--vf-border);
  background: radial-gradient(circle at right, rgba(89, 255, 205, 0.2), rgba(7, 3, 10, 0.9));
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.vf-creator-banner p {
  max-width: 520px;
  color: var(--vf-text-muted);
}

.vf-feed-shell {
  max-width: 1500px;
}

.vf-feed-layout {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.vf-feed-sidebar,
.vf-feed-queue {
  background: rgba(7, 6, 14, 0.72);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-xl);
  padding: 28px 24px;
  position: sticky;
  top: 96px;
}

.vf-feed-sidebar h2,
.vf-feed-queue h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.vf-feed-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--vf-radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid transparent;
  font-size: 0.85rem;
  margin: 6px 0;
}

.vf-feed-chip svg {
  width: 16px;
  height: 16px;
}

.vf-feed-chip-hot {
  border-color: var(--vf-secondary);
  color: var(--vf-secondary);
}

.vf-feed-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vf-feed-card {
  border-radius: var(--vf-radius-xl);
  border: 1px solid var(--vf-border);
  background: rgba(10, 8, 16, 0.92);
  overflow: hidden;
  box-shadow: var(--vf-shadow-soft);
}

.vf-feed-card video {
  max-height: 540px;
}

.vf-feed-card-body {
  padding: 20px 24px 24px;
  display: grid;
  gap: 12px;
}

.vf-feed-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--vf-text-muted);
  font-size: 0.95rem;
}

.vf-feed-meta img {
  width: 46px;
  height: 46px;
  border-radius: 16px;
}

.vf-feed-title {
  font-size: 1.5rem;
  margin: 0;
  font-family: var(--vf-font-display);
}

.vf-feed-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vf-feed-actions button {
  padding: 10px 20px;
  border-radius: var(--vf-radius-pill);
  border: 1px solid var(--vf-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--vf-text);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.vf-feed-actions button:hover {
  transform: translateY(-2px);
}

.vf-feed-progress {
  width: 100%;
  height: 6px;
  border-radius: var(--vf-radius-pill);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.vf-feed-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--vf-primary), var(--vf-secondary));
  width: 0%;
  transition: width 0.4s ease;
}

.vf-feed-card.playing .vf-feed-progress span {
  width: 82%;
}

.vf-feed-card.paused .vf-feed-progress span {
  width: 12%;
}

.vf-feed-queue-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.vf-feed-queue-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
}

.vf-feed-queue-item img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.vf-feed-load {
  margin: 16px auto 32px;
  align-self: center;
  padding: 14px 32px;
  border-radius: var(--vf-radius-pill);
  border: 1px solid var(--vf-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--vf-text);
  cursor: pointer;
  letter-spacing: 0.08em;
}

.vf-feed-card-inline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.vf-feed-card-inline-grid span {
  font-size: 0.85rem;
  color: var(--vf-text-muted);
}

.vf-scroll-feed {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  min-height: calc(100vh - 200px);
}

.vf-scroll-tabs {
  display: inline-flex;
  gap: 12px;
  padding: 0 12px 12px;
  position: sticky;
  top: 24px;
  z-index: 5;
}

.vf-scroll-tab {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--vf-radius-pill);
  padding: 10px 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  background: rgba(0, 0, 0, 0.4);
  color: var(--vf-text-muted);
  cursor: pointer;
}

.vf-scroll-tab-active {
  border-color: var(--vf-secondary);
  color: var(--vf-text);
  background: rgba(246, 76, 255, 0.08);
}

.vf-scroll-stream {
  height: calc(100vh - 160px);
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  padding: 6px 16px 32px 6px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vf-scroll-card {
  scroll-snap-align: center;
  border-radius: var(--vf-radius-xxl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top, rgba(10, 8, 16, 0.95), rgba(4, 3, 8, 0.9));
  padding: clamp(18px, 3vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(220px, 1fr) 88px;
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  min-height: clamp(70vh, 78vh, 82vh);
  position: relative;
  box-shadow: 0 30px 120px rgba(2, 0, 8, 0.6);
}

.vf-scroll-card.playing {
  border-color: var(--vf-secondary);
  box-shadow: 0 40px 120px rgba(246, 76, 255, 0.25);
}

.vf-scroll-video {
  width: 100%;
  justify-self: center;
  aspect-ratio: 9 / 16;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050307;
}

.vf-scroll-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vf-scroll-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vf-scroll-user {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
}

.vf-scroll-user img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.vf-scroll-user strong {
  font-size: 1.2rem;
  font-family: var(--vf-font-display);
}

.vf-scroll-user p {
  margin: 4px 0 0;
  color: var(--vf-text-muted);
  font-size: 0.95rem;
}

.vf-scroll-caption {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--vf-text);
}

.vf-scroll-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vf-scroll-tags span {
  padding: 6px 12px;
  border-radius: var(--vf-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: var(--vf-text-muted);
}

.vf-scroll-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.vf-scroll-sidebar button {
  width: 68px;
  height: 68px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: var(--vf-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
}

.vf-scroll-sidebar svg {
  width: 26px;
  height: 26px;
}

.vf-scroll-sidebar span {
  font-weight: 600;
}

.vf-scroll-trending {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vf-scroll-trending-card {
  border-radius: var(--vf-radius-xl);
  border: 1px solid var(--vf-border);
  background: rgba(7, 5, 12, 0.88);
  padding: 24px;
  box-shadow: var(--vf-shadow-soft);
}

.vf-scroll-trending-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vf-scroll-trending-card li {
  display: flex;
  justify-content: space-between;
  color: var(--vf-text-muted);
}

.vf-scroll-trending-card strong {
  color: var(--vf-text);
}

.vf-scroll-live-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.vf-scroll-live-row img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.vf-follow-btn {
  padding: 8px 18px;
}

.vf-scroll-stream::-webkit-scrollbar {
  width: 6px;
}

.vf-scroll-stream::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 99px;
}

@media (max-width: 1400px) {
  .vf-scroll-card {
    grid-template-columns: minmax(0, 480px) minmax(200px, 1fr) 80px;
  }
}

@media (max-width: 1180px) {
  .vf-scroll-feed {
    grid-template-columns: 1fr;
  }

  .vf-scroll-trending {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .vf-scroll-trending-card {
    flex: 1 1 280px;
  }
}

@media (max-width: 960px) {
  .vf-header-right {
    display: none;
  }

  .vf-burger {
    display: inline-flex;
  }

  .vf-scroll-card {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .vf-scroll-video {
    width: clamp(240px, 60vw, 360px);
    margin: 0 auto;
  }

  .vf-scroll-sidebar {
    flex-direction: row;
    justify-content: space-evenly;
  }
}

@media (max-width: 640px) {
  .vf-scroll-feed {
    margin-left: -8px;
    margin-right: -8px;
  }

  .vf-scroll-tabs {
    top: 0;
    padding: 12px;
    background: rgba(5, 3, 9, 0.85);
    backdrop-filter: blur(8px);
  }

  .vf-scroll-card {
    border-radius: var(--vf-radius-xl);
    padding: 18px;
    min-height: auto;
  }

  .vf-scroll-video {
    width: 100%;
    border-radius: 24px;
  }

  .vf-scroll-user {
    grid-template-columns: 48px 1fr;
  }

  .vf-scroll-sidebar button {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1200px) {
  .vf-feed-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .vf-feed-sidebar {
    display: none;
  }
}

@media (max-width: 900px) {
  .vf-header {
    flex-direction: row;
    align-items: flex-start;
  }

  .vf-cta-group {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .vf-floating-card {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin-bottom: 18px;
    animation: none;
  }

  .vf-floating-card video {
    height: 200px;
  }

  .vf-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .vf-left-menu-link span {
    display: none;
  }

  .vf-hero-stats {
    flex-direction: column;
  }

  .vf-banner {
    flex-direction: column;
    text-align: left;
  }
}
