/* ========== RESET & VARIABLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #050514;
  --bg-soft: #111827;
  --bg-card: #111827;
  --ink: #e5e7eb;
  --muted: #9ca3af;
  --accent: #00ffc8; /* Cyan Valorium X */
  --accent2: #00a8ff; /* Bleu Valorium X */
  --accent3: #ff00ff;
  --border-soft: rgba(148, 163, 184, 0.35);
  --vx-bg: #020617;
  --vx-bg-alt: rgba(15, 23, 42, 0.85);
  --vx-card: rgba(15, 23, 42, 0.95);
  --vx-border: rgba(148, 163, 184, 0.3);
  --vx-accent: #38bdf8;
  --vx-accent-soft: rgba(56, 189, 248, 0.15);
  --vx-accent-2: #a855f7;
  --vx-text: #e5e7eb;
  --vx-muted: #9ca3af;
  --vx-badge-bg: rgba(15, 23, 42, 0.9);
  --vx-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
  --vx-radius-lg: 18px;
  --vx-radius-xl: 999px;
  --neon-white: rgba(255, 255, 255, 0.8); /* Néon blanc pour hover */
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--vx-bg);
  color: var(--ink);
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}
/* ========== ANIMATIONS FUTURISTES ========== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px var(--vx-accent-soft); }
  50% { box-shadow: 0 0 20px var(--vx-accent); }
  100% { box-shadow: 0 0 10px var(--vx-accent-soft); }
}
@keyframes tronGlow {
  0% { text-shadow: 0 0 5px var(--vx-accent), 0 0 10px var(--vx-accent); }
  50% { text-shadow: 0 0 10px var(--vx-accent), 0 0 20px var(--vx-accent), 0 0 30px var(--vx-accent); }
  100% { text-shadow: 0 0 5px var(--vx-accent), 0 0 10px var(--vx-accent); }
}
/* ========== TOP LOGO + MENU (Sticky, separated) ========== */
.vx-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0d1b2a, #001f3f); /* Bleu foncé comme capture */
  padding: 15px 25px; /* Plus d'espace pour style capture */
  box-shadow: 0 4px 20px rgba(20, 255, 233, 0.3), 0 0 10px rgba(0, 168, 255, 0.5); /* Ombre néon */
  backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(0, 168, 255, 0.3); /* Séparation claire du corps */
}
.vx-topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-logo-link {
  display: inline-flex;
  align-items: center;
}
.hero-logo {
  max-width: 160px; /* Max comme demandé */
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(15, 23, 42, 0.9));
  transition: transform 0.3s ease;
}
.hero-logo:hover {
  transform: scale(1.05);
}
.vx-topbar-center {
  min-width: 200px;
}
.logo {
  font-family: 'Orbitron', sans-serif; /* Font futuriste */
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #e5e7eb, #00ffc8, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subbrand {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 4px;
  margin-left: 33px;
}
.vx-main-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 520px;
  position: relative;
}
.vx-main-nav a, .dropdown > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px; /* Un peu plus épais comme capture */
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: #e5e7eb;
  text-decoration: none;
  border-radius: 10px; /* Arrondi comme capture */
  background: rgba(15, 23, 42, 0.96); /* Fond initial bleu foncé */
  border: 1px solid rgba(0, 168, 255, 0.4); /* Bordure bleu */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.vx-main-nav a:hover, .dropdown:hover > a {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(135deg, var(--neon-white), rgba(255, 255, 255, 0.6)); /* Néon blanc transparent */
  color: #001f3f; /* Texte bleu foncé pour contraste */
  border-color: var(--accent); /* Cyan Valorium X */
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), /* Glow blanc néon */
              0 0 15px var(--accent2), /* Bleu Valorium X */
              0 0 10px var(--accent); /* Cyan Valorium X */
  animation: pulseGlow 1s infinite alternate;
}
.vx-main-nav a.is-active {
  background: linear-gradient(135deg, #22d3ee, #38bdf8);
  color: #020617;
  border-color: #22d3ee;
}
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--vx-bg-alt);
  border-radius: 12px;
  box-shadow: var(--vx-shadow);
  padding: 10px;
  min-width: 160px;
  z-index: 1;
}
.dropdown-content a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
}
.dropdown:hover .dropdown-content {
  display: block;
}
/* ========== HERO ========== */
.hero-section {
  position: relative;
  border-radius: 24px;
  padding: 26px 20px 30px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(148, 163, 184, 0.2);
  background:
    linear-gradient(120deg, rgba(3, 7, 18, 0.75), rgba(15, 23, 42, 0.96)),
    url('https://png.pngtree.com/background/20250705/original/pngtree-a-glowing-blue-dna-double-helix-against-dark-background-with-digital-picture-image_16668508.jpg') center / cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
}
.quantum-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.4), rgba(8, 47, 73, 0.98));
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-bottom: 12px;
  animation: pulseGlow 2s infinite alternate;
}
.quantum-badge span {
  font-size: 1rem;
}
.hero-title {
  font-family: 'Orbitron', sans-serif; /* Futuriste */
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px var(--vx-accent);
  animation: tronGlow 2s infinite alternate;
}
.hero-title span {
  color: var(--accent);
}
.hero-text {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 540px;
  margin-bottom: 18px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}
.hero-btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: #020617;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(15, 23, 42, 0.3);
  text-decoration: none;
  transition: filter 0.3s, box-shadow 0.3s;
}
.hero-btn-primary:hover {
  filter: brightness(1.05);
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(15, 23, 42, 0.6),
    0 0 15px var(--vx-accent);
  animation: pulseGlow 1s infinite alternate;
}
.hero-btn-secondary {
  background: rgba(15, 23, 42, 0.85);
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.hero-btn-secondary:hover {
  background: rgba(15, 23, 42, 0.98);
  border-color: var(--accent);
  color: var(--ink);
  animation: pulseGlow 1s infinite alternate;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta span strong {
  color: #e5e7eb;
}
.hero-rig {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  border-radius: 20px;
  padding: 18px 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(34, 197, 94, 0.25);
  position: relative;
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-rig-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.hero-rig-title {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: tronGlow 2s infinite alternate;
}
.hero-rig-pill {
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.18);
  color: var(--accent);
  font-size: 0.72rem;
  border: 1px solid rgba(22, 163, 74, 0.6);
  animation: pulseGlow 2s infinite alternate;
}
.hero-rig p {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.hero-rig-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-rig-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.hero-rig-list li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--vx-accent);
}
.hero-rig-list li:hover {
  transform: translateX(5px);
  transition: transform 0.3s ease;
  color: var(--vx-accent);
}
.hero-rig-image, .section-image {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px var(--vx-accent-soft);
  animation: pulseGlow 2s infinite alternate;
  max-height: 200px; /* Reduced size for images */
  object-fit: contain;
}
/* ========== SECTIONS GÉNÉRIQUES ========== */
.section {
  background: var(--vx-bg-alt);
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 32px 22px;
  margin: 32px 0;
  opacity: 0; /* Pour fade-in */
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
  background: linear-gradient(135deg, rgba(3, 7, 18, 0.75), rgba(15, 23, 42, 0.96));
}
.section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 6px;
  text-align: left;
  text-shadow: 0 0 5px var(--vx-accent-soft);
  animation: tronGlow 2s infinite alternate;
}
.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section p.section-intro {
  color: var(--muted);
  font-size: 1rem;
  max-width: 720px;
  margin-bottom: 18px;
  font-weight: 500;
}
.section p,
.section li {
  color: #d1d5db;
  font-size: 0.95rem;
}
.section ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style: none;
}
.section ul li {
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
  transition: transform 0.2s, color 0.2s, box-shadow 0.2s;
}
.section ul li:before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--vx-accent);
}
.section ul li:hover {
  transform: translateX(5px);
  color: var(--vx-accent);
  box-shadow: 0 0 15px var(--vx-accent-soft);
  animation: pulseGlow 1s infinite alternate;
}
.section ul li strong {
  color: var(--vx-accent);
}
.community-note-box {
  margin-top: 18px;
  background: rgba(34, 197, 94, 0.1);
  padding: 1.2em;
  border-radius: 8px;
  color: #ffd700;
  font-size: 0.9rem;
  border: 1px solid rgba(34, 197, 94, 0.3);
  animation: pulseGlow 2s infinite alternate;
}
.link-list {
  list-style: none;
  margin-top: 10px;
  font-size: 0.95rem;
}
.link-list li {
  margin-bottom: 4px;
}
.link-list a {
  color: #38bdf8;
  text-decoration: none;
}
.link-list a:hover {
  text-decoration: underline;
  color: var(--accent3);
}
.official-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #facc15;
}
/* ========== HALL OF CONTRIBUTORS ========== */
.vx-leaderboard-section {
  font-family: inherit;
  background: var(--vx-bg-alt);
  border-radius: 22px;
  border: 1px solid rgba(30, 64, 175, 0.6);
  padding: 60px 20px;
  margin: 32px 0;
  opacity: 0; /* Pour fade-in */
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
  background: linear-gradient(135deg, rgba(3, 7, 18, 0.75), rgba(15, 23, 42, 0.96));
}
.vx-leaderboard-container {
  max-width: 1180px;
  margin: 0 auto;
}
.vx-leaderboard-header {
  text-align: center;
  margin-bottom: 32px;
}
.vx-leaderboard-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vx-accent);
  margin-bottom: 10px;
}
.vx-leaderboard-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-shadow: 0 0 10px var(--vx-accent-soft);
  animation: tronGlow 2s infinite alternate;
}
.vx-leaderboard-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: var(--vx-muted);
}
.vx-leaderboard-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 24px;
}
.vx-filter-button {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.8);
  color: var(--vx-muted);
  border-radius: var(--vx-radius-xl);
  padding: 7px 16px;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.vx-filter-button:hover {
  border-color: var(--vx-accent);
  color: var(--vx-text);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.35), 0 0 15px var(--vx-accent);
  animation: pulseGlow 1s infinite alternate;
}
.vx-filter-button.active {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(168, 85, 247, 0.18));
  border-color: var(--vx-accent);
  color: var(--vx-text);
}
.vx-leaderboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.vx-contributor-card {
  position: relative;
  background: var(--vx-card);
  border-radius: var(--vx-radius-lg);
  border: 1px solid var(--vx-border);
  padding: 16px 16px 14px;
  box-shadow: var(--vx-shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 420px;
}
.vx-contributor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(56, 189, 248, 0.3);
  animation: pulseGlow 1s infinite alternate;
}
.vx-contributor-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(168, 85, 247, 0.18), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: screen;
}
.vx-contributor-inner {
  position: relative;
  z-index: 1;
}
.vx-contributor-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.vx-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 10%, #e5e7eb, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #020617;
  border: 1px solid rgba(248, 250, 252, 0.6);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.8);
  animation: pulseGlow 2s infinite alternate;
}
.vx-contributor-meta {
  flex: 1;
  min-width: 0;
}
.vx-contributor-name {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
}
.vx-contributor-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vx-accent);
  border-radius: var(--vx-radius-xl);
  padding: 4px 12px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: var(--vx-accent-soft);
  white-space: nowrap;
  font-weight: 500;
  display: inline-block;
  margin: 3px 0 4px;
}
.vx-contributor-role {
  font-size: 0.8rem;
  color: var(--vx-muted);
  margin-top: 2px;
  line-height: 1.3;
  max-width: 270px;
  white-space: normal;
}
.vx-contributor-body {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--vx-muted);
}
.vx-contributor-body strong {
  color: var(--vx-text);
  font-weight: 500;
}
.vx-contributor-body ul {
  margin: 6px 0 0;
  padding-left: 16px;
}
.vx-contributor-body li {
  margin-bottom: 2px;
}
.vx-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.vx-badge {
  font-size: 0.7rem;
  border-radius: var(--vx-radius-xl);
  padding: 4px 9px;
  background: var(--vx-badge-bg);
  border: 1px solid rgba(148, 163, 184, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: box-shadow 0.3s;
}
.vx-badge:hover {
  box-shadow: 0 0 10px var(--vx-accent);
  animation: pulseGlow 1s infinite alternate;
}
.vx-badge.vx-badge-primary {
  border-color: var(--vx-accent);
}
.vx-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--vx-accent);
}
.vx-contributor-footer {
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--vx-muted);
  opacity: 0.9;
}
.vx-name-legend {
  margin-top: 3px;
  font-size: 0.7rem;
  color: var(--vx-muted);
  opacity: 0.85;
}
.vx-name-legend span {
  color: var(--vx-text);
}
.vx-leaderboard-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--vx-muted);
  text-align: center;
}
/* ========== FOOTER ========== */
footer {
  background: #020617;
  padding: 46px 0 28px;
  margin-top: 40px;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  color: var(--muted);
  font-size: 0.87rem;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) repeat(4, minmax(0, 1.3fr));
  gap: 28px;
  margin-bottom: 30px;
}
.footer-logo img {
  max-width: 160px;
  height: auto;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.86rem;
}
.footer-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.app-badge {
  background: rgba(15, 23, 42, 0.95);
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.78rem;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.12s ease;
}
.app-badge:hover {
  background: rgba(15, 23, 42, 1);
  border-color: var(--accent);
  transform: translateY(-1px);
  animation: pulseGlow 1s infinite alternate;
}
.footer-column h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  color: var(--accent);
  animation: tronGlow 2s infinite alternate;
}
.footer-column a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  margin-bottom: 5px;
  transition: color 0.16s ease;
}
.footer-column a:hover {
  color: var(--accent);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.12s ease;
}
.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #020617;
  transform: translateY(-1px) scale(1.1);
  animation: pulseGlow 1s infinite alternate;
}
.footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding-top: 18px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  font-size: 0.8rem;
  align-items: center;
}
.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.16s ease;
}
.footer-legal a:hover {
  color: var(--accent);
}
.dmca-logo {
  width: 100px;
  height: auto;
  vertical-align: middle;
}
.footer-company-info {
  margin-top: 10px;
  font-size: 0.76rem;
  color: #6b7280;
  line-height: 1.7;
}
.footer-disclaimer {
  margin-top: 12px;
  font-size: 0.76rem;
  line-height: 1.7;
  color: #f97373;
  background: rgba(127, 29, 29, 0.22);
  border-radius: 10px;
  padding: 10px 11px;
  border-left: 3px solid #f97373;
}
.footer-disclaimer strong {
  color: #fecaca;
}
/* ========== RESPONSIVE ========== */
img.section-image{
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 100% !important;
  height: auto !important;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}
@media (max-width: 900px) {
  .vx-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .vx-main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .hero-section {
    background-position: center top;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-rig {
    margin-top: 18px;
  }
}
@media (max-width: 840px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-meta {
    flex-direction: column;
  }
  .section,
  .vx-leaderboard-section {
    padding: 24px 16px;
  }
  .vx-topbar {
    gap: 12px;
  }
  .hero-logo {
    max-width: 120px;
  }
}
.vx-video-thumb{
  position:relative;
  display:block;
  border-radius:18px;
  overflow:hidden;
}

.vx-video-thumb .vx-play{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-size:64px;
  color:#fff;
  text-shadow:0 10px 30px rgba(0,0,0,.6);
  opacity:.92;
  pointer-events:none;
}

.vx-video-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 70%);
  pointer-events:none;
}

.vx-video-thumb:hover .vx-play{
  transform:scale(1.05);
  opacity:1;
}
/* ===== FOOTER (Valorium X full menu) ===== */

.vx-footer{
  background: radial-gradient(1200px 600px at 20% 10%, rgba(20,255,233,.10), transparent 60%),
              linear-gradient(180deg, rgba(3,8,20,1), rgba(2,6,16,1));
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 44px 0 34px;
}

.vx-footer-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.vx-footer-top{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: start;
}

.vx-footer-brand{ min-width: 0; }

.vx-footer-logoRow{
  display:flex; align-items:center; gap:12px;
  margin-bottom: 14px;
}
.vx-footer-logo{
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(20,255,233,.25));
}

.vx-footer-tagline{
  opacity: .85;
  line-height: 1.6;
  margin: 0 0 18px 0;
  max-width: 340px;
}

.vx-footer-storeRow{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.vx-storeBtn{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  text-decoration:none;
  color: inherit;
  transition: transform .15s ease, border-color .15s ease, filter .15s ease;
}
.vx-storeBtn:hover{
  transform: translateY(-1px);
  border-color: rgba(20,255,233,.35);
  filter: brightness(1.05);
}
.vx-storeIcon{
  width: 26px;
  height: 26px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
}
.vx-storeText small{
  display:block;
  font-size: .70rem;
  opacity: .75;
  letter-spacing: .06em;
}
.vx-storeText strong{
  display:block;
  font-size: .98rem;
  letter-spacing: .01em;
}

.vx-footer-social{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.vx-socialIcon{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.16);
  text-decoration:none;
  color: inherit;
  transition: transform .15s ease, border-color .15s ease, filter .15s ease;
}
.vx-socialIcon:hover{
  transform: translateY(-1px);
  border-color: rgba(20,255,233,.35);
  filter: brightness(1.10);
}

.vx-footer-cols{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.vx-footer-colTitle{
  width: 100%;
  text-align: left;
  font-family: "Orbitron", system-ui, sans-serif;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: .95rem;
  color: rgba(20,255,233,.95);
  padding: 6px 0 10px;
  background: transparent;
  border: 0;
  cursor: default;
}

.vx-footer-links a{
  display:block;
  text-decoration:none;
  color: rgba(231,234,241,.80);
  padding: 6px 0;
  transition: color .15s ease, transform .15s ease;
}
.vx-footer-links a:hover{
  color: rgba(20,255,233,.95);
  transform: translateX(2px);
}

.vx-footer-divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 28px 0 18px;
}

.vx-footer-bottom{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.vx-footer-leftText{
  opacity: .82;
  line-height: 1.7;
}
.vx-footer-small{
  font-size: .92rem;
  opacity: .85;
}

.vx-footer-legalLinks{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
  opacity: .85;
}
.vx-footer-legalLinks a{
  color: rgba(231,234,241,.85);
  text-decoration:none;
}
.vx-footer-legalLinks a:hover{
  color: rgba(20,255,233,.95);
}
.vx-footer-legalLinks span{ opacity:.55; }

.vx-dmca{
  opacity: .7;
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,.12);
}

.vx-footer-notice{
  margin-top: 22px;
  border: 1px solid rgba(255, 82, 82, .35);
  background: linear-gradient(135deg, rgba(255,82,82,.10), rgba(0,0,0,.18));
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.vx-footer-noticeTitle{
  font-weight: 900;
  letter-spacing: .06em;
  margin-bottom: 8px;
  color: rgba(255, 120, 120, .95);
}
.vx-footer-notice p{
  margin: 8px 0;
  opacity: .86;
  line-height: 1.65;
}
.vx-footer-noticeStrong{
  margin-top: 10px;
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(255, 160, 160, .95);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .vx-footer-top{ grid-template-columns: 1fr; }
  .vx-footer-tagline{ max-width: 520px; }
  .vx-footer-cols{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .vx-footer-cols{ grid-template-columns: 1fr; }
  .vx-footer-colTitle{
    cursor: pointer;
    padding: 10px 0;
  }
  .vx-footer-links{
    display:none;
    padding-bottom: 10px;
  }
  .vx-footer-col.is-open .vx-footer-links{ display:block; }
}
