@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --prx-gold: #f5c842;
  --prx-gold-light: #ffe680;
  --prx-gold-dark: #c9a200;
  --prx-deep: #0a0a1a;
  --prx-dark: #0f0f2a;
  --prx-mid: #161632;
  --prx-card: #1a1a3e;
  --prx-border: #2a2a5a;
  --prx-accent: #6c3fff;
  --prx-accent2: #ff3f8e;
  --prx-accent3: #3fffcf;
  --prx-text: #e8e8ff;
  --prx-muted: #8888aa;
  --prx-white: #ffffff;
  --prx-success: #3fcf7f;
  --prx-warn: #ff8c3f;
  --prx-gradient-main: linear-gradient(135deg, #0a0a1a 0%, #1a0a3e 50%, #0a1a3e 100%);
  --prx-gradient-gold: linear-gradient(135deg, #f5c842 0%, #ffe680 50%, #c9a200 100%);
  --prx-gradient-card: linear-gradient(145deg, #1a1a3e 0%, #0f0f2a 100%);
  --prx-gradient-accent: linear-gradient(135deg, #6c3fff 0%, #ff3f8e 100%);
  --prx-shadow-glow: 0 0 30px rgba(108, 63, 255, 0.4);
  --prx-shadow-gold: 0 0 20px rgba(245, 200, 66, 0.3);
  --prx-shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --prx-radius: 12px;
  --prx-radius-lg: 20px;
  --prx-radius-xl: 32px;
  --prx-transition: all 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 {
  font-family: 'Inter', sans-serif;
  background: var(--prx-gradient-main);
  background-attachment: fixed;
  color: var(--prx-text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(ellipse at 10% 20%, rgba(108,63,255,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(255,63,142,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(63,255,207,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.veltrox-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.veltrox-container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

.zynthar-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108, 63, 255, 0.2);
  transition: var(--prx-transition);
}

.zynthar-header.zynthar-scrolled {
  background: rgba(10, 10, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.zynthar-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.zynthar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.zynthar-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--prx-gradient-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--prx-shadow-glow);
}

.zynthar-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--prx-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.zynthar-logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--prx-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
  -webkit-text-fill-color: var(--prx-muted);
}

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

.zynthar-nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--prx-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  transition: var(--prx-transition);
  position: relative;
}

.zynthar-nav-links a:hover,
.zynthar-nav-links a.zynthar-active {
  color: var(--prx-white);
  background: rgba(108, 63, 255, 0.15);
}

.zynthar-nav-links a.zynthar-active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--prx-gold);
  border-radius: 50%;
}

.zynthar-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zynthar-age-badge {
  background: rgba(255, 63, 142, 0.15);
  border: 1px solid rgba(255, 63, 142, 0.4);
  color: var(--prx-accent2);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.zynthar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}

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

.zynthar-mobile-menu {
  display: none;
  background: rgba(10, 10, 26, 0.98);
  border-top: 1px solid var(--prx-border);
  padding: 16px 0;
}

.zynthar-mobile-menu.zynthar-open {
  display: block;
}

.zynthar-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  gap: 4px;
}

.zynthar-mobile-menu ul a {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--prx-muted);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  transition: var(--prx-transition);
}

.zynthar-mobile-menu ul a:hover {
  color: var(--prx-white);
  background: rgba(108, 63, 255, 0.15);
}

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

.quovix-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: var(--prx-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--prx-transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.quovix-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.quovix-btn:hover::before {
  left: 100%;
}

.quovix-btn-primary {
  background: var(--prx-gradient-accent);
  color: var(--prx-white);
  box-shadow: 0 4px 20px rgba(108, 63, 255, 0.4);
}

.quovix-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 63, 255, 0.6);
}

.quovix-btn-gold {
  background: var(--prx-gradient-gold);
  color: var(--prx-deep);
  box-shadow: var(--prx-shadow-gold);
  font-size: 1rem;
}

.quovix-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 200, 66, 0.5);
}

.quovix-btn-outline {
  background: transparent;
  color: var(--prx-text);
  border: 1px solid var(--prx-border);
}

.quovix-btn-outline:hover {
  border-color: var(--prx-accent);
  color: var(--prx-white);
  background: rgba(108, 63, 255, 0.1);
}

.quovix-btn-lg {
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: var(--prx-radius-lg);
}

.quovix-btn-sm {
  font-size: 0.85rem;
  padding: 7px 18px;
}

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

.draxel-hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.draxel-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.draxel-hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: prx-float 8s ease-in-out infinite;
}

.draxel-hero-bg-orb:nth-child(1) {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,63,255,0.5) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}

.draxel-hero-bg-orb:nth-child(2) {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,63,142,0.3) 0%, transparent 70%);
  bottom: -100px; left: -50px;
  animation-delay: 3s;
}

.draxel-hero-bg-orb:nth-child(3) {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(63,255,207,0.2) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: 6s;
}

@keyframes prx-float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.draxel-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(108,63,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,63,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.draxel-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.draxel-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 63, 255, 0.15);
  border: 1px solid rgba(108, 63, 255, 0.4);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--prx-accent3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.draxel-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--prx-accent3);
  border-radius: 50%;
  animation: prx-pulse 2s infinite;
}

@keyframes prx-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.draxel-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--prx-white);
}

.draxel-hero-title span {
  background: var(--prx-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.draxel-hero-desc {
  font-size: 1.1rem;
  color: var(--prx-muted);
  margin-bottom: 36px;
  max-width: 480px;
}

.draxel-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.draxel-hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--prx-border);
}

.draxel-stat-item {
  display: flex;
  flex-direction: column;
}

.draxel-stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--prx-gold);
}

.draxel-stat-label {
  font-size: 0.78rem;
  color: var(--prx-muted);
  letter-spacing: 0.5px;
}

.draxel-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.draxel-hero-cards-stack {
  position: relative;
  width: 340px;
  height: 380px;
}

.draxel-floating-card {
  position: absolute;
  border-radius: var(--prx-radius-lg);
  background: var(--prx-gradient-card);
  border: 1px solid var(--prx-border);
  box-shadow: var(--prx-shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: prx-card-float 6s ease-in-out infinite;
}

.draxel-floating-card:nth-child(1) {
  width: 180px; height: 220px;
  top: 20px; left: 20px;
  animation-delay: 0s;
  background: linear-gradient(145deg, #1a1a4e, #0f0f2a);
  border-color: rgba(108, 63, 255, 0.4);
}

.draxel-floating-card:nth-child(2) {
  width: 160px; height: 200px;
  top: 60px; right: 10px;
  animation-delay: 2s;
  background: linear-gradient(145deg, #2a1a3e, #0f0f2a);
  border-color: rgba(255, 63, 142, 0.4);
}

.draxel-floating-card:nth-child(3) {
  width: 140px; height: 180px;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  animation-delay: 4s;
  background: linear-gradient(145deg, #1a2a3e, #0a1a2a);
  border-color: rgba(63, 255, 207, 0.4);
}

@keyframes prx-card-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.draxel-floating-card:nth-child(3) {
  animation: prx-card-float3 6s ease-in-out infinite;
}

@keyframes prx-card-float3 {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

.draxel-card-suit {
  font-size: 3rem;
  filter: drop-shadow(0 0 10px rgba(245, 200, 66, 0.5));
}

.draxel-card-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--prx-muted);
  letter-spacing: 1px;
  text-align: center;
}

/* ===================== SECTIONS ===================== */

.solvex-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.solvex-section-sm {
  padding: 60px 0;
}

.solvex-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--prx-border), transparent);
  margin: 0;
}

.solvex-section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--prx-accent3);
  margin-bottom: 12px;
}

.solvex-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--prx-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.solvex-section-title span {
  background: var(--prx-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solvex-section-desc {
  font-size: 1rem;
  color: var(--prx-muted);
  max-width: 580px;
}

.solvex-center {
  text-align: center;
}

.solvex-center .solvex-section-desc {
  margin: 0 auto;
}

/* ===================== CARDS ===================== */

.myndra-card {
  background: var(--prx-gradient-card);
  border: 1px solid var(--prx-border);
  border-radius: var(--prx-radius-lg);
  padding: 32px;
  transition: var(--prx-transition);
  position: relative;
  overflow: hidden;
}

.myndra-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--prx-gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.myndra-card:hover {
  border-color: rgba(108, 63, 255, 0.4);
  box-shadow: var(--prx-shadow-glow);
  transform: translateY(-4px);
}

.myndra-card:hover::before {
  transform: scaleX(1);
}

.myndra-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(108, 63, 255, 0.15);
  border: 1px solid rgba(108, 63, 255, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.myndra-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--prx-white);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.myndra-card-text {
  font-size: 0.9rem;
  color: var(--prx-muted);
  line-height: 1.6;
}

.myndra-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.myndra-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.myndra-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===================== FEATURES SECTION ===================== */

.plexor-features-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.plexor-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plexor-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--prx-radius);
  transition: var(--prx-transition);
}

.plexor-feature-item:hover {
  background: rgba(108, 63, 255, 0.08);
}

.plexor-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(108, 63, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.plexor-feature-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--prx-white);
  margin-bottom: 4px;
}

.plexor-feature-desc {
  font-size: 0.88rem;
  color: var(--prx-muted);
}

.plexor-visual-box {
  background: var(--prx-gradient-card);
  border: 1px solid var(--prx-border);
  border-radius: var(--prx-radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--prx-shadow-card);
}

.plexor-visual-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.plexor-visual-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.plexor-visual-icon.gold { background: rgba(245, 200, 66, 0.15); }
.plexor-visual-icon.purple { background: rgba(108, 63, 255, 0.2); }
.plexor-visual-icon.pink { background: rgba(255, 63, 142, 0.15); }
.plexor-visual-icon.cyan { background: rgba(63, 255, 207, 0.15); }

.plexor-visual-info {
  flex: 1;
}

.plexor-visual-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--prx-white);
}

.plexor-visual-sub {
  font-size: 0.8rem;
  color: var(--prx-muted);
}

.plexor-visual-bar {
  height: 4px;
  background: var(--prx-border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.plexor-visual-bar-fill {
  height: 100%;
  border-radius: 2px;
  animation: prx-bar-fill 2s ease forwards;
}

@keyframes prx-bar-fill {
  from { width: 0%; }
}

.plexor-visual-bar-fill.gold { background: var(--prx-gradient-gold); width: 85%; }
.plexor-visual-bar-fill.purple { background: linear-gradient(90deg, #6c3fff, #9c6fff); width: 70%; }
.plexor-visual-bar-fill.pink { background: linear-gradient(90deg, #ff3f8e, #ff7fbf); width: 92%; }
.plexor-visual-bar-fill.cyan { background: linear-gradient(90deg, #3fffcf, #7fffff); width: 60%; }

/* ===================== GAME HIGHLIGHTS ===================== */

.luxtrix-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.luxtrix-game-card {
  background: var(--prx-gradient-card);
  border: 1px solid var(--prx-border);
  border-radius: var(--prx-radius-lg);
  overflow: hidden;
  transition: var(--prx-transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.luxtrix-game-card:hover {
  border-color: rgba(108, 63, 255, 0.5);
  transform: translateY(-6px);
  box-shadow: var(--prx-shadow-glow);
}

.luxtrix-game-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.luxtrix-game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 26, 0.8) 100%);
}

.luxtrix-thumb-bg-1 { background: linear-gradient(135deg, #1a0a3e, #3a1a6e); }
.luxtrix-thumb-bg-2 { background: linear-gradient(135deg, #1a2a0a, #2a4a1a); }
.luxtrix-thumb-bg-3 { background: linear-gradient(135deg, #3e0a1a, #6e1a2a); }
.luxtrix-thumb-bg-4 { background: linear-gradient(135deg, #0a2a3e, #1a4a6e); }
.luxtrix-thumb-bg-5 { background: linear-gradient(135deg, #2a1a0a, #4e3a1a); }
.luxtrix-thumb-bg-6 { background: linear-gradient(135deg, #0a1a3e, #1a2a6e); }

.luxtrix-game-body {
  padding: 20px;
}

.luxtrix-game-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--prx-white);
  margin-bottom: 6px;
}

.luxtrix-game-desc {
  font-size: 0.82rem;
  color: var(--prx-muted);
  margin-bottom: 16px;
}

.luxtrix-game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.luxtrix-game-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.luxtrix-tag-purple { background: rgba(108,63,255,0.2); color: #c3a3ff; }
.luxtrix-tag-gold { background: rgba(245,200,66,0.15); color: var(--prx-gold); }
.luxtrix-tag-pink { background: rgba(255,63,142,0.15); color: #ff9fc7; }
.luxtrix-tag-cyan { background: rgba(63,255,207,0.15); color: var(--prx-accent3); }

.luxtrix-game-play-btn {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--prx-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===================== BANNER / CTA ===================== */

.vektrum-banner {
  background: linear-gradient(135deg, #1a0a3e 0%, #0a1a3e 100%);
  border: 1px solid rgba(108, 63, 255, 0.3);
  border-radius: var(--prx-radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vektrum-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(108,63,255,0.1) 0%, transparent 70%);
}

.vektrum-banner-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--prx-white);
  margin-bottom: 16px;
  position: relative;
}

.vektrum-banner-title span {
  background: var(--prx-gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vektrum-banner-text {
  font-size: 1rem;
  color: var(--prx-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}

.vektrum-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===================== TESTIMONIALS ===================== */

.rynox-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.rynox-testi-card {
  background: var(--prx-gradient-card);
  border: 1px solid var(--prx-border);
  border-radius: var(--prx-radius-lg);
  padding: 28px;
  transition: var(--prx-transition);
}

.rynox-testi-card:hover {
  border-color: rgba(108, 63, 255, 0.3);
  transform: translateY(-4px);
}

.rynox-testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.rynox-testi-stars span {
  font-size: 1rem;
  color: var(--prx-gold);
}

.rynox-testi-quote {
  font-size: 0.92rem;
  color: var(--prx-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.rynox-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rynox-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--prx-deep);
  flex-shrink: 0;
}

.rynox-avatar-gold { background: var(--prx-gradient-gold); }
.rynox-avatar-purple { background: linear-gradient(135deg, #6c3fff, #9c6fff); color: var(--prx-white); }
.rynox-avatar-pink { background: linear-gradient(135deg, #ff3f8e, #ff7fbf); color: var(--prx-white); }
.rynox-avatar-cyan { background: linear-gradient(135deg, #3fffcf, #7fffff); }
.rynox-avatar-orange { background: linear-gradient(135deg, #ff8c3f, #ffb080); }
.rynox-avatar-blue { background: linear-gradient(135deg, #3f8fff, #7fbfff); color: var(--prx-white); }

.rynox-testi-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--prx-white);
}

.rynox-testi-handle {
  font-size: 0.78rem;
  color: var(--prx-muted);
}

/* ===================== RESPONSIBLE PLAY NOTICE ===================== */

.respplay-notice {
  background: rgba(255, 140, 63, 0.08);
  border: 1px solid rgba(255, 140, 63, 0.25);
  border-radius: var(--prx-radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
}

.respplay-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.respplay-text {
  font-size: 0.85rem;
  color: rgba(255, 200, 100, 0.85);
  line-height: 1.5;
}

.respplay-text strong {
  color: var(--prx-warn);
}

/* ===================== FORMS ===================== */

.formix-wrap {
  background: var(--prx-gradient-card);
  border: 1px solid var(--prx-border);
  border-radius: var(--prx-radius-xl);
  padding: 48px;
  max-width: 520px;
  margin: 0 auto;
}

.formix-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--prx-white);
  margin-bottom: 8px;
  text-align: center;
}

.formix-sub {
  font-size: 0.9rem;
  color: var(--prx-muted);
  text-align: center;
  margin-bottom: 36px;
}

.formix-field {
  margin-bottom: 20px;
}

.formix-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--prx-text);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.formix-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--prx-border);
  border-radius: var(--prx-radius);
  color: var(--prx-text);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--prx-transition);
  outline: none;
}

.formix-input:focus {
  border-color: var(--prx-accent);
  background: rgba(108, 63, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(108, 63, 255, 0.15);
}

.formix-input::placeholder {
  color: var(--prx-muted);
}

.formix-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.formix-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--prx-muted);
  line-height: 1.5;
}

.formix-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--prx-accent);
  cursor: pointer;
}

.formix-check a {
  color: var(--prx-accent3);
  text-decoration: none;
}

.formix-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--prx-muted);
  font-size: 0.85rem;
}

.formix-divider::before,
.formix-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--prx-border);
}

.formix-link {
  text-align: center;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--prx-muted);
}

.formix-link a {
  color: var(--prx-accent3);
  text-decoration: none;
  font-weight: 600;
}

.formix-error {
  font-size: 0.8rem;
  color: var(--prx-accent2);
  margin-top: 5px;
}

/* ===================== PAGE HERO (inner pages) ===================== */

.innerpage-hero {
  padding-top: 72px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, rgba(108,63,255,0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--prx-border);
  text-align: center;
}

.innerpage-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--prx-white);
  margin-bottom: 16px;
  padding-top: 48px;
}

.innerpage-hero-sub {
  font-size: 1.05rem;
  color: var(--prx-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================== CONTENT PAGES ===================== */

.proseblock-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px;
}

.proseblock-wrap h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--prx-white);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--prx-border);
}

.proseblock-wrap h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--prx-text);
  margin: 28px 0 10px;
}

.proseblock-wrap p {
  font-size: 0.96rem;
  color: var(--prx-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.proseblock-wrap ul, .proseblock-wrap ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.proseblock-wrap li {
  font-size: 0.96rem;
  color: var(--prx-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.proseblock-date {
  font-size: 0.85rem;
  color: var(--prx-muted);
  margin-bottom: 40px;
  padding: 12px 20px;
  background: rgba(108, 63, 255, 0.08);
  border-left: 3px solid var(--prx-accent);
  border-radius: 0 8px 8px 0;
  display: inline-block;
}

/* ===================== FAQ ===================== */

.faqtrix-item {
  border: 1px solid var(--prx-border);
  border-radius: var(--prx-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--prx-transition);
}

.faqtrix-item.open {
  border-color: rgba(108, 63, 255, 0.4);
}

.faqtrix-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--prx-gradient-card);
  border: none;
  color: var(--prx-white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--prx-transition);
}

.faqtrix-question:hover {
  background: rgba(108, 63, 255, 0.1);
}

.faqtrix-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--prx-accent);
}

.faqtrix-item.open .faqtrix-arrow {
  transform: rotate(180deg);
}

.faqtrix-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faqtrix-item.open .faqtrix-answer {
  max-height: 300px;
}

.faqtrix-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--prx-muted);
  line-height: 1.7;
  background: rgba(0, 0, 0, 0.2);
}

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

.contakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contakt-info-card {
  background: var(--prx-gradient-card);
  border: 1px solid var(--prx-border);
  border-radius: var(--prx-radius-lg);
  padding: 36px;
}

.contakt-info-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--prx-white);
  margin-bottom: 24px;
}

.contakt-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--prx-border);
}

.contakt-info-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contakt-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(108, 63, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contakt-info-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--prx-white);
  margin-bottom: 3px;
}

.contakt-info-value {
  font-size: 0.88rem;
  color: var(--prx-muted);
}

/* ===================== COMMUNITY ===================== */

.komnity-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.komnity-post {
  background: var(--prx-gradient-card);
  border: 1px solid var(--prx-border);
  border-radius: var(--prx-radius-lg);
  padding: 24px;
  transition: var(--prx-transition);
}

.komnity-post:hover {
  border-color: rgba(108, 63, 255, 0.3);
}

.komnity-post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.komnity-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.komnity-user-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--prx-white);
}

.komnity-user-time {
  font-size: 0.78rem;
  color: var(--prx-muted);
}

.komnity-post-text {
  font-size: 0.92rem;
  color: var(--prx-text);
  line-height: 1.65;
  margin-bottom: 16px;
}

.komnity-post-actions {
  display: flex;
  gap: 20px;
}

.komnity-action-btn {
  background: none;
  border: none;
  color: var(--prx-muted);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--prx-transition);
  font-family: 'Inter', sans-serif;
}

.komnity-action-btn:hover {
  color: var(--prx-accent3);
}

/* ===================== GAME PAGE ===================== */

.gameplex-wrap {
  padding-top: 92px;
  min-height: 100vh;
}

.gameplex-header {
  background: rgba(26, 26, 62, 0.8);
  border-bottom: 1px solid var(--prx-border);
  padding: 16px 0;
}

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

.gameplex-title-area h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--prx-white);
}

.gameplex-title-area p {
  font-size: 0.8rem;
  color: var(--prx-muted);
}

.gameplex-coins {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 200, 66, 0.1);
  border: 1px solid rgba(245, 200, 66, 0.3);
  border-radius: 30px;
  padding: 8px 20px;
}

.gameplex-coins-icon { font-size: 1.2rem; }

.gameplex-coins-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--prx-gold);
}

.gameplex-coins-label {
  font-size: 0.75rem;
  color: var(--prx-muted);
}

.gameplex-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  padding: 24px 0;
  align-items: start;
}

.gameplex-main {
  background: var(--prx-gradient-card);
  border: 1px solid var(--prx-border);
  border-radius: var(--prx-radius-xl);
  overflow: hidden;
}

.gameplex-canvas-area {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a3e 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gameplex-canvas-area canvas {
  display: block;
  border-radius: 8px;
}

.gameplex-controls {
  padding: 24px;
  border-top: 1px solid var(--prx-border);
}

.gameplex-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.gameplex-bet-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gameplex-bet-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--prx-muted);
}

.gameplex-bet-btns {
  display: flex;
  gap: 6px;
}

.gameplex-bet-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--prx-border);
  color: var(--prx-text);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--prx-transition);
}

.gameplex-bet-btn:hover,
.gameplex-bet-btn.active {
  background: rgba(108, 63, 255, 0.2);
  border-color: var(--prx-accent);
  color: var(--prx-white);
}

.gameplex-action-btns {
  display: flex;
  gap: 12px;
}

.gameplex-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gameplex-info-panel {
  background: var(--prx-gradient-card);
  border: 1px solid var(--prx-border);
  border-radius: var(--prx-radius-lg);
  padding: 24px;
}

.gameplex-panel-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--prx-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gameplex-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
}

.gameplex-stat-row:last-child { border-bottom: none; }

.gameplex-stat-key { color: var(--prx-muted); }

.gameplex-stat-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--prx-white);
}

.gameplex-stat-val.win { color: var(--prx-success); }
.gameplex-stat-val.gold { color: var(--prx-gold); }

.gameplex-history {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 200px;
  overflow-y: auto;
}

.gameplex-history::-webkit-scrollbar { width: 4px; }
.gameplex-history::-webkit-scrollbar-track { background: transparent; }
.gameplex-history::-webkit-scrollbar-thumb { background: var(--prx-border); border-radius: 2px; }

.gameplex-hist-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
}

.gameplex-hist-label { color: var(--prx-muted); }
.gameplex-hist-win { color: var(--prx-success); font-weight: 600; }
.gameplex-hist-lose { color: var(--prx-accent2); font-weight: 600; }

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

.aboutpage-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.aboutpage-team-card {
  background: var(--prx-gradient-card);
  border: 1px solid var(--prx-border);
  border-radius: var(--prx-radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--prx-transition);
}

.aboutpage-team-card:hover {
  border-color: rgba(108, 63, 255, 0.4);
  transform: translateY(-4px);
}

.aboutpage-team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--prx-deep);
}

.aboutpage-team-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--prx-white);
  margin-bottom: 4px;
}

.aboutpage-team-role {
  font-size: 0.8rem;
  color: var(--prx-muted);
}

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

.nexfooter-wrap {
  background: rgba(5, 5, 15, 0.95);
  border-top: 1px solid var(--prx-border);
  padding: 72px 0 0;
  position: relative;
  z-index: 1;
}

.nexfooter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.nexfooter-brand-desc {
  font-size: 0.88rem;
  color: var(--prx-muted);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.nexfooter-social {
  display: flex;
  gap: 10px;
}

.nexfooter-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--prx-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  color: var(--prx-muted);
  transition: var(--prx-transition);
}

.nexfooter-social-btn:hover {
  background: rgba(108, 63, 255, 0.2);
  border-color: var(--prx-accent);
  color: var(--prx-white);
}

.nexfooter-col-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--prx-white);
  margin-bottom: 20px;
}

.nexfooter-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nexfooter-links a {
  font-size: 0.88rem;
  color: var(--prx-muted);
  text-decoration: none;
  transition: var(--prx-transition);
}

.nexfooter-links a:hover {
  color: var(--prx-white);
  padding-left: 4px;
}

.nexfooter-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--prx-muted);
}

.nexfooter-contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.nexfooter-bottom {
  border-top: 1px solid var(--prx-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.nexfooter-bottom-left {
  font-size: 0.82rem;
  color: var(--prx-muted);
}

.nexfooter-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nexfooter-bottom-right a {
  font-size: 0.82rem;
  color: var(--prx-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nexfooter-bottom-right a:hover {
  color: var(--prx-white);
}

.nexfooter-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.nexfooter-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.nexfooter-badge-18 {
  background: rgba(255, 63, 142, 0.15);
  border: 1px solid rgba(255, 63, 142, 0.4);
  color: var(--prx-accent2);
}

.nexfooter-badge-rp {
  background: rgba(63, 207, 255, 0.1);
  border: 1px solid rgba(63, 207, 255, 0.3);
  color: var(--prx-accent3);
}

.nexfooter-badge-free {
  background: rgba(63, 207, 127, 0.1);
  border: 1px solid rgba(63, 207, 127, 0.3);
  color: var(--prx-success);
}

/* ===================== MISC ELEMENTS ===================== */

.shimmer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--prx-accent) 30%, var(--prx-gold) 50%, var(--prx-accent2) 70%, transparent 100%);
  margin: 0;
  opacity: 0.4;
}

.sparkle-list {
  list-style: none;
  padding: 0;
}

.sparkle-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.94rem;
  color: var(--prx-muted);
  line-height: 1.6;
}

.sparkle-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--prx-gold);
  font-size: 0.7rem;
  top: 11px;
}

.highlight-box {
  background: rgba(108, 63, 255, 0.08);
  border: 1px solid rgba(108, 63, 255, 0.2);
  border-left: 4px solid var(--prx-accent);
  border-radius: 0 var(--prx-radius) var(--prx-radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.highlight-box p {
  font-size: 0.92rem;
  color: var(--prx-text);
  margin: 0;
}

.warn-box {
  background: rgba(255, 140, 63, 0.08);
  border: 1px solid rgba(255, 140, 63, 0.3);
  border-left: 4px solid var(--prx-warn);
  border-radius: 0 var(--prx-radius) var(--prx-radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.warn-box p {
  font-size: 0.92rem;
  color: rgba(255, 180, 100, 0.9);
  margin: 0;
}

/* invisible structural filler elements */
.ztxp-phantom-block {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.qrmvx-spacer-node { display: none; }

.wvlkr-ghost-layer {
  position: fixed;
  z-index: -9999;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}

.dxynp-anchor-wrap {
  display: contents;
}

.bfgtq-textnode-hidden {
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden;
  display: block;
}

.vrxkm-null-container {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
  overflow: hidden;
  display: block;
}

.plmqz-overlay-sink {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
}

/* ===================== MARQUEE / TICKER ===================== */

.marqex-ticker {
  background: rgba(108, 63, 255, 0.08);
  border-top: 1px solid rgba(108, 63, 255, 0.2);
  border-bottom: 1px solid rgba(108, 63, 255, 0.2);
  overflow: hidden;
  padding: 10px 0;
}

.marqex-track {
  display: flex;
  gap: 60px;
  animation: marqex-scroll 30s linear infinite;
  white-space: nowrap;
}

@keyframes marqex-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marqex-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--prx-muted);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.marqex-item span {
  color: var(--prx-gold);
}

.marqex-dot {
  width: 4px;
  height: 4px;
  background: var(--prx-accent);
  border-radius: 50%;
}

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

@media (max-width: 1100px) {
  .draxel-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .draxel-hero-visual { display: none; }
  .plexor-features-wrap { grid-template-columns: 1fr; gap: 40px; }
  .nexfooter-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .luxtrix-games-grid { grid-template-columns: repeat(2, 1fr); }
  .rynox-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contakt-grid { grid-template-columns: 1fr; gap: 32px; }
  .aboutpage-team-grid { grid-template-columns: repeat(2, 1fr); }
  .gameplex-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .zynthar-nav-links { display: none; }
  .zynthar-nav-actions .quovix-btn { display: none; }
  .zynthar-hamburger { display: flex; }
  .myndra-grid-3 { grid-template-columns: 1fr; }
  .myndra-grid-2 { grid-template-columns: 1fr; }
  .myndra-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .luxtrix-games-grid { grid-template-columns: 1fr; }
  .rynox-testimonials-grid { grid-template-columns: 1fr; }
  .vektrum-banner { padding: 36px 24px; }
  .nexfooter-grid { grid-template-columns: 1fr; gap: 32px; }
  .nexfooter-bottom { flex-direction: column; text-align: center; }
  .formix-wrap { padding: 32px 24px; }
  .formix-row { grid-template-columns: 1fr; }
  .draxel-hero-stats { flex-wrap: wrap; gap: 20px; }
  .aboutpage-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .veltrox-container { padding: 0 16px; }
  .myndra-grid-4 { grid-template-columns: 1fr; }
  .aboutpage-team-grid { grid-template-columns: 1fr; }
  .gameplex-controls-row { flex-direction: column; align-items: flex-start; }
}