/* ============================================================
   WORVILA — MAIN STYLESHEET
   worvila-style.css
   ============================================================ */

:root {
  --wv-bg-primary:       #0d0d12;
  --wv-bg-secondary:     #12121a;
  --wv-bg-card:          #16161f;
  --wv-bg-card-hover:    #1c1c28;
  --wv-accent-blue:      #3b82f6;
  --wv-accent-blue-glow: rgba(59,130,246,0.35);
  --wv-accent-purple:    #8b5cf6;
  --wv-accent-purple-glow: rgba(139,92,246,0.25);
  --wv-accent-neon:      #06b6d4;
  --wv-text-primary:     #f0f0f5;
  --wv-text-secondary:   #9999b3;
  --wv-text-muted:       #55556a;
  --wv-border:           rgba(255,255,255,0.07);
  --wv-border-accent:    rgba(59,130,246,0.3);
  --wv-font-head:        'Orbitron', sans-serif;
  --wv-font-body:        'Inter', sans-serif;
  --wv-radius-sm:        6px;
  --wv-radius-md:        12px;
  --wv-radius-lg:        20px;
  --wv-shadow-card:      0 4px 24px rgba(0,0,0,0.5);
  --wv-shadow-glow:      0 0 30px var(--wv-accent-blue-glow);
  --wv-transition:       0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  background: var(--wv-bg-primary);
  color: var(--wv-text-primary);
  font-family: var(--wv-font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--wv-bg-primary); }
::-webkit-scrollbar-thumb { background: var(--wv-accent-blue); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--wv-font-head);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { color: var(--wv-text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--wv-accent-blue); text-decoration: none; transition: color var(--wv-transition); }
a:hover { color: var(--wv-accent-neon); }

strong { color: var(--wv-text-primary); font-weight: 600; }

/* ── LAYOUT HELPERS ── */
.wv-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wv-section    { padding: 100px 0; }
.wv-section-sm { padding: 60px 0; }

.wv-section-label {
  display: inline-block;
  font-family: var(--wv-font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wv-accent-blue);
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.wv-section-title { margin-bottom: 16px; }
.wv-section-subtitle {
  font-size: 1.1rem;
  color: var(--wv-text-secondary);
  max-width: 600px;
  margin-bottom: 20px!important;
}

/* ── BUTTONS ── */
.wv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--wv-font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--wv-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--wv-transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.wv-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--wv-transition);
}
.wv-btn:hover::before { opacity: 1; }

.wv-btn-primary {
  background: linear-gradient(135deg, var(--wv-accent-blue), var(--wv-accent-purple));
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.4);
}
.wv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.6);
  color: #fff;
}

.wv-btn-outline {
  background: transparent;
  color: var(--wv-text-primary);
  border: 1px solid var(--wv-border);
}
.wv-btn-outline:hover {
  border-color: var(--wv-accent-blue);
  color: var(--wv-accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(59,130,246,0.2);
}

/* ── NAVBAR ── */
.wv-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--wv-transition);
}
.wv-navbar.wv-navbar-scrolled {
  background: rgba(13,13,18,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--wv-border);
  padding: 14px 0;
}

.wv-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wv-logo {
  font-family: var(--wv-font-head);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  background: linear-gradient(90deg, var(--wv-accent-blue), var(--wv-accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wv-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.wv-nav-links a {
  font-family: var(--wv-font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wv-text-secondary);
  transition: color var(--wv-transition);
  position: relative;
}
.wv-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--wv-accent-blue);
  transition: width var(--wv-transition);
  border-radius: 1px;
}
.wv-nav-links a:hover,
.wv-nav-links a.wv-nav-active { color: var(--wv-text-primary); }
.wv-nav-links a:hover::after,
.wv-nav-links a.wv-nav-active::after { width: 100%; }

.wv-nav-cta { margin-left: 10px; }

.wv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.wv-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--wv-text-primary);
  border-radius: 1px;
  transition: all var(--wv-transition);
}

.wv-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,13,18,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity var(--wv-transition);
}
.wv-mobile-menu.wv-open { display: flex; opacity: 1; }

.wv-mobile-menu a {
  font-family: var(--wv-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wv-text-primary);
  text-decoration: none;
}
.wv-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--wv-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── HERO ── */
.wv-hero-immersive {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.wv-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.wv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,13,18,0.85) 0%,
    rgba(59,130,246,0.08) 50%,
    rgba(139,92,246,0.12) 100%);
}

.wv-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

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

.wv-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--wv-font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wv-accent-neon);
  margin-bottom: 28px;
}
.wv-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--wv-accent-neon);
}

.wv-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 28px;
}
.wv-hero-title .wv-accent-text {
  background: linear-gradient(90deg, var(--wv-accent-blue), var(--wv-accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wv-hero-desc {
  font-size: 1.15rem;
  color: var(--wv-text-secondary);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.wv-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.wv-hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--wv-text-muted);
  font-family: var(--wv-font-head);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.wv-hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--wv-accent-blue), transparent);
  animation: wv-scroll-pulse 2s ease-in-out infinite;
}

/* ── CARDS ── */
.wv-card {
  background: var(--wv-bg-card);
  border: 1px solid var(--wv-border);
  border-radius: var(--wv-radius-lg);
  padding: 32px;
  transition: all var(--wv-transition);
  position: relative;
  overflow: hidden;
}
.wv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wv-accent-blue), transparent);
  opacity: 0;
  transition: opacity var(--wv-transition);
}
.wv-card:hover {
  background: var(--wv-bg-card-hover);
  border-color: var(--wv-border-accent);
  transform: translateY(-4px);
  box-shadow: var(--wv-shadow-glow);
}
.wv-card:hover::before { opacity: 1; }

.wv-card-icon {
  width: 52px; height: 52px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--wv-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--wv-accent-blue);
  margin-bottom: 24px;
  transition: all var(--wv-transition);
}
.wv-card:hover .wv-card-icon {
  background: rgba(59,130,246,0.2);
  box-shadow: 0 0 20px rgba(59,130,246,0.3);
}

/* ── GAME CARDS ── */
.wv-game-card {
  position: relative;
  border-radius: var(--wv-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.wv-game-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.wv-game-card:hover img { transform: scale(1.08); }
.wv-game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,18,0.95) 0%, rgba(13,13,18,0.2) 60%, transparent 100%);
}
.wv-game-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  transform: translateY(8px);
  transition: transform var(--wv-transition);
}
.wv-game-card:hover .wv-game-card-content { transform: translateY(0); }
.wv-game-card-genre {
  font-family: var(--wv-font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wv-accent-blue);
  margin-bottom: 8px;
}
.wv-game-card-title {
  font-family: var(--wv-font-head);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}
.wv-game-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 0;
  box-shadow: inset 0 0 40px rgba(59,130,246,0);
  transition: box-shadow 0.5s ease;
  pointer-events: none;
}
.wv-game-card:hover .wv-game-card-glow {
  box-shadow: inset 0 0 40px rgba(59,130,246,0.15);
}

/* ── GENRE FILTER ── */
.wv-genre-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.wv-genre-btn {
  font-family: var(--wv-font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--wv-border);
  background: transparent;
  color: var(--wv-text-secondary);
  cursor: pointer;
  transition: all var(--wv-transition);
}
.wv-genre-btn:hover,
.wv-genre-btn.wv-active {
  background: var(--wv-accent-blue);
  border-color: var(--wv-accent-blue);
  color: #fff;
  box-shadow: 0 0 20px rgba(59,130,246,0.4);
}

/* ── ARTICLE CARD ── */
.wv-article-card {
  background: var(--wv-bg-card);
  border: 1px solid var(--wv-border);
  border-radius: var(--wv-radius-lg);
  overflow: hidden;
  transition: all var(--wv-transition);
  display: flex;
  flex-direction: column;
}
.wv-article-card:hover {
  border-color: var(--wv-border-accent);
  transform: translateY(-6px);
  box-shadow: var(--wv-shadow-glow);
}
.wv-article-card-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.wv-article-card:hover .wv-article-card-img { transform: scale(1.04); }
.wv-article-card-img-wrap { overflow: hidden; }
.wv-article-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.wv-article-tag {
  display: inline-block;
  font-family: var(--wv-font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wv-accent-blue);
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.wv-article-card-title {
  font-family: var(--wv-font-head);
  font-size: 1.05rem;
  color: var(--wv-text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}
.wv-article-card-excerpt {
  font-size: 0.9rem;
  color: var(--wv-text-secondary);
  flex: 1;
  margin-bottom: 20px;
}
.wv-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--wv-text-muted);
  font-family: var(--wv-font-head);
}

/* ── STATS COUNTER ── */
.wv-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  border: 1px solid var(--wv-border);
  border-radius: var(--wv-radius-lg);
  overflow: hidden;
}
.wv-stat-item {
  background: var(--wv-bg-card);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: background var(--wv-transition);
}
.wv-stat-item:hover { background: var(--wv-bg-card-hover); }
.wv-stat-number {
  font-family: var(--wv-font-head);
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--wv-accent-blue), var(--wv-accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}
.wv-stat-label {
  font-family: var(--wv-font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wv-text-muted);
}

/* ── TEAM CARDS ── */
.wv-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.wv-team-profile {
  background: var(--wv-bg-card);
  border: 1px solid var(--wv-border);
  border-radius: var(--wv-radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--wv-transition);
}
.wv-team-profile:hover {
  border-color: var(--wv-border-accent);
  transform: translateY(-4px);
  box-shadow: var(--wv-shadow-glow);
}
.wv-team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59,130,246,0.3);
  margin: 0 auto 20px;
  display: block;
  transition: border-color var(--wv-transition);
}
.wv-team-profile:hover .wv-team-avatar { border-color: var(--wv-accent-blue); }
.wv-team-name {
  font-family: var(--wv-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wv-text-primary);
  margin-bottom: 4px;
}
.wv-team-role {
  font-family: var(--wv-font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wv-accent-blue);
  margin-bottom: 14px;
}
.wv-team-bio {
  font-size: 0.85rem;
  color: var(--wv-text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}
.wv-team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.wv-team-social-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--wv-border);
  border-radius: var(--wv-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--wv-text-muted);
  transition: all var(--wv-transition);
  text-decoration: none;
}
.wv-team-social-icon:hover {
  background: rgba(59,130,246,0.1);
  border-color: var(--wv-accent-blue);
  color: var(--wv-accent-blue);
}

/* ── REVIEW CAROUSEL ── */
.wv-review-track-wrapper { overflow: hidden; position: relative; }
.wv-review-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.wv-review-slide {
  min-width: 100%;
  padding: 4px;
}
.wv-review-card {
  background: var(--wv-bg-card);
  border: 1px solid var(--wv-border);
  border-radius: var(--wv-radius-lg);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}
.wv-review-stars { color: #f59e0b; margin-bottom: 20px; letter-spacing: 2px; }
.wv-review-text {
  font-size: 1.05rem;
  color: var(--wv-text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.wv-reviewer-info { display: flex; align-items: center; gap: 16px; }
.wv-reviewer-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(59,130,246,0.3);
}
.wv-reviewer-name {
  font-family: var(--wv-font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wv-text-primary);
  margin-bottom: 2px;
}
.wv-reviewer-handle {
  font-size: 0.8rem;
  color: var(--wv-text-muted);
}
.wv-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.wv-carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--wv-border);
  background: var(--wv-bg-card);
  color: var(--wv-text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--wv-transition);
}
.wv-carousel-btn:hover {
  border-color: var(--wv-accent-blue);
  color: var(--wv-accent-blue);
  box-shadow: 0 0 16px rgba(59,130,246,0.3);
}
.wv-carousel-dots { display: flex; gap: 8px; }
.wv-carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wv-border);
  border: none;
  cursor: pointer;
  transition: all var(--wv-transition);
}
.wv-carousel-dot.wv-active {
  background: var(--wv-accent-blue);
  box-shadow: 0 0 8px var(--wv-accent-blue);
  width: 24px;
  border-radius: 4px;
}

/* ── NEWSLETTER ── */
.wv-newsletter-wrap {
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(139,92,246,0.06));
  border: 1px solid var(--wv-border);
  border-radius: var(--wv-radius-lg);
  padding: 64px;
  text-align: center;
}
.wv-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 32px auto 0;
}
.wv-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--wv-border);
  border-radius: var(--wv-radius-md);
  padding: 14px 20px;
  color: var(--wv-text-primary);
  font-family: var(--wv-font-body);
  font-size: 0.95rem;
  transition: border-color var(--wv-transition);
}
.wv-input:focus {
  outline: none;
  border-color: var(--wv-accent-blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.wv-input::placeholder { color: var(--wv-text-muted); }
.wv-newsletter-success {
  display: none;
  color: #10b981;
  font-family: var(--wv-font-head);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* ── DIVIDER ── */
.wv-divider-svg {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* ── FOOTER ── */
.wv-footer {
  background: var(--wv-bg-secondary);
  border-top: 1px solid var(--wv-border);
  padding: 80px 0 40px;
}
.wv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.wv-footer-brand-desc {
  font-size: 0.9rem;
  color: var(--wv-text-secondary);
  max-width: 300px;
  line-height: 1.75;
  margin: 16px 0 24px;
}
.wv-footer-socials { display: flex; gap: 10px; }
.wv-footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--wv-border);
  border-radius: var(--wv-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wv-text-muted);
  font-size: 0.9rem;
  transition: all var(--wv-transition);
  text-decoration: none;
}
.wv-footer-social:hover {
  background: rgba(59,130,246,0.1);
  border-color: var(--wv-accent-blue);
  color: var(--wv-accent-blue);
}
.wv-footer-heading {
  font-family: var(--wv-font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wv-text-primary);
  margin-bottom: 20px;
}
.wv-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.wv-footer-links a {
  font-size: 0.88rem;
  color: var(--wv-text-secondary);
  transition: color var(--wv-transition);
}
.wv-footer-links a:hover { color: var(--wv-text-primary); }
.wv-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--wv-border);
  font-size: 0.8rem;
  color: var(--wv-text-muted);
  gap: 16px;
  flex-wrap: wrap;
}

/* ── COOKIE CONSENT ── */
.wv-cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 560px;
  background: var(--wv-bg-card);
  border: 1px solid var(--wv-border-accent);
  border-radius: var(--wv-radius-lg);
  padding: 28px;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  transform: translateY(0);
  opacity: 1;
  transition: all var(--wv-transition);
}
.wv-cookie-banner.wv-hidden {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}
.wv-cookie-text {
  font-size: 0.88rem;
  color: var(--wv-text-secondary);
  margin-bottom: 20px;
  line-height: 1.65;
}
.wv-cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.wv-page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.wv-page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(59,130,246,0.08) 0%, transparent 70%);
}
.wv-page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.wv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--wv-font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wv-text-muted);
  margin-bottom: 24px;
}
.wv-breadcrumb a { color: var(--wv-accent-blue); text-decoration: none; }
.wv-breadcrumb span { color: var(--wv-text-muted); }

/* ── SERVICE CARDS ── */
.wv-service-card-esports,
.wv-service-card-editorial,
.wv-service-card-community,
.wv-service-card-analysis {
  background: var(--wv-bg-card);
  border: 1px solid var(--wv-border);
  border-radius: var(--wv-radius-lg);
  padding: 48px;
  transition: all var(--wv-transition);
  position: relative;
  overflow: hidden;
}
.wv-service-card-esports:hover,
.wv-service-card-editorial:hover,
.wv-service-card-community:hover,
.wv-service-card-analysis:hover {
  border-color: var(--wv-border-accent);
  box-shadow: var(--wv-shadow-glow);
  transform: translateY(-4px);
}
.wv-service-number {
  font-family: var(--wv-font-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(59,130,246,0.06);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
}

/* ── FORM STYLES ── */
.wv-form-group { margin-bottom: 24px; }
.wv-form-label {
  display: block;
  font-family: var(--wv-font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wv-text-secondary);
  margin-bottom: 8px;
}
.wv-form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--wv-border);
  border-radius: var(--wv-radius-md);
  padding: 14px 18px;
  color: var(--wv-text-primary);
  font-family: var(--wv-font-body);
  font-size: 0.95rem;
  transition: all var(--wv-transition);
}
.wv-form-control:focus {
  outline: none;
  border-color: var(--wv-accent-blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
  background: rgba(59,130,246,0.04);
}
.wv-form-control::placeholder { color: var(--wv-text-muted); }
textarea.wv-form-control { min-height: 160px; resize: vertical; }
.wv-form-error {
  font-size: 0.78rem;
  color: #f87171;
  margin-top: 6px;
  display: none;
}
.wv-form-control.wv-invalid { border-color: #f87171; }
.wv-form-control.wv-invalid + .wv-form-error { display: block; }

/* ── LEGAL PAGES ── */
.wv-legal-content { max-width: 800px; }
.wv-legal-content h2 {
  font-size: 1.4rem;
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--wv-border);
  color: var(--wv-text-primary);
}
.wv-legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.wv-legal-content h3 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--wv-text-primary); }
.wv-legal-content p { font-size: 0.95rem; color: var(--wv-text-secondary); }
.wv-legal-content ul {
  color: var(--wv-text-secondary);
  padding-left: 24px;
  margin-bottom: 16px;
}
.wv-legal-content ul li { font-size: 0.95rem; margin-bottom: 8px; }

/* ── ARTICLE PAGE ── */
.wv-article-layout-feature { max-width: 820px; }
.wv-article-hero-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--wv-radius-lg);
  margin-bottom: 48px;
}
.wv-article-body h2 {
  font-size: 1.6rem;
  color: var(--wv-text-primary);
  margin: 48px 0 16px;
}
.wv-article-body h3 {
  font-size: 1.2rem;
  color: var(--wv-text-primary);
  margin: 32px 0 12px;
}
.wv-article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--wv-text-secondary);
  margin-bottom: 24px;
}
.wv-article-body img {
  width: 100%;
  border-radius: var(--wv-radius-md);
  margin: 32px 0;
}
.wv-article-body blockquote {
  border-left: 3px solid var(--wv-accent-blue);
  padding: 20px 28px;
  margin: 32px 0;
  background: rgba(59,130,246,0.04);
  border-radius: 0 var(--wv-radius-md) var(--wv-radius-md) 0;
  font-style: italic;
  color: var(--wv-text-secondary);
  font-size: 1.05rem;
}

/* ── TIMELINE ── */
.wv-timeline { position: relative; padding-left: 32px; }
.wv-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--wv-accent-blue), var(--wv-accent-purple));
}
.wv-timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.wv-timeline-item::before {
  content: '';
  position: absolute;
  left: -38px; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--wv-accent-blue);
  box-shadow: 0 0 12px var(--wv-accent-blue);
}
.wv-timeline-year {
  font-family: var(--wv-font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--wv-accent-blue);
  margin-bottom: 8px;
}
.wv-timeline-title {
  font-family: var(--wv-font-head);
  font-size: 1.05rem;
  color: var(--wv-text-primary);
  margin-bottom: 8px;
}

/* ── CONTACT ── */
.wv-contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--wv-border);
}
.wv-contact-info-item:last-child { border-bottom: none; }
.wv-contact-icon {
  width: 44px; height: 44px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--wv-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wv-accent-blue);
  flex-shrink: 0;
}
.wv-contact-label {
  font-family: var(--wv-font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wv-text-muted);
  margin-bottom: 6px;
}
.wv-contact-value { font-size: 0.95rem; color: var(--wv-text-secondary); }
.wv-map-wrap {
  border-radius: var(--wv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--wv-border);
  margin-top: 32px;
}
.wv-map-wrap iframe { display: block; }

/* ── THANK YOU ── */
.wv-thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wv-thankyou-icon {
  width: 80px; height: 80px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #10b981;
  margin: 0 auto 28px;
}

/* ── ANIMATIONS ── */
.wv-fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.wv-fade-in.wv-visible { opacity: 1; transform: translateY(0); }
.wv-fade-in-delay-1 { transition-delay: 0.1s; }
.wv-fade-in-delay-2 { transition-delay: 0.2s; }
.wv-fade-in-delay-3 { transition-delay: 0.3s; }
.wv-fade-in-delay-4 { transition-delay: 0.4s; }

/* ── GRID DYNAMIC ── */
.wv-grid-dynamic {
  display: grid;
  gap: 24px;
}
.wv-grid-2 { grid-template-columns: repeat(2, 1fr); }
.wv-grid-3 { grid-template-columns: repeat(3, 1fr); }
.wv-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── GRADIENT TEXT ── */
.wv-gradient-text {
  background: linear-gradient(90deg, var(--wv-accent-blue), var(--wv-accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── GLOW LINE ── */
.wv-glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wv-accent-blue), var(--wv-accent-purple), transparent);
  margin: 80px 0;
  opacity: 0.4;
}

/* ── GENRE CONTENT ── */
.wv-genre-content { display: none; }
.wv-genre-content.wv-genre-active { display: grid; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .wv-nav-links, .wv-nav-cta { display: none; }
  .wv-hamburger { display: flex; }
  .wv-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .wv-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .wv-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .wv-section { padding: 64px 0; }
  .wv-footer-grid { grid-template-columns: 1fr; }
  .wv-grid-2, .wv-grid-3, .wv-grid-4 { grid-template-columns: 1fr; }
  .wv-newsletter-form { flex-direction: column; }
  .wv-newsletter-wrap { padding: 40px 24px; }
  .wv-review-card { padding: 28px 20px; }
  .wv-hero-ctas { flex-direction: column; align-items: flex-start; }
  .wv-service-card-esports,
  .wv-service-card-editorial,
  .wv-service-card-community,
  .wv-service-card-analysis { padding: 32px 24px; }
  .wv-footer-bottom { flex-direction: column; text-align: center; }
}


.wv-logo img{
  max-width: 150px;
  object-fit: contain;
}


html{
  overflow-x: hidden;
}