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

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  /* Colors */
  --color-bg: #060313;
  --color-bg-card: #0d0824;
  --color-primary: #fff200; /* Neon Yellow */
  --color-primary-dark: #ccbf00;
  --color-secondary: #ff0055; /* Neon Pink/Red */
  --color-text: #eae6fa;
  --color-text-muted: #8c82b5;
  
  /* Neon Accents */
  --color-neon-yellow: #fff200;
  --color-neon-pink: #ff0055;
  --color-neon-green: #00ff99;
  --color-neon-purple: #a800ff;
  --color-neon-cyan: #00e5ff;
  --color-neon-orange: #ff7700;
  
  /* Fonts */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
}

/* --- RESET & BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg);
}

body {
  background-color: var(--color-bg);
  background-image: 
    linear-gradient(rgba(6, 3, 19, 0.95), rgba(6, 3, 19, 0.95)),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, 0.015) 60px, rgba(255, 255, 255, 0.015) 120px);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
  border-left: 2px solid rgba(255, 255, 255, 0.05);
}
::-webkit-scrollbar-thumb {
  background: #19123c;
  border: 3px solid var(--color-bg);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* --- GLOBAL HEADER (YELLOW BANNER) --- */
.header-banner {
  background-color: var(--color-primary);
  color: #000;
  padding: 10px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid #000;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-badge {
  background-color: var(--color-secondary);
  color: #fff;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 1px;
  border: 2px solid #000;
  transform: skewX(-10deg);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 2px 2px 0px #000;
  transition: var(--transition-fast);
}

.logo-badge img {
  height: 36px;
  width: 36px;
  border-radius: 4px;
  border: 1px solid #000;
}

.logo-container:hover .logo-badge {
  transform: skewX(-10deg) scale(1.03);
  background-color: #ff1a6c;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.nav-link {
  color: #000;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 4px 8px;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 3px;
  background-color: #000;
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background-color: #000;
  color: var(--color-primary);
  border: 2px solid #000;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 8px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  text-decoration: none;
}

.nav-cta:hover {
  background-color: #1a1a1a;
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
  z-index: 102;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 5px 0;
  transition: var(--transition-normal);
}

/* --- HERO SECTION --- */
.hero {
  padding: 80px 4% 60px 4%;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-badge {
  background-color: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.status-pulse {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--color-primary);
  text-shadow: 4px 4px 0px var(--hero-accent-color, var(--color-secondary)), 8px 8px 0px #000;
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: titleslide 1s ease-out;
  word-break: normal;
  overflow-wrap: normal;
  max-width: 100%;
}

@keyframes titleslide {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4vw, 2.2rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 15px;
  transform: skewX(-5deg);
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.hero-desc {
  max-width: 600px;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* --- SECTION LABELS --- */
.section-label {
  display: inline-block;
  background-color: transparent;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.6rem;
  text-transform: uppercase;
  border: 3px solid var(--color-primary);
  padding: 6px 20px;
  margin: 40px auto 30px auto;
  box-shadow: 4px 4px 0px #000;
  transform: skewX(-10deg);
}

/* --- GRID LAYOUTS --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4% 80px 4%;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

/* --- ABOUT US: CORE DATA BOX STYLES --- */
.core-data-box {
  background-color: var(--color-bg-card);
  border: 3px solid var(--color-primary);
  padding: clamp(24px, 4vw, 36px);
  border-radius: 4px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.6),
    inset 0 0 20px rgba(255, 242, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.core-data-box:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(255, 242, 0, 0.25),
    inset 0 0 25px rgba(255, 242, 0, 0.12);
}

.core-data-badge {
  position: absolute;
  top: -16px;
  left: 20px;
  background-color: var(--color-secondary);
  color: #fff;
  padding: 4px 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #000;
  box-shadow: 2px 2px 0px #000;
  transform: skewX(-10deg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.core-data-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px #fff;
}

.core-data-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #ffffff;
  margin-top: 6px;
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.core-data-brand {
  color: var(--color-primary);
  font-weight: 900;
  text-shadow: 0 0 10px rgba(255, 242, 0, 0.4);
}

.core-data-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text);
  line-height: 1.7;
  border-left: 3px solid var(--color-secondary);
  padding: 10px 16px;
  margin-top: 14px;
  font-style: italic;
  background: rgba(255, 0, 85, 0.05);
  border-radius: 0 4px 4px 0;
}

/* --- THE FIGHTER CARDS (Inspired by Debate Forge) --- */
.fighter-card {
  background-color: var(--color-bg-card);
  border: 3px solid var(--accent-color, var(--color-neon-yellow));
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  box-shadow: 
    0px 10px 20px rgba(0, 0, 0, 0.4),
    inset 0 0 15px rgba(var(--accent-color-rgb, 255, 242, 0), 0.1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.fighter-card::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  border: 3px solid var(--accent-color, var(--color-neon-yellow));
  border-radius: 4px;
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.fighter-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0px 15px 30px rgba(0, 0, 0, 0.6),
    0px 0px 20px var(--accent-color, var(--color-neon-yellow));
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--accent-color, var(--color-neon-yellow));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-color, var(--color-neon-yellow));
  overflow: hidden;
  flex-shrink: 0;
}

.card-icon img,
.card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-title-group {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--accent-color, var(--color-neon-yellow));
}

.card-subtitle {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

/* Card Body */
.card-body {
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-bio {
  margin-bottom: 12px;
}

.bio-content {
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: pre-line;
  transition: all 0.3s ease;
}

.bio-content.is-truncated {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bio-toggle-btn {
  background: transparent;
  border: none;
  color: var(--accent-color, var(--color-neon-yellow));
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.bio-toggle-btn:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--accent-color, var(--color-neon-yellow));
}

/* Card Stats */
.card-stats {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 2px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.stat-val {
  background-color: var(--accent-color, var(--color-neon-yellow));
  color: #000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 2px;
  box-shadow: 1px 1px 0px #000;
}

/* Card Quote/Highlight */
.card-quote {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  border-left: 2px solid var(--accent-color, var(--color-neon-yellow));
  padding-left: 10px;
  margin-top: 10px;
}

/* Card Action */
.card-action {
  margin-top: 15px;
}

.btn-card {
  width: 100%;
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--accent-color, var(--color-neon-yellow));
  padding: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 2px;
}

.btn-card:hover {
  background-color: var(--accent-color, var(--color-neon-yellow));
  color: #000;
  font-weight: 900;
  box-shadow: 0 0 10px var(--accent-color, var(--color-neon-yellow));
}

.btn-card.btn-no-link:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--color-text-muted) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* --- SMART GAME DOWNLOAD SPLIT BUTTON & DROPDOWN --- */
.game-download-control {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  border-radius: 4px;
  z-index: 10;
}

.game-download-control.split-dropdown.is-open {
  z-index: 999;
}

.fighter-card:has(.split-dropdown.is-open) {
  z-index: 50;
}

.game-download-control.featured-control {
  display: flex;
  width: 100%;
}

.btn-download-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: var(--accent-color, var(--color-neon-yellow));
  border: 1.5px solid var(--accent-color, var(--color-neon-yellow));
  border-radius: 4px;
  color: #000;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.32, 0.72, 0, 1);
  white-space: nowrap;
}

.featured-control .btn-download-primary {
  flex: 1;
}

.accent-red .btn-download-primary,
.accent-purple .btn-download-primary {
  color: #fff;
}

.split-dropdown .btn-download-primary {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}

.accent-red .split-dropdown .btn-download-primary,
.accent-purple .split-dropdown .btn-download-primary {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-download-primary:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 16px var(--accent-color, var(--color-neon-yellow));
  transform: translateY(-1px);
}

.btn-download-primary:active {
  transform: translateY(0);
}

.btn-download-primary .download-os-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-download-primary .download-os-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Split dropdown toggle button */
.btn-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  background-color: var(--accent-color, var(--color-neon-yellow));
  border: 1.5px solid var(--accent-color, var(--color-neon-yellow));
  border-left: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
}

.accent-red .btn-dropdown-toggle,
.accent-purple .btn-dropdown-toggle {
  color: #fff;
}

.btn-dropdown-toggle:hover {
  filter: brightness(1.18);
  box-shadow: 0 0 14px var(--accent-color, var(--color-neon-yellow));
}

.dropdown-caret {
  transition: transform 0.2s cubic-bezier(0.32, 0.72, 0, 1);
}

.split-dropdown.is-open .dropdown-caret {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.download-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 235px;
  background: rgba(10, 6, 20, 0.98);
  border: 1.5px solid var(--accent-color, var(--color-neon-yellow));
  border-radius: 4px;
  padding: 6px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.9), 0 0 14px rgba(var(--accent-color-rgb, 255, 242, 0), 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 4px;
  animation: dropdownFadeIn 0.18s cubic-bezier(0.32, 0.72, 0, 1);
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split-dropdown.is-open .download-dropdown-menu {
  display: flex;
}

.dropdown-header {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-text-muted, #a0a0b0);
  padding: 5px 8px 4px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2px;
}

.dropdown-items {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  outline: none;
  transition: all 0.15s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color, var(--color-neon-yellow));
  transform: translateX(2px);
}

.dropdown-item.is-active {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.dropdown-item .item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--accent-color, var(--color-neon-yellow));
  flex-shrink: 0;
}

.dropdown-item .item-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.dropdown-item .item-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.dropdown-item .item-name {
  white-space: nowrap;
}

.item-active-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  padding: 2px 7px;
  background: rgba(var(--accent-color-rgb, 255, 0, 85), 0.15);
  color: var(--accent-color, var(--color-neon-yellow));
  border: 1px solid var(--accent-color, var(--color-neon-yellow));
  border-radius: 2px;
  margin-left: auto;
  text-transform: uppercase;
  box-shadow: 0 0 8px rgba(var(--accent-color-rgb, 255, 0, 85), 0.25);
  line-height: 1.2;
}

.accent-red .item-active-indicator {
  color: #ff3366;
  border-color: #ff3366;
  background: rgba(255, 51, 102, 0.18);
  box-shadow: 0 0 8px rgba(255, 51, 102, 0.35);
}

.accent-purple .item-active-indicator {
  color: #b042ff;
  border-color: #b042ff;
  background: rgba(176, 66, 255, 0.18);
  box-shadow: 0 0 8px rgba(176, 66, 255, 0.35);
}

.item-active-indicator .arcade-arrow {
  font-size: 0.55rem;
  display: inline-block;
  animation: arcadeCursorPulse 0.9s infinite alternate ease-in-out;
}

@keyframes arcadeCursorPulse {
  0% { transform: translateX(0); opacity: 0.7; }
  100% { transform: translateX(2px); opacity: 1; }
}

/* Legacy support */
.platform-downloads-wrap {
  display: none !important;
}

/* --- HORIZONTAL SCROLL GALLERY FOR CARDS --- */
.card-gallery-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 2px 12px 2px;
  margin-top: 15px;
  margin-bottom: 15px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color, var(--color-primary)) rgba(0, 0, 0, 0.3);
  -webkit-overflow-scrolling: touch;
}

.card-gallery-scroll::-webkit-scrollbar {
  height: 6px;
}

.card-gallery-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.card-gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-color, var(--color-primary));
  border-radius: 3px;
}

.gallery-scroll-item {
  flex: 0 0 320px;
  height: 190px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-color: #000;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 768px) {
  .gallery-scroll-item {
    flex: 0 0 240px;
    height: 145px;
  }
}

.gallery-scroll-item:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--accent-color, var(--color-primary));
  box-shadow: 0 0 16px rgba(var(--accent-color-rgb, 255, 242, 0), 0.5);
}

.gallery-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- COLOR CLASS ASSIGNMENTS --- */
.accent-yellow {
  --accent-color: var(--color-neon-yellow);
  --accent-color-rgb: 255, 242, 0;
}
.accent-red {
  --accent-color: var(--color-neon-pink);
  --accent-color-rgb: 255, 0, 85;
}
.accent-green {
  --accent-color: var(--color-neon-green);
  --accent-color-rgb: 0, 255, 153;
}
.accent-purple {
  --accent-color: var(--color-neon-purple);
  --accent-color-rgb: 168, 0, 255;
}
.accent-cyan {
  --accent-color: var(--color-neon-cyan);
  --accent-color-rgb: 0, 229, 255;
}
.accent-orange {
  --accent-color: var(--color-neon-orange);
  --accent-color-rgb: 255, 119, 0;
}

/* --- FOOTER --- */
.footer {
  background-color: #03010b;
  border-top: 4px solid #000;
  padding: 40px 4% 20px 4%;
  color: var(--color-text-muted);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-info {
  flex: 1 1 300px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--color-primary);
  color: #000;
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  font-family: var(--font-display);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}

/* --- DYNAMIC UTILITIES --- */

/* Live Stream Widget */
.live-stream-container {
  background-color: var(--color-bg-card);
  border: 3px solid #000;
  border-left: 6px solid var(--color-neon-pink);
  padding: 12px 18px;
  max-width: 720px;
  margin: 15px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  position: relative;
  border-radius: 4px;
}

.live-stream-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-stream-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--color-neon-pink);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.live-stream-info h5 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.live-stream-info p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.btn-live {
  background-color: var(--color-neon-pink);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition-fast);
  box-shadow: 2px 2px 0px #000;
}

.btn-live:hover {
  background-color: #ff3377;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0px #000;
}

/* Page Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-bg);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 900;
  font-style: italic;
  color: var(--color-primary);
  text-shadow: 4px 4px 0 var(--color-secondary);
  letter-spacing: -1px;
  animation: glitch 1s infinite alternate;
  text-align: center;
  max-width: 90vw;
  word-break: normal;
  overflow-wrap: normal;
  white-space: nowrap;
}

.loader-bar-bg {
  width: 250px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background-color: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
  transition: width 0.25s ease-out;
}

@keyframes load {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes glitch {
  0% { transform: translate(0); text-shadow: 3px 3px 0 var(--color-secondary); }
  20% { transform: translate(-2px, 2px); text-shadow: -3px -3px 0 var(--color-neon-cyan); }
  40% { transform: translate(1px, -1px); text-shadow: 3px -3px 0 var(--color-neon-green); }
  60% { transform: translate(-1px, 1px); text-shadow: -3px 3px 0 var(--color-neon-purple); }
  80% { transform: translate(2px, -2px); text-shadow: 3px 3px 0 var(--color-secondary); }
  100% { transform: translate(0); text-shadow: -3px -3px 0 var(--color-neon-cyan); }
}

/* --- RESPONSIBILITY BREAKPOINTS --- */
@media (max-width: 900px) {
  .hero-title {
    font-size: clamp(2rem, 6vw, 3.6rem) !important;
    text-shadow: 3px 3px 0px var(--hero-accent-color, var(--color-secondary)), 6px 6px 0px #000 !important;
  }
  
  .hero-subtitle {
    font-size: clamp(1.1rem, 3.5vw, 1.5rem) !important;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .header-banner {
    padding: 10px 15px;
  }
  
  .logo-badge {
    font-size: 1.3rem;
    padding: 6px 12px;
  }
  
  .logo-badge img {
    height: 30px;
    width: 30px;
  }

  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 59px;
    left: 0;
    width: 100%;
    height: calc(100vh - 59px);
    background-color: var(--color-primary);
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    transform: translateY(-120%);
    transition: transform var(--transition-normal) cubic-bezier(0.77, 0.2, 0.05, 1.0);
    border-bottom: 4px solid #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }
  
  .nav-menu.open {
    transform: translateY(0);
  }
  
  .nav-link {
    font-size: 1.4rem;
  }
  
  .nav-cta {
    background-color: #000;
    color: var(--color-primary);
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 12px;
  }
  
  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .live-stream-container {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .live-stream-content {
    flex-direction: column;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-split-layout {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    text-align: left !important;
  }

  .hero-split-layout > div:first-child {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .hero-split-layout .hero-title {
    text-align: left !important;
    margin-left: 0 !important;
  }

  .hero-mascot-container {
    flex: 0 0 auto !important;
    width: 170px !important;
    max-width: 44vw !important;
    margin: 0 !important;
  }

  .hero-mascot-container div {
    width: 160px !important;
    height: 160px !important;
  }

  .hero-mascot-img {
    max-width: 150px !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .loader-logo {
    font-size: clamp(1.6rem, 7.5vw, 2.2rem) !important;
    text-shadow: 2px 2px 0 var(--color-secondary);
    letter-spacing: 0px;
  }

  .loader-bar-bg {
    width: 180px;
  }

  .hero-title {
    font-size: clamp(1.3rem, 6vw, 2rem) !important;
    text-shadow: 1.5px 1.5px 0px var(--hero-accent-color, var(--color-secondary)), 3px 3px 0px #000 !important;
    letter-spacing: -0.5px;
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 0.75rem !important;
    letter-spacing: 0px;
  }

  .hero-mascot-container {
    width: 140px !important;
    max-width: 42vw !important;
  }

  .hero-mascot-container div {
    width: 135px !important;
    height: 135px !important;
  }

  .hero-mascot-img {
    max-width: 125px !important;
  }

  .logo-badge {
    font-size: 1.1rem;
    padding: 5px 10px;
    letter-spacing: 0.5px;
  }

  .logo-badge img {
    height: 24px;
    width: 24px;
  }

  .status-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    margin-bottom: 12px;
  }

  .section-label {
    font-size: 1.1rem;
    padding: 5px 12px;
    letter-spacing: 0px;
  }

  .fighter-card {
    padding: 18px;
  }

  .arcade-modal-content {
    padding: 12px;
  }

  .arcade-screen {
    height: 320px;
  }
}

/* --- MASCOT STYLING --- */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-mascot-img {
  animation: bounce 3s infinite ease-in-out;
}

/* --- CYBERPUNK IMAGE GALLERY LIGHTBOX --- */
.gallery-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(2, 1, 8, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.open {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-content {
  background-color: #03010b;
  border: 3px solid #000;
  border-top: 30px solid var(--accent-color, var(--color-neon-yellow));
  box-shadow: 0 0 45px rgba(var(--accent-color-rgb, 255, 242, 0), 0.35);
  border-radius: 4px;
  width: 95vw;
  max-width: 1200px;
  max-height: 92vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(25px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.gallery-modal-header {
  position: absolute;
  top: -24px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.gallery-modal-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: #000;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
}

.gallery-modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #000;
  border: 2px solid var(--accent-color, var(--color-neon-yellow));
  color: var(--accent-color, var(--color-neon-yellow));
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 2px;
  font-weight: bold;
  z-index: 10;
  transition: var(--transition-fast);
}

.gallery-modal-close-btn:hover {
  background-color: var(--accent-color, var(--color-neon-yellow));
  color: #000;
  box-shadow: 0 0 10px var(--accent-color, var(--color-neon-yellow));
}

.gallery-slideshow-container {
  position: relative;
  width: 100%;
  height: clamp(380px, 68vh, 720px);
  background-color: #020108;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.gallery-slide-img {
  max-width: 96%;
  max-height: 96%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  border: 2px solid #000;
  border-radius: 2px;
}

.gallery-slide-img.active {
  opacity: 1;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  border: 2px solid var(--accent-color, var(--color-neon-yellow));
  color: var(--accent-color, var(--color-neon-yellow));
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 2px;
  z-index: 5;
  transition: var(--transition-fast);
}

.gallery-nav-btn:hover {
  background-color: var(--accent-color, var(--color-neon-yellow));
  color: #000;
  box-shadow: 0 0 10px var(--accent-color, var(--color-neon-yellow));
}

.gallery-nav-btn.prev {
  left: 20px;
}

.gallery-nav-btn.next {
  right: 20px;
}

.gallery-modal-footer {
  padding: 15px 25px;
  background-color: #03010b;
  border-top: 3px solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
}

.gallery-caption {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.gallery-counter {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-family: 'Courier New', Courier, monospace;
}

/* --- FOOTER DEEP LINK HIGHLIGHTING --- */
@keyframes highlightFlash {
  0% {
    box-shadow: 0 0 0 rgba(255, 242, 0, 0);
    border-color: #000;
  }
  20% {
    box-shadow: 0 0 35px var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 242, 0, 0);
    border-color: #000;
    transform: scale(1);
  }
}

.card-highlight-flash {
  animation: highlightFlash 2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

/* --- FLOATING ARCADE CLICKER LAUNCHER --- */
.floating-arcade-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #020108;
  border: 3px solid var(--color-neon-yellow);
  color: var(--color-neon-yellow);
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 242, 0, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: arcadePulse 2s infinite ease-in-out;
  user-select: none;
  -webkit-user-select: none;
}

@keyframes arcadePulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 242, 0, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 242, 0, 0.8);
    transform: scale(1.08) rotate(10deg);
  }
}

.floating-arcade-btn:hover {
  background-color: var(--color-neon-yellow);
  color: #000;
  box-shadow: 0 0 30px var(--color-neon-yellow);
  transform: scale(1.15) rotate(-10deg);
}

/* --- RETRO ARCADE CABINET MODAL --- */
.arcade-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(2, 1, 8, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.arcade-modal.open {
  opacity: 1;
  visibility: visible;
}

.arcade-modal-content {
  background-color: #03010b;
  border: 4px solid #000;
  border-top: 35px solid var(--color-neon-yellow);
  box-shadow: 0 0 45px rgba(255, 242, 0, 0.3);
  border-radius: 4px;
  width: 95%;
  max-width: 680px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  animation: modalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.arcade-screen {
  background-color: #020108;
  border: 3px solid #000;
  border-radius: 4px;
  width: 100%;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.arcade-canvas {
  width: 100%;
  height: 100%;
  background-color: #020108;
  display: block;
}

.arcade-btn-back {
  background-color: #000;
  border: 2px solid var(--color-neon-pink);
  color: var(--color-neon-pink);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 6px 14px;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition-fast);
  text-transform: uppercase;
}

.arcade-btn-back:hover {
  background-color: var(--color-neon-pink);
  color: #000;
  box-shadow: 0 0 10px var(--color-neon-pink);
}

/* Menu Layout */
.arcade-menu-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 80%;
  max-width: 400px;
}

.arcade-menu-item {
  background-color: #03010b;
  border: 3px solid #000;
  border-left: 8px solid var(--accent-color, var(--color-neon-yellow));
  border-radius: 2px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

.arcade-menu-item:hover {
  transform: scale(1.04) translateX(5px);
  box-shadow: 0 0 15px rgba(var(--accent-color-rgb), 0.25);
  border-color: var(--accent-color);
}

.arcade-menu-item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.arcade-menu-item-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 1px;
}

.arcade-menu-item-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.arcade-menu-score {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: bold;
}

/* Tic-Tac-Toe Styling */
.ttt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  width: 260px;
  height: 260px;
  background-color: #000;
}

.ttt-cell {
  background-color: #020108;
  border: 2px solid #110d29;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.ttt-cell:hover {
  background-color: #0c0926;
  border-color: var(--color-neon-yellow);
}

.ttt-cell.x {
  color: var(--color-neon-pink);
  text-shadow: 0 0 10px rgba(255, 0, 85, 0.6);
}

.ttt-cell.o {
  color: var(--color-neon-cyan);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.arcade-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(2, 1, 8, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.arcade-overlay-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-neon-pink);
  text-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
  letter-spacing: 2px;
}

.arcade-btn-action {
  background-color: var(--color-neon-yellow);
  color: #000;
  border: 2px solid #000;
  font-family: var(--font-display);
  font-weight: 900;
  padding: 10px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 242, 0, 0.4);
  transition: var(--transition-fast);
  text-transform: uppercase;
}

.arcade-btn-action:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--color-neon-yellow);
}

/* --- RETRO CYBER HUD CUSTOM CURSOR ENGINE --- */
@media (pointer: fine) {
  html, body, a, button, input, textarea, select, label {
    cursor: none !important;
  }

  /* Core Precision Pointer (Hardware 1:1, Zero Lag Hotspot) */
  .custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--color-neon-yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 0 8px var(--color-neon-yellow), 0 0 16px var(--color-neon-pink);
    transition: width 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
                height 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
                background-color 0.2s ease,
                border-radius 0.2s ease,
                box-shadow 0.2s ease,
                opacity 0.25s ease;
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Tiny Inner Pin (100% Crisp Target Center) */
  .custom-cursor-dot::after {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 4px #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  /* Cyber Reticle Follower Ring */
  .custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px dashed var(--color-neon-pink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.35);
    transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                height 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                border-color 0.25s ease, 
                border-style 0.25s ease,
                background-color 0.25s ease,
                box-shadow 0.25s ease,
                opacity 0.3s ease;
    will-change: transform;
  }

  /* HUD Corner Notch Accents on Ring */
  .custom-cursor-ring::before,
  .custom-cursor-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid transparent;
    pointer-events: none;
    transition: all 0.25s ease;
  }

  .custom-cursor-ring::before {
    border-top-color: var(--color-neon-yellow);
    border-bottom-color: var(--color-neon-yellow);
    border-radius: 50%;
  }

  .custom-cursor-ring::after {
    border-left-color: var(--color-neon-pink);
    border-right-color: var(--color-neon-pink);
    border-radius: 50%;
  }

  /* --- STATE 1: INTERACTIVE HOVER STATE (Buttons, Links, Cards) --- */
  body.cursor-hover .custom-cursor-ring {
    width: 48px;
    height: 48px;
    border-style: solid;
    border-color: var(--color-neon-cyan);
    background-color: rgba(0, 229, 255, 0.12);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.5), inset 0 0 12px rgba(0, 229, 255, 0.2);
  }

  body.cursor-hover .custom-cursor-ring::before {
    border-top-color: var(--color-neon-cyan);
    border-bottom-color: var(--color-neon-cyan);
    inset: -6px;
  }

  body.cursor-hover .custom-cursor-ring::after {
    border-left-color: var(--color-neon-yellow);
    border-right-color: var(--color-neon-yellow);
    inset: -6px;
  }

  body.cursor-hover .custom-cursor-dot {
    width: 12px;
    height: 12px;
    background-color: var(--color-neon-cyan);
    box-shadow: 0 0 14px var(--color-neon-cyan);
  }

  body.cursor-hover .custom-cursor-dot::after {
    transform: scale(1.3);
  }

  /* --- STATE 2: TEXT INPUT CURSOR STATE (Clear & Unambiguous I-Beam) --- */
  body.cursor-text .custom-cursor-dot {
    width: 4px;
    height: 22px;
    border-radius: 2px;
    background-color: var(--color-neon-yellow);
    box-shadow: 0 0 10px var(--color-neon-yellow);
  }

  body.cursor-text .custom-cursor-dot::after {
    opacity: 0;
  }

  body.cursor-text .custom-cursor-ring {
    width: 18px;
    height: 26px;
    border-radius: 4px;
    border-style: solid;
    border-color: rgba(255, 242, 0, 0.4);
    background-color: transparent;
    opacity: 0.3;
    box-shadow: none;
  }

  body.cursor-text .custom-cursor-ring::before,
  body.cursor-text .custom-cursor-ring::after {
    opacity: 0;
  }

  /* --- STATE 3: CLICK / ACTIVE SHOCKWAVE STATE --- */
  body.cursor-active .custom-cursor-ring {
    width: 28px;
    height: 28px;
    border-color: var(--color-neon-yellow);
    background-color: rgba(255, 242, 0, 0.25);
    box-shadow: 0 0 30px var(--color-neon-yellow);
  }

  body.cursor-active .custom-cursor-dot {
    transform: scale(0.85);
    background-color: #ffffff;
    box-shadow: 0 0 18px var(--color-neon-yellow);
  }

  /* Dynamic Click Ripple Shockwave */
  .custom-cursor-ripple {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%) scale(1);
    animation: cursorRippleAnim 0.38s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
  }

  @keyframes cursorRippleAnim {
    0% {
      width: 20px;
      height: 20px;
      opacity: 1;
      border-color: var(--color-neon-cyan);
      box-shadow: 0 0 15px var(--color-neon-cyan);
    }
    50% {
      border-color: var(--color-neon-pink);
    }
    100% {
      width: 65px;
      height: 65px;
      opacity: 0;
      border-color: var(--color-neon-yellow);
      box-shadow: 0 0 30px var(--color-neon-yellow);
    }
  }

  /* Continuous Laser Ribbon Line Trail Canvas */
  .custom-cursor-trail-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9997;
  }
}


