/*
Theme Name: VeronaxisPro
Theme URI: https://veronaxispro.com
Author: VeronaxisPro
Author URI: https://veronaxispro.com
Description: A bold, futuristic neo-brutalist gaming theme for VeronaxisPro. Auto-generates all site pages on activation, featuring a graphite canvas, electric cobalt and acid-voltage accents, a bento-grid homepage, monospace data labels and hard-edged structural panels.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: veronaxispro
*/

/* =========================================================
   DESIGN TOKENS — VOLTAGE
   ========================================================= */
:root {
  --ink-0: #0b0c10;        /* graphite black */
  --ink-1: #111319;
  --ink-2: #161922;        /* panel */
  --ink-3: #1d2230;

  --bone: #ece9e1;         /* warm off-white */
  --bone-soft: #b7b6ae;
  --bone-faint: #7c7d78;

  --cobalt: #3a5bff;       /* electric cobalt */
  --cobalt-bright: #6d86ff;
  --cobalt-deep: #2138c8;

  --volt: #e6ff32;         /* acid voltage */
  --volt-deep: #b9d400;

  --magenta: #ff2e88;      /* signal accent */

  --line: rgba(236, 233, 225, 0.14);
  --line-strong: rgba(236, 233, 225, 0.26);
  --surface: #14171f;
  --border: rgba(236, 233, 225, 0.16);

  --grad-cobalt: linear-gradient(120deg, #6d86ff 0%, #3a5bff 55%, #2138c8 100%);
  --grad-volt: linear-gradient(120deg, #e6ff32 0%, #b9d400 100%);

  --shadow-hard: 6px 6px 0 0 var(--cobalt);
  --shadow-hard-volt: 6px 6px 0 0 var(--volt);
  --shadow-soft: 0 24px 60px -28px rgba(0,0,0,.8);

  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --maxw: 1200px;
}

/* =========================================================
   BASE
   ========================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--bone);
  background-color: var(--ink-0);
  background-image:
    radial-gradient(720px 460px at 88% -6%, rgba(58,91,255,.16), transparent 60%),
    radial-gradient(620px 460px at 4% 12%, rgba(230,255,50,.07), transparent 58%),
    linear-gradient(180deg, var(--ink-0), var(--ink-1) 60%, var(--ink-0));
  background-attachment: fixed;
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cobalt-bright); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--volt); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 .5em;
  color: var(--bone);
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.narrow { max-width: 880px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--volt);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--volt); }

.grad-text { color: var(--cobalt-bright); }
.volt-text { color: var(--volt); }

/* generic divider used on legal pages */
.laurel-rule { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 20px; color: var(--cobalt); max-width: 240px; }
.laurel-rule::before, .laurel-rule::after { content: ""; height: 2px; flex: 1; background: var(--line-strong); }
.laurel-rule svg { width: 20px; height: 20px; }

/* =========================================================
   BUTTONS — hard-edged
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700; font-size: 14px; letter-spacing: .08em;
  padding: 15px 30px; border-radius: 2px;
  border: 2px solid var(--bone); cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-transform: uppercase;
}
.btn-primary { background: var(--cobalt); color: #fff; border-color: var(--cobalt); box-shadow: var(--shadow-hard-volt); }
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 0 var(--volt); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--bone); }
.btn-ghost:hover { transform: translate(-2px,-2px); border-color: var(--volt); color: var(--volt); box-shadow: 6px 6px 0 0 var(--cobalt); }
.btn-blood { background: var(--volt); color: #14160a; border-color: var(--volt); }
.btn-blood:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 0 var(--cobalt); color: #14160a; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); background: rgba(11,12,16,.82); border-bottom: 1px solid var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--bone); }
.brand:hover { color: var(--bone); }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; background: var(--cobalt); border-radius: 3px; box-shadow: 3px 3px 0 0 var(--volt); }
.brand-mark svg { width: 24px; height: 24px; }
.brand span b { color: var(--volt); font-weight: 800; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav a { font-family: var(--font-mono); color: var(--bone-soft); font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; padding: 9px 15px; border-radius: 2px; transition: all .2s ease; }
.main-nav a:hover, .main-nav .current-menu-item > a { color: var(--ink-0); background: var(--volt); }
.nav-cta { margin-left: 10px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--volt); margin: 6px 0; border-radius: 2px; transition: .3s; }

/* =========================================================
   HERO — BENTO
   ========================================================= */
.vx-hero { padding: 84px 0 76px; position: relative; }
.vx-hero-eyebrow { margin-bottom: 26px; }
.vx-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(64px, auto);
  gap: 16px;
}
.vx-cell { border: 1px solid var(--border); border-radius: 4px; background: var(--surface); padding: 28px; position: relative; overflow: hidden; }
.vx-cell--headline {
  grid-column: span 8; grid-row: span 3;
  background: linear-gradient(150deg, var(--ink-2), var(--ink-0));
  display: flex; flex-direction: column; justify-content: center;
  border-color: var(--line-strong);
}
.vx-cell--headline h1 { font-size: clamp(38px, 5.4vw, 74px); margin: 0; }
.vx-cell--headline .vx-corner { position: absolute; top: 16px; right: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--bone-faint); letter-spacing: .1em; }
.vx-cell--cta { grid-column: span 3; grid-row: span 1; display: flex; align-items: center; background: var(--cobalt); border-color: var(--cobalt); }
.vx-cell--cta a { width: 100%; justify-content: center; }
.vx-cell--lead { grid-column: span 4; grid-row: span 2; display: flex; align-items: center; }
.vx-cell--lead p { color: var(--bone-soft); font-size: 16px; margin: 0; }
.vx-cell--stat { grid-column: span 2; grid-row: span 1; display: flex; flex-direction: column; justify-content: center; }
.vx-cell--stat b { font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1; color: var(--volt); }
.vx-cell--stat small { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--bone-faint); margin-top: 6px; }
.vx-cell--chip { grid-column: span 4; grid-row: span 1; display: flex; align-items: center; gap: 12px; background: var(--ink-2); }
.vx-cell--chip .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--volt); box-shadow: 0 0 0 4px rgba(230,255,50,.18); }
.vx-cell--chip span { font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--bone-soft); }
.vx-cell--ghost { grid-column: span 3; display: flex; align-items: center; }
.vx-cell--ghost a { width: 100%; justify-content: center; }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-head { max-width: 820px; margin: 0 0 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); }
.section-head p { color: var(--bone-soft); font-size: 17px; }

/* =========================================================
   FEATURES — EDITORIAL INDEX
   ========================================================= */
.vx-index { border-top: 1px solid var(--line-strong); }
.vx-index-row {
  display: grid; grid-template-columns: 90px 1fr 1.1fr; gap: 28px; align-items: start;
  padding: 34px 8px; border-bottom: 1px solid var(--line);
  transition: background .25s ease, padding .25s ease;
}
.vx-index-row:hover { background: var(--ink-2); padding-left: 22px; padding-right: 22px; }
.vx-index-num { font-family: var(--font-mono); font-size: 15px; color: var(--cobalt-bright); letter-spacing: .04em; padding-top: 8px; }
.vx-index-row:hover .vx-index-num { color: var(--volt); }
.vx-index-title { display: flex; align-items: center; gap: 16px; }
.vx-index-title .ico { width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 4px; display: grid; place-items: center; flex: none; background: var(--ink-1); }
.vx-index-title .ico svg { width: 24px; height: 24px; color: var(--volt); }
.vx-index-title h3 { font-size: clamp(22px, 2.6vw, 30px); margin: 0; }
.vx-index-row p { color: var(--bone-soft); font-size: 16px; margin: 0; }

/* =========================================================
   GAMES — CINEMATIC SHOWCASE
   ========================================================= */
.vx-shows { display: grid; gap: 26px; }
.vx-show {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden; background: var(--surface);
}
.vx-show:nth-child(even) { grid-template-columns: 1fr 1.15fr; }
.vx-show:nth-child(even) .vx-show-media { order: 2; }
.vx-show-media { position: relative; }
.vx-show-media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 280px; }
.vx-show-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(20,23,31,.6)); pointer-events: none; }
.vx-show-panel { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.vx-show-tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--magenta); margin-bottom: 14px; }
.vx-show-panel h3 { font-size: clamp(26px, 3vw, 40px); }
.vx-show-panel p { color: var(--bone-soft); font-size: 16px; margin-bottom: 26px; }

/* =========================================================
   HOW IT WORKS — FLOW TRACK
   ========================================================= */
.vx-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.vx-flow-step { padding: 38px 32px; position: relative; border-right: 1px solid var(--line); }
.vx-flow-step:last-child { border-right: 0; }
.vx-flow-step::before { content: attr(data-step); position: absolute; top: 20px; right: 24px; font-family: var(--font-mono); font-size: 56px; font-weight: 700; color: var(--line-strong); line-height: 1; }
.vx-flow-step .bar { width: 44px; height: 5px; background: var(--volt); margin-bottom: 22px; }
.vx-flow-step:nth-child(2) .bar { background: var(--cobalt); }
.vx-flow-step:nth-child(3) .bar { background: var(--magenta); }
.vx-flow-step h3 { font-size: 22px; margin-bottom: 8px; }
.vx-flow-step p { color: var(--bone-soft); font-size: 15px; margin: 0; }

/* =========================================================
   HALL OF FAME
   ========================================================= */
.hof { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; background: var(--surface); }
.hof table { width: 100%; border-collapse: collapse; }
.hof th, .hof td { padding: 18px 22px; text-align: left; font-size: 15px; }
.hof thead th { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; color: var(--bone-faint); background: var(--ink-2); border-bottom: 1px solid var(--line-strong); }
.hof tbody tr { border-bottom: 1px solid var(--line); transition: background .2s; }
.hof tbody tr:last-child { border-bottom: 0; }
.hof tbody tr:hover { background: var(--ink-2); }
.hof .rank { font-size: 20px; }
.hof .score { font-family: var(--font-mono); font-weight: 700; color: var(--volt); }
.hof .activity { color: var(--bone-faint); }

/* =========================================================
   TRUST / COMPLIANCE BADGES
   ========================================================= */
.trust { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; margin-top: 60px; }
.trust a, .trust .badge { display: inline-flex; align-items: center; justify-content: center; background: #fff; border-radius: 4px; padding: 14px 22px; min-height: 64px; border: 1px solid var(--border); transition: transform .2s ease, box-shadow .2s ease; }
.trust a:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 0 var(--cobalt); }
.trust img { height: 34px; width: auto; }
.badge-18 { font-family: var(--font-display); font-weight: 800; color: #d8453a; background: #fff; border: 3px solid #d8453a; border-radius: 50%; width: 58px; height: 58px; display:grid; place-items:center; font-size: 18px; }

/* =========================================================
   STATIC / LEGAL PAGES
   ========================================================= */
.page-hero { padding: 80px 0 0; }
.page-hero h1 { font-size: clamp(38px, 5vw, 62px); }
.prose { max-width: 880px; }
.prose h2 { font-size: clamp(26px, 3vw, 36px); margin-top: 1.6em; color: var(--bone); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 20px; margin-top: 1.4em; color: var(--cobalt-bright); }
.prose h4 { font-size: 17px; margin-top: 1.2em; color: var(--volt); }
.prose p { color: var(--bone-soft); }
.prose ul { color: var(--bone-soft); padding-left: 22px; }
.prose ul li { margin-bottom: 8px; }
.prose ul li::marker { color: var(--volt); }
.prose a { font-weight: 600; }
.prose .lead { color: var(--bone); font-size: 19px; }

/* =========================================================
   FORMS
   ========================================================= */
.form-wrap { max-width: 880px; }
.spv-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.spv-form .full { grid-column: 1 / -1; }
.spv-form label { font-family: var(--font-mono); display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--volt); margin-bottom: 8px; text-transform: uppercase; }
.spv-form input, .spv-form textarea { width: 100%; padding: 15px 17px; font-family: var(--font-body); font-size: 16px; color: var(--bone); background: var(--ink-1); border: 1px solid var(--border); border-radius: 3px; transition: border-color .2s, box-shadow .2s; }
.spv-form input::placeholder, .spv-form textarea::placeholder { color: var(--bone-faint); }
.spv-form input:focus, .spv-form textarea:focus { outline: none; border-color: var(--cobalt); box-shadow: 4px 4px 0 0 var(--volt); }
.spv-form textarea { min-height: 170px; resize: vertical; }
.form-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; }

/* =========================================================
   GAME PLAY PAGES
   ========================================================= */
.game-stage { text-align: center; padding: 80px 0 60px; }
.game-stage h1 { font-size: clamp(32px, 5vw, 54px); margin-bottom: 34px; }
.game-frame { position: relative; max-width: 1080px; margin: 0 auto; border-radius: 6px; overflow: hidden; border: 2px solid var(--cobalt); box-shadow: 8px 8px 0 0 var(--volt); background: var(--ink-2); }
.game-frame iframe { display: block; width: 100%; aspect-ratio: 1080/500; border: 0; }
.game-back { margin-top: 36px; }

/* =========================================================
   FOOTER
   ========================================================= */
.disclaimer-band { background: var(--ink-2); border-top: 1px solid var(--line-strong); padding: 48px 0; }
.disclaimer-band h4 { font-family: var(--font-mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--volt); margin-bottom: 10px; }
.disclaimer-band p { color: var(--bone-faint); font-size: 14px; max-width: 1000px; margin: 0; }

.site-footer { padding: 28px 0; background: var(--ink-0); border-top: 1px solid var(--line); }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-nav ul { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.footer-nav a { font-family: var(--font-mono); color: var(--bone-soft); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--volt); }
.footer-copy { font-family: var(--font-mono); color: var(--bone-faint); font-size: 12px; letter-spacing: .04em; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .vx-cell--headline { grid-column: span 12; }
  .vx-cell--cta, .vx-cell--lead, .vx-cell--chip, .vx-cell--ghost { grid-column: span 6; }
  .vx-cell--stat { grid-column: span 4; }
  .vx-show, .vx-show:nth-child(even) { grid-template-columns: 1fr; }
  .vx-show:nth-child(even) .vx-show-media { order: 0; }
  .vx-index-row { grid-template-columns: 60px 1fr; }
  .vx-index-row p { grid-column: 2 / 3; }
  .vx-flow { grid-template-columns: 1fr; }
  .vx-flow-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .vx-flow-step:last-child { border-bottom: 0; }
  .spv-form { grid-template-columns: 1fr; }
  .section, .vx-hero { padding: 64px 0; }
}
@media (max-width: 620px) {
  .vx-cell--cta, .vx-cell--lead, .vx-cell--chip, .vx-cell--ghost, .vx-cell--stat { grid-column: span 12; }
  .vx-index-row { grid-template-columns: 1fr; gap: 14px; }
  .main-nav { position: fixed; inset: 82px 0 auto 0; flex-direction: column; align-items: stretch; background: rgba(11,12,16,.98); backdrop-filter: blur(12px); padding: 18px 24px 26px; border-bottom: 1px solid var(--line-strong); transform: translateY(-130%); transition: transform .35s ease; gap: 4px; }
  .main-nav.open { transform: none; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: block; }
  .hof { overflow-x: auto; }
  .hof table { min-width: 520px; }
}
