/*
Theme Name: Vortex Network Theme
Theme URI: https://vortex-international.com
Author: Vortex International
Author URI: https://vortex-international.com
Description: A futuristic, cinematic, cyberpunk-luxury WordPress theme for Vortex Network — a premium multimedia collective combining modeling, entertainment, music, gaming, livestreaming, digital marketing, publishing, and fashion media.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
License URI: https://vortex-international.com
Text Domain: vortex-network
Tags: dark, futuristic, cyberpunk, entertainment, multimedia, custom-post-types
*/

/* ============================================================
   DESIGN SYSTEM — CSS VARIABLES
   ============================================================ */

:root {
  --vx-black:        #030308;
  --vx-dark:         #0a0a14;
  --vx-charcoal:     #111120;
  --vx-surface:      #16162a;
  --vx-card:         #1a1a30;
  --vx-magenta:      #e600a0;
  --vx-magenta-dim:  #a0006e;
  --vx-violet:       #7c3aed;
  --vx-blue:         #00b4ff;
  --vx-cyan:         #00f5ff;
  --vx-silver:       #c0c0d8;
  --vx-white:        #f0f0ff;
  --vx-grad-hero:    linear-gradient(135deg, #030308 0%, #0a0014 50%, #030308 100%);
  --vx-grad-magenta: linear-gradient(135deg, #e600a0, #7c3aed);
  --vx-grad-blue:    linear-gradient(135deg, #00b4ff, #00f5ff);
  --vx-grad-card:    linear-gradient(145deg, rgba(26,26,48,0.9), rgba(10,0,20,0.95));
  --vx-font-display: 'Playfair Display', Georgia, serif;
  --vx-font-body:    'Inter', 'Helvetica Neue', sans-serif;
  --vx-font-mono:    'JetBrains Mono', 'Courier New', monospace;
  --vx-space-xs:  0.5rem;
  --vx-space-sm:  1rem;
  --vx-space-md:  2rem;
  --vx-space-lg:  4rem;
  --vx-space-xl:  8rem;
  --vx-glow-magenta: 0 0 20px rgba(230,0,160,0.5), 0 0 60px rgba(230,0,160,0.2);
  --vx-glow-blue:    0 0 20px rgba(0,180,255,0.5), 0 0 60px rgba(0,180,255,0.2);
  --vx-border-glass: 1px solid rgba(255,255,255,0.08);
  --vx-radius:       12px;
  --vx-radius-lg:    24px;
  --vx-transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--vx-black);
  color: var(--vx-white);
  font-family: var(--vx-font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.admin-bar { padding-top: 32px; }

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--vx-cyan);
  text-decoration: none;
  transition: var(--vx-transition);
}

a:hover { color: var(--vx-magenta); }

/* Global list reset — no bullets anywhere by default */
ul, ol {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  list-style-type: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vx-font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--vx-white);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--vx-silver); }
p:last-child { margin-bottom: 0; }

.vx-eyebrow {
  font-family: var(--vx-font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--vx-magenta);
  margin-bottom: 0.75rem;
  display: block;
}

.vx-gradient-text {
  background: var(--vx-grad-magenta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vx-gradient-text-blue {
  background: var(--vx-grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.vx-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--vx-space-md);
}

.vx-container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--vx-space-md);
}

.vx-section    { padding: var(--vx-space-xl) 0; position: relative; }
.vx-section-sm { padding: var(--vx-space-lg) 0; }

.vx-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--vx-space-md); }
.vx-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--vx-space-md); }
.vx-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--vx-space-md); }

.vx-flex         { display: flex; }
.vx-flex-center  { display: flex; align-items: center; justify-content: center; }
.vx-flex-between { display: flex; align-items: center; justify-content: space-between; }
.vx-text-center  { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */

.vx-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-family: var(--vx-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--vx-transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.vx-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(255,255,255,0.1);
}

.vx-btn:hover::before { opacity: 1; }

.vx-btn-primary {
  background: var(--vx-grad-magenta);
  color: #fff;
  box-shadow: var(--vx-glow-magenta);
}

.vx-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(230,0,160,0.7), 0 0 80px rgba(230,0,160,0.3);
}

.vx-btn-outline {
  background: transparent;
  color: var(--vx-white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.vx-btn-outline:hover {
  color: var(--vx-white);
  border-color: var(--vx-magenta);
  box-shadow: var(--vx-glow-magenta);
  transform: translateY(-2px);
}

.vx-btn-blue {
  background: var(--vx-grad-blue);
  color: var(--vx-black);
  font-weight: 700;
  box-shadow: var(--vx-glow-blue);
}

.vx-btn-blue:hover {
  color: var(--vx-black);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,180,255,0.8);
}

.vx-btn-sm { padding: 0.6rem 1.4rem; font-size: 0.75rem; }
.vx-btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }

/* Floating CTA */
.vx-float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  background: var(--vx-grad-magenta);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--vx-glow-magenta);
  animation: floatPulse 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vx-float-cta:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(230,0,160,0.9);
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); box-shadow: var(--vx-glow-magenta); }
  50% { transform: translateY(-5px); box-shadow: 0 0 40px rgba(230,0,160,0.8), 0 0 80px rgba(230,0,160,0.3); }
}

/* ============================================================
   GLASSMORPHISM CARD
   ============================================================ */

.vx-card {
  background: var(--vx-grad-card);
  border: var(--vx-border-glass);
  border-radius: var(--vx-radius-lg);
  overflow: hidden;
  transition: var(--vx-transition);
  position: relative;
}

.vx-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.vx-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230,0,160,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(230,0,160,0.15);
}

.vx-card-body { padding: var(--vx-space-md); }

.vx-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.vx-glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--vx-border-glass);
  border-radius: var(--vx-radius);
}

/* ============================================================
   HEADER
   ============================================================ */

#vx-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: var(--vx-transition);
  padding: 1.25rem 0;
}

#vx-header.scrolled {
  background: rgba(3,3,8,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.vx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.vx-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.vx-logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(230,0,160,0.4));
  transition: var(--vx-transition);
}

.vx-logo:hover img {
  filter: drop-shadow(0 0 16px rgba(230,0,160,0.8));
}

/* ============================================================
   NAVIGATION — BULLET-FREE
   WordPress outputs: nav > ul > li > a
   Every rule here explicitly kills list styling.
   ============================================================ */

.vx-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* The <ul> WordPress generates */
.vx-nav > ul,
.vx-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}

/* Every <li> */
.vx-nav ul li,
.vx-nav li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Kill the ::marker pseudo-element browsers use for bullets */
.vx-nav ul li::marker,
.vx-nav li::marker {
  content: '' !important;
  display: none !important;
}

/* Nav links */
.vx-nav a {
  color: rgba(240,240,255,0.75);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: var(--vx-transition);
  white-space: nowrap;
  display: block;
}

.vx-nav a:hover,
.vx-nav .current-menu-item > a,
.vx-nav .current_page_item > a {
  color: var(--vx-white);
  background: rgba(230,0,160,0.12);
}

/* Dropdown submenu */
.vx-nav .menu-item-has-children { position: relative; }

.vx-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: rgba(10,10,20,0.97);
  backdrop-filter: blur(20px);
  border: var(--vx-border-glass);
  border-radius: var(--vx-radius);
  padding: 0.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  z-index: 1000;
  list-style: none !important;
  margin: 0;
  flex-direction: column;
  gap: 0;
}

.vx-nav .menu-item-has-children:hover > .sub-menu { display: flex; }

.vx-nav .sub-menu li { list-style: none !important; width: 100%; }

.vx-nav .sub-menu a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.78rem;
  white-space: normal;
}

/* Header Actions */
.vx-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Hamburger */
.vx-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: none;
}

.vx-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vx-white);
  border-radius: 2px;
  transition: var(--vx-transition);
}

.vx-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vx-hamburger.active span:nth-child(2) { opacity: 0; }
.vx-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU — BULLET-FREE
   ============================================================ */

.vx-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3,3,8,0.98);
  backdrop-filter: blur(30px);
  z-index: 9998;
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
  flex-direction: column;
}

.vx-mobile-menu.open { display: flex; }

/* Kill bullets in mobile menu */
.vx-mobile-menu ul,
.vx-mobile-menu ol {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.vx-mobile-menu li,
.vx-mobile-menu ul li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}

.vx-mobile-menu li::marker,
.vx-mobile-menu ul li::marker {
  content: '' !important;
  display: none !important;
}

.vx-mobile-menu a {
  color: var(--vx-white);
  font-size: 1.5rem;
  font-family: var(--vx-font-display);
  font-weight: 700;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}

.vx-mobile-menu a:hover { color: var(--vx-magenta); }

.vx-mobile-menu .sub-menu {
  padding-left: 1rem;
}

.vx-mobile-menu .sub-menu a {
  font-size: 1.1rem;
  opacity: 0.75;
}

/* ============================================================
   HERO
   ============================================================ */

.vx-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--vx-grad-hero);
}

.vx-hero-bg { position: absolute; inset: 0; z-index: 0; }

.vx-hero-bg img,
.vx-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.vx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3,3,8,0.3) 0%, rgba(3,3,8,0.1) 40%, rgba(3,3,8,0.8) 85%, var(--vx-black) 100%);
  z-index: 1;
}

.vx-hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,0,160,0.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 1;
  animation: glowDrift1 8s ease-in-out infinite;
}

.vx-hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,255,0.15) 0%, transparent 70%);
  bottom: 50px;
  left: -50px;
  z-index: 1;
  animation: glowDrift2 10s ease-in-out infinite;
}

@keyframes glowDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.1); }
  66% { transform: translate(20px, -30px) scale(0.95); }
}

@keyframes glowDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -20px) scale(1.15); }
}

.vx-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.vx-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--vx-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vx-magenta);
  margin-bottom: 1.5rem;
}

.vx-hero-eyebrow::before,
.vx-hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--vx-magenta);
  opacity: 0.6;
}

.vx-hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 0 40px rgba(230,0,160,0.3);
}

.vx-hero-sub {
  font-size: 1.15rem;
  color: rgba(192,192,216,0.85);
  max-width: 550px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.vx-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.vx-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.vx-scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(230,0,160,0.6), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.vx-section-header { margin-bottom: 3.5rem; }

.vx-section-header.centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   ABOUT
   ============================================================ */

.vx-about {
  background: var(--vx-dark);
  position: relative;
  overflow: hidden;
}

.vx-about::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  transform: translateY(-50%);
}

.vx-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.vx-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.vx-stat-card {
  padding: 1.5rem;
  border-radius: var(--vx-radius);
  border: var(--vx-border-glass);
  background: rgba(255,255,255,0.03);
}

.vx-stat-number {
  font-family: var(--vx-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--vx-grad-magenta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.vx-stat-label {
  font-size: 0.75rem;
  color: var(--vx-silver);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vx-about-img-wrap {
  position: relative;
  border-radius: var(--vx-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.vx-about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.vx-about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,0,160,0.15) 0%, transparent 60%);
}

/* ============================================================
   DIVISIONS GRID
   ============================================================ */

.vx-divisions { background: var(--vx-black); }

.vx-divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vx-division-card {
  position: relative;
  background: var(--vx-grad-card);
  border: var(--vx-border-glass);
  border-radius: var(--vx-radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: var(--vx-transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
}

.vx-division-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vx-division-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230,0,160,0.5);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(230,0,160,0.15);
}

.vx-division-card:hover::before { opacity: 1; }

.vx-division-card-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.vx-division-card:hover .vx-division-card-bg { opacity: 0.22; }

.vx-division-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--vx-grad-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: var(--vx-glow-magenta);
}

.vx-division-tag {
  font-family: var(--vx-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vx-magenta);
  position: relative;
  z-index: 1;
}

.vx-division-name {
  font-family: var(--vx-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vx-white);
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.vx-division-desc {
  font-size: 0.875rem;
  color: var(--vx-silver);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin: 0;
}

.vx-division-arrow {
  margin-top: auto;
  color: var(--vx-magenta);
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.vx-division-card:hover .vx-division-arrow { transform: translateX(6px); }

.vx-division-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vx-grad-magenta);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.vx-division-card:hover::after { transform: scaleX(1); }

/* ============================================================
   FEATURED CONTENT
   ============================================================ */

.vx-featured {
  background: var(--vx-charcoal);
  position: relative;
  overflow: hidden;
}

.vx-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(230,0,160,0.4), transparent);
}

.vx-featured-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.vx-tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--vx-silver);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--vx-transition);
}

.vx-tab-btn:hover,
.vx-tab-btn.active {
  background: var(--vx-grad-magenta);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--vx-glow-magenta);
}

.vx-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Post Cards */
.vx-post-card {
  background: var(--vx-grad-card);
  border: var(--vx-border-glass);
  border-radius: var(--vx-radius-lg);
  overflow: hidden;
  transition: var(--vx-transition);
}

.vx-post-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,180,255,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(0,180,255,0.1);
}

.vx-post-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.vx-post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vx-post-card:hover .vx-post-card-img img { transform: scale(1.05); }

.vx-post-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--vx-grad-magenta);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.vx-post-card-body { padding: 1.5rem; }

.vx-post-card-date {
  font-size: 0.7rem;
  color: rgba(192,192,216,0.5);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.vx-post-card-title {
  font-family: var(--vx-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vx-white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.vx-post-card-excerpt {
  font-size: 0.85rem;
  color: var(--vx-silver);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.vx-post-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vx-cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--vx-transition);
}

.vx-post-card-link:hover { color: var(--vx-magenta); gap: 0.7rem; }

/* ============================================================
   JOIN CTA
   ============================================================ */

.vx-join {
  position: relative;
  overflow: hidden;
  background: var(--vx-black);
  text-align: center;
}

.vx-join-bg {
  position: absolute;
  inset: 0;
  background: var(--vx-grad-hero);
}

.vx-join-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(230,0,160,0.2) 0%, rgba(124,58,237,0.1) 50%, transparent 70%);
}

.vx-join-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.vx-join h2 { margin-bottom: 1.5rem; }

.vx-join p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: rgba(192,192,216,0.8);
}

.vx-join-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.vx-contact-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--vx-dark);
}

.vx-contact-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.vx-contact-type {
  padding: 2rem;
  background: var(--vx-grad-card);
  border: var(--vx-border-glass);
  border-radius: var(--vx-radius-lg);
  transition: var(--vx-transition);
}

.vx-contact-type:hover {
  border-color: rgba(230,0,160,0.3);
  transform: translateY(-4px);
}

.vx-contact-type-icon { font-size: 2rem; margin-bottom: 1rem; }

.vx-contact-form-wrap { max-width: 700px; margin: 0 auto; }

.vx-form-group { margin-bottom: 1.5rem; }

.vx-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vx-silver);
  margin-bottom: 0.5rem;
}

.vx-form-group input,
.vx-form-group select,
.vx-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--vx-radius);
  padding: 0.9rem 1.2rem;
  color: var(--vx-white);
  font-family: var(--vx-font-body);
  font-size: 0.95rem;
  transition: var(--vx-transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.vx-form-group input:focus,
.vx-form-group select:focus,
.vx-form-group textarea:focus {
  border-color: var(--vx-magenta);
  box-shadow: 0 0 0 3px rgba(230,0,160,0.15);
  background: rgba(230,0,160,0.05);
}

.vx-form-group textarea { min-height: 140px; resize: vertical; }

.vx-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */

#vx-footer {
  background: var(--vx-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 5rem;
}

.vx-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.vx-footer-brand img {
  height: 36px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px rgba(230,0,160,0.3));
}

.vx-footer-desc {
  font-size: 0.875rem;
  color: var(--vx-silver);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vx-footer-socials { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.vx-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: var(--vx-border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--vx-silver);
  transition: var(--vx-transition);
  text-decoration: none;
}

.vx-social-icon:hover {
  background: var(--vx-grad-magenta);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--vx-glow-magenta);
  transform: translateY(-3px);
}

.vx-footer-col h5 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vx-magenta);
  margin-bottom: 1.25rem;
  font-family: var(--vx-font-mono);
}

/* Footer nav — no bullets */
.vx-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.vx-footer-col li {
  list-style: none !important;
}

.vx-footer-col li::marker { content: '' !important; display: none !important; }

.vx-footer-col ul li a {
  font-size: 0.875rem;
  color: var(--vx-silver);
  transition: var(--vx-transition);
}

.vx-footer-col ul li a:hover { color: var(--vx-white); padding-left: 4px; }

/* Newsletter */
.vx-newsletter-form { display: flex; gap: 0.5rem; margin-top: 1rem; }

.vx-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: var(--vx-white);
  font-size: 0.85rem;
  outline: none;
  transition: var(--vx-transition);
}

.vx-newsletter-form input:focus { border-color: var(--vx-magenta); }
.vx-newsletter-form input::placeholder { color: rgba(192,192,216,0.4); }

.vx-footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.vx-footer-bottom p {
  font-size: 0.78rem;
  color: rgba(192,192,216,0.4);
  margin: 0;
}

.vx-footer-bottom ul {
  display: flex;
  gap: 1.5rem;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.vx-footer-bottom li { list-style: none !important; }

.vx-footer-bottom li::marker { content: '' !important; display: none !important; }

.vx-footer-bottom ul li a {
  font-size: 0.78rem;
  color: rgba(192,192,216,0.4);
}

.vx-footer-bottom ul li a:hover { color: var(--vx-white); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */

.vx-page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background: var(--vx-dark);
}

.vx-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3,3,8,0.4) 0%, rgba(3,3,8,0.85) 100%);
}

.vx-page-hero-content { position: relative; z-index: 1; }

.vx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(192,192,216,0.5);
  margin-bottom: 1rem;
}

.vx-breadcrumb a { color: rgba(192,192,216,0.5); }
.vx-breadcrumb a:hover { color: var(--vx-magenta); }
.vx-breadcrumb span { color: var(--vx-magenta); }

/* ============================================================
   SINGLE POST
   ============================================================ */

.vx-post-content {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--vx-space-lg) 0;
}

.vx-post-content h2,
.vx-post-content h3 { margin: 2rem 0 1rem; }

.vx-post-content p { color: var(--vx-silver); line-height: 1.9; }

.vx-post-content img {
  border-radius: var(--vx-radius);
  margin: 2rem 0;
  width: 100%;
}

.vx-post-content blockquote {
  border-left: 3px solid var(--vx-magenta);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(230,0,160,0.05);
  border-radius: 0 var(--vx-radius) var(--vx-radius) 0;
  font-style: italic;
  color: var(--vx-white);
}

/* Restore bullets ONLY inside post body content */
.vx-post-content ul { list-style: disc; padding-left: 1.5rem; }
.vx-post-content ol { list-style: decimal; padding-left: 1.5rem; }
.vx-post-content li { list-style: inherit; margin-bottom: 0.4rem; color: var(--vx-silver); }

/* ============================================================
   ARCHIVE
   ============================================================ */

.vx-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

/* ============================================================
   404
   ============================================================ */

.vx-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--vx-black);
}

.vx-404-code {
  font-family: var(--vx-font-mono);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  background: var(--vx-grad-magenta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */

#vx-loader {
  position: fixed;
  inset: 0;
  background: var(--vx-black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#vx-loader.hidden { opacity: 0; visibility: hidden; }

.vx-loader-logo {
  height: 60px;
  animation: loaderPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(230,0,160,0.6));
}

.vx-loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.vx-loader-progress {
  height: 100%;
  background: var(--vx-grad-magenta);
  border-radius: 2px;
  animation: loaderProgress 1.5s ease forwards;
}

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

@keyframes loaderProgress {
  from { width: 0%; }
  to { width: 100%; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.vx-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vx-fade-up.visible { opacity: 1; transform: translateY(0); }

.vx-fade-up:nth-child(2) { transition-delay: 0.1s; }
.vx-fade-up:nth-child(3) { transition-delay: 0.2s; }
.vx-fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   WORDPRESS / GUTENBERG
   ============================================================ */

.alignwide { margin-left: -2rem; margin-right: -2rem; }
.alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); width: 100vw; }

.wp-block-image img { border-radius: var(--vx-radius); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--vx-silver); text-align: center; margin-top: 0.5rem; }

.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.skip-link {
  position: absolute;
  top: -9999px;
  left: 1rem;
  z-index: 99999;
  background: var(--vx-magenta);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.skip-link:focus { top: 1rem; }

/* Pagination */
.vx-pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.vx-pagination a,
.vx-pagination span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: var(--vx-silver);
  transition: var(--vx-transition);
}

.vx-pagination a:hover,
.vx-pagination .current {
  background: var(--vx-grad-magenta);
  border-color: transparent;
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .vx-divisions-grid { grid-template-columns: repeat(2, 1fr); }
  .vx-footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .vx-about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .vx-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .vx-contact-types { grid-template-columns: 1fr 1fr; }
  .vx-archive-grid  { grid-template-columns: repeat(2, 1fr); }
  .vx-nav           { display: none; }
  .vx-hamburger     { display: flex; }
  .vx-header-actions .vx-btn { display: none; }
}

@media (max-width: 640px) {
  :root {
    --vx-space-lg: 3rem;
    --vx-space-xl: 5rem;
  }
  .vx-divisions-grid                  { grid-template-columns: 1fr; }
  .vx-featured-grid                   { grid-template-columns: 1fr; }
  .vx-grid-2, .vx-grid-3, .vx-grid-4 { grid-template-columns: 1fr; }
  .vx-about-stats                     { grid-template-columns: 1fr 1fr; }
  .vx-contact-types                   { grid-template-columns: 1fr; }
  .vx-archive-grid                    { grid-template-columns: 1fr; }
  .vx-footer-grid                     { grid-template-columns: 1fr; }
  .vx-form-grid                       { grid-template-columns: 1fr; }
  .vx-float-cta { bottom: 1rem; right: 1rem; padding: 0.75rem 1.25rem; font-size: 0.75rem; }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  #vx-header, #vx-footer, .vx-float-cta, #vx-loader { display: none !important; }
  body { background: white; color: black; }
}
