/* ============================================
   OUTBACK PULSE - MAIN STYLESHEET
   Mobile-first, dark sci-fi gaming theme
   ============================================ */

/* ============================================
   CSS VARIABLES & THEMES
   ============================================ */
:root {
  --background: #f0f4f8;
  --foreground: #0a0a1a;
  --card: #ffffff;
  --card-foreground: #0a0a1a;
  --popover: #ffffff;
  --popover-foreground: #0a0a1a;
  --primary: #ff6b2b;
  --primary-foreground: #ffffff;
  --secondary: #e8f4f8;
  --secondary-foreground: #0a1a2a;
  --muted: #e2eaf0;
  --muted-foreground: #4a6070;
  --accent: #00b8cc;
  --accent-foreground: #ffffff;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #c8d8e4;
  --input: #f0f4f8;
  --ring: #ff6b2b;

  /* Additional tokens */
  --header-height: 64px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
  --glow-primary: 0 0 20px rgba(255, 107, 43, 0.4);
  --glow-accent: 0 0 20px rgba(0, 184, 204, 0.4);
  --font-heading: 'Exo 2', system-ui, sans-serif;
  --font-ui: 'Rajdhani', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

[data-theme="dark"] {
  --background: #0a0a0f;
  --foreground: #e8edf2;
  --card: #10101a;
  --card-foreground: #e8edf2;
  --popover: #10101a;
  --popover-foreground: #e8edf2;
  --primary: #ff6b2b;
  --primary-foreground: #ffffff;
  --secondary: #0d1520;
  --secondary-foreground: #c8d8e8;
  --muted: #12182a;
  --muted-foreground: #7a9ab0;
  --accent: #00e5ff;
  --accent-foreground: #050510;
  --destructive: #c0392b;
  --destructive-foreground: #f8e8e8;
  --border: #1a2535;
  --input: #0d1220;
  --ring: #ff6b2b;

  --glow-primary: 0 0 24px rgba(255, 107, 43, 0.5);
  --glow-accent: 0 0 24px rgba(0, 229, 255, 0.5);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-heading);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 320px;
}

img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  max-width: 100%;
  box-sizing: border-box;
}

p, li, td, th {
  overflow-wrap: break-word;
}

pre, code {
  max-width: 100%;
  overflow-x: auto;
  font-family: var(--font-mono);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

h1 { font-size: clamp(1.75rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: 1rem; }

p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.accent-text {
  color: var(--primary);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.section-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .section-container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding: 0 3rem;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #e55a1e;
  border-color: #e55a1e;
  box-shadow: var(--glow-primary);
  outline: none;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-color: var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--muted);
  border-color: var(--accent);
  outline: none;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--foreground);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-glass:hover,
.btn-glass:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  box-shadow: var(--glow-accent);
  outline: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--glow-primary);
  outline: none;
}

.btn-card {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  min-height: 36px;
}

.btn-card:hover,
.btn-card:focus-visible {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--glow-accent);
  outline: none;
}

.btn-vault {
  background: linear-gradient(135deg, var(--primary), #e55a1e);
  color: var(--primary-foreground);
  border-color: var(--primary);
  font-size: 0.85rem;
}

.btn-vault:hover,
.btn-vault:focus-visible {
  box-shadow: var(--glow-primary);
  transform: translateY(-1px);
  outline: none;
}

.btn-sm {
  padding: 0.4rem 0.875rem;
  font-size: 0.8rem;
  min-height: 36px;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  min-height: 52px;
  border-radius: var(--radius-lg);
}

/* Focus visible for all interactive elements */
:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.label-dot.cyan {
  background: var(--accent);
}

.label-dot.orange {
  background: var(--primary);
}

.label-dot.blink {
  animation: blink 1.5s ease-in-out infinite;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

@keyframes pulse-ring {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes unlock-spin {
  0% { transform: rotate(0deg) scale(0.8); opacity: 0; }
  50% { transform: rotate(180deg) scale(1.1); opacity: 1; }
  100% { transform: rotate(360deg) scale(1); opacity: 1; }
}

@keyframes scanline-move {
  0% { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

@keyframes headline-fade {
  0% { opacity: 0; transform: translateY(10px); }
  15% { opacity: 1; transform: translateY(0); }
  85% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

[data-theme="light"] .site-header {
  background: rgba(240, 244, 248, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-height);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo .logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--foreground);
}

.logo-accent {
  color: var(--primary);
}

/* Desktop Nav */
.header-nav {
  display: none;
  flex: 1;
  justify-content: center;
}

.header-nav ul {
  display: flex;
  gap: 0.25rem;
}

.header-nav a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--muted-foreground);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--foreground);
  background: var(--muted);
}

/* Header Actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--muted);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  transition: all var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--foreground);
  border-color: var(--accent);
  box-shadow: var(--glow-accent);
}

[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
.icon-sun { display: none; }
.icon-moon { display: block; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--muted);
  border: 1px solid var(--border);
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow);
}

.mobile-menu.open {
  display: flex;
  max-height: 500px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  padding: 0.875rem 0.5rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
  display: block;
}

.mobile-menu a:hover {
  color: var(--foreground);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
}

.mobile-menu-actions .btn {
  justify-content: center;
  width: 100%;
}

/* Responsive Header */
@media (min-width: 768px) {
  .header-inner {
    padding: 0 2rem;
  }

  .header-actions {
    display: flex;
  }

  .theme-toggle {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .header-inner {
    padding: 0 3rem;
  }
}

/* ============================================
   HERO / PULSE GATEWAY
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--background);
}

/* Hero Background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 43, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 43, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: grid-pulse 4s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 43, 0.25) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation: float-orb 10s ease-in-out infinite 2s;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 43, 0.15) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: float-orb 6s ease-in-out infinite 4s;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Glass Panel */
.hero-glass {
  background: rgba(16, 16, 26, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 107, 43, 0.2);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 640px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .hero-glass {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 107, 43, 0.3);
}

.hero-headline {
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.headline-rotate {
  display: block;
  animation: headline-fade 5s ease-in-out;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-text-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  margin-bottom: 1.5rem;
}

.hero-text-link:hover {
  color: var(--primary);
}

/* Trust Signals */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  width: 100%;
  max-width: 540px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 107, 43, 0.25);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5), var(--glow-primary);
  object-fit: cover;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding: 4rem 3rem 3rem;
  }

  .hero-glass {
    flex: 0 0 auto;
    max-width: 560px;
  }

  .hero-visual {
    flex: 1;
    max-width: none;
  }
}

/* Ticker */
.ticker-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(10, 10, 20, 0.9);
  border-top: 1px solid rgba(255, 107, 43, 0.3);
  overflow: hidden;
  height: 44px;
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  background: rgba(255, 107, 43, 0.15);
  border-right: 1px solid rgba(255, 107, 43, 0.3);
  height: 100%;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: blink 1s ease-in-out infinite;
}

.ticker-inner {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}

.ticker-item {
  display: inline-block;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ticker-item.orange {
  color: var(--primary);
}

.ticker-item.white {
  color: var(--foreground);
}

.ticker-sep {
  display: inline-block;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.6rem;
  opacity: 0.6;
}

/* Hero Transition */
.hero-transition {
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--background));
  pointer-events: none;
}

/* ============================================
   GAME TERRITORIES
   ============================================ */
.territories-section {
  padding: 4rem 0;
  background: var(--background);
  position: relative;
}

/* Filter Panel */
.filter-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-pill {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
  min-height: 36px;
  transition: all var(--transition);
  cursor: pointer;
}

.filter-pill:hover,
.filter-pill:focus-visible {
  color: var(--foreground);
  border-color: var(--accent);
  outline: none;
}

.filter-pill.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sort-select {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--foreground);
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0.875rem;
  min-height: 44px;
  cursor: pointer;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9ab0' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

.sort-select:hover,
.sort-select:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.view-toggles {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.view-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--muted);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  transition: all var(--transition);
  min-height: 44px;
  min-width: 44px;
}

.view-toggle:hover,
.view-toggle:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
}

.view-toggle.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 540px) {
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Game Card */
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), var(--glow-primary);
}

.game-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--muted);
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.game-card:hover .game-card-img img {
  transform: scale(1.06);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 26, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

.game-tags-platform {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.platform-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: rgba(10, 10, 26, 0.85);
  color: var(--foreground);
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
}

.platform-tag.pc { border-color: #00e5ff; color: #00e5ff; }
.platform-tag.ps5 { border-color: #0070f3; color: #0070f3; }
.platform-tag.switch { border-color: #e4000f; color: #e4000f; }
.platform-tag.xbx { border-color: #52b043; color: #52b043; }

.game-badge {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.game-badge.indie {
  background: rgba(0, 229, 255, 0.2);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.game-badge.aaa {
  background: rgba(255, 107, 43, 0.2);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.game-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.game-genre {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--card-foreground);
  line-height: 1.3;
}

.game-desc {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  flex: 1;
}

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

.game-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.stars svg {
  color: #f59e0b;
}

.score {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Territory Sync */
.territory-sync {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sync-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.sync-header svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.sync-header h3 {
  font-size: 1.1rem;
  color: var(--card-foreground);
  margin-bottom: 0.25rem;
}

.sync-header p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.sync-moods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mood-btn {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 0.875rem;
  min-height: 36px;
  transition: all var(--transition);
}

.mood-btn:hover,
.mood-btn:focus-visible {
  color: var(--foreground);
  border-color: var(--primary);
  outline: none;
}

.mood-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* Catalog Actions */
.catalog-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.catalog-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.catalog-link:hover {
  color: var(--primary);
}

/* Editorial Note */
.editorial-note {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.editorial-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.editorial-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.editorial-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* ============================================
   COLLECTION VAULTS
   ============================================ */
.vaults-section {
  position: relative;
  padding: 4rem 0;
  background: var(--secondary);
  overflow: hidden;
}

.vaults-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vault-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.vault-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation: float-orb 12s ease-in-out infinite;
}

.vault-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 43, 0.1) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation: float-orb 9s ease-in-out infinite 3s;
}

.vaults-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.vaults-intro p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.vaults-intro strong {
  color: var(--foreground);
  font-weight: 700;
}

.vaults-intro em {
  color: var(--accent);
  font-style: normal;
}

/* Vaults Grid */
.vaults-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .vaults-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .vaults-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Vault Card */
.vault-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.vault-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), var(--glow-accent);
}

.vault-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--muted);
}

.vault-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.vault-card:hover .vault-cover img {
  transform: scale(1.06);
}

.vault-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 26, 0.85) 0%, rgba(10, 10, 26, 0.2) 60%, transparent 100%);
}

/* Vault cover accent colors */
.vault-cover-neon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.vault-cover-scifi::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.vault-cover-tactical::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.vault-cover-indie::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.vault-cover-openworld::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.vault-cover-retro::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.vault-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.vault-moods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.mood-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted-foreground);
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}

.vault-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--card-foreground);
  line-height: 1.3;
}

.vault-desc {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  flex: 1;
}

.vault-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vault-count {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.vault-count svg {
  color: var(--accent);
}

.vault-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.save-vault {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--muted);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  transition: all var(--transition);
  flex-shrink: 0;
  min-height: 44px;
  min-width: 44px;
}

.save-vault:hover,
.save-vault:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 107, 43, 0.1);
  outline: none;
}

.save-vault[data-saved="true"] {
  background: rgba(255, 107, 43, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

/* Related Vaults */
.related-vaults {
  margin-top: 1rem;
}

.related-vaults-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

.related-vaults-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.related-vaults-scroll::-webkit-scrollbar {
  height: 4px;
}

.related-vaults-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.related-vaults-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.related-vault-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 44px;
}

.related-vault-mini:hover,
.related-vault-mini:focus-visible {
  border-color: var(--accent);
  color: var(--foreground);
  outline: none;
}

.rmv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rmv-orange { background: var(--primary); }
.rmv-teal { background: var(--accent); }
.rmv-blue { background: #3b82f6; }
.rmv-yellow { background: #facc15; }
.rmv-green { background: #22c55e; }
.rmv-pink { background: #d946ef; }

/* Vault Overlay */
.vault-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 16, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vault-overlay.active {
  display: flex;
}

.vault-overlay-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.vault-unlock-anim {
  color: var(--accent);
  animation: unlock-spin 0.8s ease-in-out forwards;
}

.vault-unlock-anim svg {
  width: 64px;
  height: 64px;
}

.vault-unlock-text {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ============================================
   PULSE REPORTS
   ============================================ */
.reports-section {
  position: relative;
  padding: 4rem 0;
  background: var(--background);
  overflow: hidden;
}

.reports-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 229, 255, 0.015) 2px,
    rgba(0, 229, 255, 0.015) 4px
  );
  pointer-events: none;
  z-index: 0;
  animation: scanline-move 8s linear infinite;
}

.reports-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.reports-intro p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.reports-intro strong {
  color: var(--foreground);
  font-weight: 700;
}

/* Report Filters */
.report-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.report-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
  min-height: 36px;
  transition: all var(--transition);
  cursor: pointer;
}

.report-tag:hover,
.report-tag:focus-visible {
  border-color: var(--foreground);
  color: var(--foreground);
  outline: none;
}

.report-tag.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.rtag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-foreground);
  flex-shrink: 0;
}

.rtag-dot.blink { animation: blink 1s ease-in-out infinite; }
.rtag-dot.red { background: #ef4444; }
.rtag-dot.cyan { background: var(--accent); }
.rtag-dot.orange { background: var(--primary); }
.rtag-dot.yellow { background: #facc15; }
.rtag-dot.white { background: var(--foreground); }
.rtag-dot.green { background: #22c55e; }

/* Reports Grid */
.reports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .reports-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .reports-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .report-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: stretch;
  }
}

/* Report Card */
.report-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.report-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

/* Featured Report */
.report-img {
  position: relative;
  overflow: hidden;
  background: var(--muted);
  min-height: 240px;
}

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

.report-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 26, 0.8) 0%, rgba(10, 10, 26, 0.2) 100%);
}

@media (min-width: 1024px) {
  .report-img {
    min-height: 320px;
  }

  .report-img-overlay {
    background: linear-gradient(to right, transparent 0%, rgba(10, 10, 26, 0.9) 100%);
  }
}

.report-featured-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.report-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

/* Signal Badges */
.signal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.signal-badge.editors-pick {
  background: rgba(250, 204, 21, 0.2);
  color: #facc15;
  border: 1px solid #facc15;
}

.signal-badge.drop {
  background: rgba(0, 229, 255, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.signal-badge.new-vault-badge {
  background: rgba(0, 229, 255, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.signal-badge.trending-badge {
  background: rgba(255, 107, 43, 0.2);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.signal-badge.indie-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid #22c55e;
}

.signal-badge.live-badge {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid #ef4444;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blink-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: blink 0.8s ease-in-out infinite;
  flex-shrink: 0;
}

.report-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted-foreground);
  letter-spacing: 0.04em;
}

.report-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--card-foreground);
  line-height: 1.35;
}

.report-excerpt {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Regular report card */
.report-thumb {
  position: relative;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: var(--muted);
}

.report-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.report-card:hover .report-thumb img {
  transform: scale(1.05);
}

.report-thumb .signal-badge {
  position: absolute;
  bottom: 0.625rem;
  left: 0.625rem;
}

.report-body-sm {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.report-title-sm {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--card-foreground);
  line-height: 1.35;
}

.report-excerpt-sm {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  flex: 1;
}

.report-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  padding-top: 0.25rem;
}

.report-link:hover {
  color: var(--primary);
}

/* Signal Drop Block */
.signal-drop-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.signal-drop-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.drop-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.signal-drop-header h3 {
  font-size: 1rem;
  color: var(--card-foreground);
  margin-bottom: 0.2rem;
}

.signal-drop-header p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.drop-live-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ef4444;
  margin-left: auto;
  flex-shrink: 0;
}

.signal-drop-scroll {
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.signal-drop-scroll::-webkit-scrollbar {
  height: 4px;
}

.signal-drop-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.signal-drop-track {
  display: flex;
  gap: 1rem;
  min-width: max-content;
}

.drop-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 120px;
  flex-shrink: 0;
}

.drop-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.drop-card:hover img {
  border-color: var(--accent);
}

.drop-card-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--card-foreground);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.drop-card-genre {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted-foreground);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Reports Subscribe */
.reports-subscribe {
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.1) 0%, rgba(0, 229, 255, 0.08) 100%);
  border: 1px solid rgba(255, 107, 43, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.subscribe-content h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.35rem;
}

.subscribe-content p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 480px;
}

.subscribe-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  min-height: 48px;
}

.subscribe-form input[type="email"]::placeholder {
  color: var(--muted-foreground);
}

.subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 43, 0.2);
}

@media (min-width: 768px) {
  .reports-subscribe {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ============================================
   THE PULSE NETWORK
   ============================================ */
.network-section {
  position: relative;
  padding: 4rem 0;
  background: var(--secondary);
  overflow: hidden;
}

.network-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.network-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.network-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.network-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 43, 0.08) 0%, transparent 70%);
  top: -20%;
  left: -10%;
  animation: float-orb 15s ease-in-out infinite;
}

.network-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
  bottom: -10%;
  right: -5%;
  animation: float-orb 11s ease-in-out infinite 5s;
}

.network-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .network-layout {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }

  .network-left {
    flex: 1;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .network-right {
    flex: 1.1;
  }
}

/* Mission Quote */
.mission-quote {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.quote-mark {
  position: absolute;
  left: -0.25rem;
  top: -1rem;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  user-select: none;
}

.mission-text {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.25;
}

/* Principles Grid */
.principles-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.principle-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}

.principle-item:hover {
  border-color: var(--accent);
}

.principle-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.principle-item h3 {
  font-size: 0.95rem;
  color: var(--card-foreground);
  margin-bottom: 0.3rem;
}

.principle-item p {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Platform Language */
.platform-language {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.platform-language h3 {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.language-pills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lang-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  cursor: default;
}

.lang-pill:hover,
.lang-pill:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.pill-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted-foreground);
  min-width: 90px;
}

.pill-eq {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--border);
}

.pill-value {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* About Block */
.about-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-block h2 {
  font-size: 1.3rem;
  color: var(--card-foreground);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.about-block h3 {
  font-size: 0.95rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-block h3:first-of-type {
  margin-top: 0;
}

.about-block p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

.about-block strong {
  color: var(--foreground);
  font-weight: 700;
}

/* Platform Accordion */
.platform-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.accord-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.accord-item.is-expanded {
  border-color: var(--accent);
}

.accord-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--card-foreground);
  gap: 1rem;
  min-height: 56px;
  transition: background var(--transition);
}

.accord-btn:hover {
  background: var(--muted);
}

.accord-btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: -2px;
}

.accord-arrow {
  color: var(--muted-foreground);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accord-btn[aria-expanded="true"] .accord-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.accord-content {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition);
}

.accord-content:not([aria-hidden="true"]) {
  max-height: 300px;
  padding: 0 1.25rem 1.25rem;
}

.accord-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* Australian Spotlight */
.au-spotlight {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.au-spotlight-header {
  text-align: center;
  margin-bottom: 2rem;
}

.au-spotlight-header h3 {
  font-size: 1.2rem;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.au-spotlight-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.au-games {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .au-games {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.au-game-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.au-game-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.au-game-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.au-game-card:hover img {
  transform: scale(1.05);
}

.au-game-info {
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.au-game-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--card-foreground);
}

.au-game-studio {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
}

.au-game-stat {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted-foreground);
}

/* Network CTA Banner */
.network-cta-banner {
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.12) 0%, rgba(0, 229, 255, 0.08) 100%);
  border: 1px solid rgba(255, 107, 43, 0.3);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.cta-banner-content h2 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--foreground);
  margin-bottom: 0.625rem;
}

.cta-banner-content p {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.75rem;
}

.cta-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Pulse animation for label dot */
.pulse-anim {
  animation: pulse-ring 2s ease-in-out infinite;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  background: var(--card);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.footer-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* System Status Bar */
.system-status {
  background: rgba(0, 229, 255, 0.05);
  border-bottom: 1px solid var(--border);
  padding: 0.625rem 1rem;
  position: relative;
  z-index: 1;
}

.status-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.green {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

.status-dot.blink {
  animation: blink 1.5s ease-in-out infinite;
}

/* Footer Inner */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3rem 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 3rem 2rem 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem 3rem 2rem;
  }
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.footer-logo .logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  max-width: 260px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--muted);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--glow-primary);
  outline: none;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted-foreground);
}

/* Footer Nav Columns */
.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 1.25rem;
}

.footer-nav-col ul,
.footer-legal-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav-col a,
.footer-legal-col a {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color var(--transition);
  text-decoration: none;
  display: inline-block;
  padding: 0.125rem 0;
  min-height: 28px;
  line-height: 28px;
}

.footer-nav-col a:hover,
.footer-nav-col a:focus-visible,
.footer-legal-col a:hover,
.footer-legal-col a:focus-visible {
  color: var(--foreground);
  outline: none;
}

.affiliate-disclosure {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.affiliate-disclosure p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0 1rem;
  position: relative;
  z-index: 1;
}

/* Sub Footer */
.sub-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .sub-footer {
    justify-content: space-between;
    padding: 1.25rem 3rem;
  }
}

.sub-copy,
.sub-tagline,
.sub-right {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted-foreground);
  letter-spacing: 0.04em;
}

.sub-brand {
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   ANIMATIONS REVEALED BY JS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover,


/* Selection */
::selection {
  background: rgba(255, 107, 43, 0.3);
  color: var(--foreground);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* NORTHSTAR PLAYBOOK - UNIQUE VISUAL SYSTEM */
:root {
  --background: #f3efe8;
  --foreground: #191426;
  --card: #fffdf7;
  --card-foreground: #191426;
  --popover: #fffdf7;
  --popover-foreground: #191426;
  --primary: #5c3fc4;
  --primary-foreground: #ffffff;
  --secondary: #e4ded5;
  --secondary-foreground: #191426;
  --muted: #e9e3dc;
  --muted-foreground: #6d6677;
  --accent: #668d12;
  --accent-foreground: #121807;
  --border: #c7bfca;
  --input: #fffdf7;
  --ring: #5c3fc4;
  --radius: 3px;
  --radius-lg: 18px;
  --radius-xl: 32px;
  --glow-primary: 0 14px 40px rgba(92,63,196,0.18);
  --glow-accent: 0 14px 40px rgba(102,141,18,0.14);
  --font-heading: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-ui: 'Inter', system-ui, sans-serif;
  --font-mono: 'Geist Mono', monospace;
}

[data-theme="dark"] {
  --background: #161225;
  --foreground: #f6f1e8;
  --card: #211b34;
  --card-foreground: #f6f1e8;
  --popover: #211b34;
  --popover-foreground: #f6f1e8;
  --primary: #a78bfa;
  --primary-foreground: #171124;
  --secondary: #29213d;
  --secondary-foreground: #f6f1e8;
  --muted: #2a2340;
  --muted-foreground: #b6adc4;
  --accent: #b8f34a;
  --accent-foreground: #151c08;
  --border: #4b4067;
  --input: #211b34;
  --ring: #b8f34a;
  --glow-primary: 0 18px 50px rgba(167,139,250,0.22);
  --glow-accent: 0 18px 50px rgba(184,243,74,0.15);
}

body {
  font-family: var(--font-ui);
  background-image:
    radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--primary) 15%, transparent), transparent 28rem),
    radial-gradient(circle at 88% 32%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 24rem);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6,
.logo-text {
  font-family: var(--font-heading);
}

.site-header {
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(22px);
}

.header-inner {
  height: 76px;
}

.header-logo .logo,
.footer-logo .logo {
  border-radius: 50% 50% 12% 50%;
  background: var(--accent);
  padding: 5px;
  transform: rotate(-12deg);
}

.logo-text {
  letter-spacing: -0.055em;
  font-size: 1.18rem;
}

.logo-accent {
  color: var(--accent);
}

.header-nav a {
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
}

.btn {
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.015em;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
  box-shadow: 0 7px 0 color-mix(in srgb, var(--accent) 38%, black);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 0 color-mix(in srgb, var(--accent) 38%, black);
}

.hero-section {
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--primary) 8%, transparent), transparent 45%),
    var(--background);
}

.hero-grid {
  background-image:
    radial-gradient(circle, color-mix(in srgb, var(--foreground) 18%, transparent) 1px, transparent 1.5px);
  background-size: 24px 24px;
}

.hero-glass {
  border: 1px solid var(--border);
  border-radius: 42px 12px 42px 12px;
  background: color-mix(in srgb, var(--card) 82%, transparent);
  box-shadow: var(--glow-primary);
}

.hero-headline {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-transform: none;
}

.hero-sub {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-visual {
  border-radius: 52% 48% 16% 20% / 18% 22% 10% 12%;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 20px 22px 0 color-mix(in srgb, var(--primary) 45%, transparent);
  transform: rotate(1.5deg);
}

.ticker-wrap {
  border-block: 1px solid var(--border);
}

.ticker-label {
  background: var(--accent);
  color: var(--accent-foreground);
}

.section-header {
  max-width: 900px;
  text-align: left;
}

.section-label {
  width: fit-content;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
}

.section-header h2,
.mission-text {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.accent-text {
  color: var(--accent);
}

.filter-panel,
.territory-sync,
.vaults-intro,
.reports-intro,
.signal-drop-block,
.reports-subscribe,
.network-about,
.network-cta {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--glow-primary);
}

.filter-pill,
.report-tag,
.mood-btn {
  border-radius: 999px;
}

.game-card,
.vault-card,
.report-card,
.pillar-card {
  border-radius: 28px 8px 28px 8px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.game-card:nth-child(even),
.vault-card:nth-child(3n + 2),
.report-card:nth-child(odd) {
  border-radius: 8px 28px 8px 28px;
}

.game-card:hover,
.vault-card:hover,
.report-card:hover,
.pillar-card:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  border-color: var(--accent);
  box-shadow: 12px 16px 0 color-mix(in srgb, var(--accent) 22%, transparent);
}

.game-card-img,
.vault-img,
.report-img,
.report-thumb {
  border-radius: inherit;
}

.game-title,
.vault-title,
.report-title,
.report-title-sm {
  letter-spacing: -0.035em;
}

.score,
.vault-index {
  color: var(--accent);
}

.network-section {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 9%, transparent), transparent 55%),
    var(--background);
}

.site-footer {
  border-top: 1px solid var(--accent);
}

::selection {
  background: var(--accent);
  color: var(--accent-foreground);
}

@media (max-width: 767px) {
  .hero-headline {
    font-size: clamp(3rem, 15vw, 5rem);
  }
  .hero-visual {
    box-shadow: 10px 12px 0 color-mix(in srgb, var(--primary) 45%, transparent);
  }
  .section-header h2,
  .mission-text {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }
}
/* SOFTLAUNCH GAMES - UNIQUE STUDIO THEME */
:root {
  --background: #fff7ec;
  --foreground: #18323b;
  --card: #fffdf9;
  --card-foreground: #18323b;
  --popover: #fffdf9;
  --popover-foreground: #18323b;
  --primary: #3998ad;
  --primary-foreground: #ffffff;
  --secondary: #f3dfce;
  --secondary-foreground: #18323b;
  --muted: #f4e8dc;
  --muted-foreground: #687980;
  --accent: #dd4d35;
  --accent-foreground: #ffffff;
  --border: #d9c7ba;
  --input: #fffdf9;
  --ring: #3998ad;
  --radius: 14px;
  --radius-lg: 28px;
  --radius-xl: 48px;
  --glow-primary: 0 18px 50px rgba(57,152,173,0.16);
  --glow-accent: 0 18px 50px rgba(221,77,53,0.14);
  --font-heading: 'Fraunces', Georgia, serif;
  --font-ui: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;
}

[data-theme="dark"] {
  --background: #18323b;
  --foreground: #fff7ec;
  --card: #22434d;
  --card-foreground: #fff7ec;
  --popover: #22434d;
  --popover-foreground: #fff7ec;
  --primary: #82d8e8;
  --primary-foreground: #10262e;
  --secondary: #294b55;
  --secondary-foreground: #fff7ec;
  --muted: #294b55;
  --muted-foreground: #c1d4d7;
  --accent: #ff7657;
  --accent-foreground: #321008;
  --border: #52717a;
  --input: #22434d;
  --ring: #ff7657;
  --glow-primary: 0 18px 50px rgba(130,216,232,0.15);
  --glow-accent: 0 18px 50px rgba(255,118,87,0.16);
}

body {
  background-image:
    radial-gradient(circle at 10% 10%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 26rem),
    radial-gradient(circle at 92% 35%, color-mix(in srgb, var(--primary) 11%, transparent), transparent 28rem);
}

h1, h2, h3, h4, h5, h6,
.logo-text {
  font-family: var(--font-heading);
  font-variation-settings: 'SOFT' 100;
}

.site-header {
  border-bottom: 0;
  box-shadow: 0 8px 30px rgba(24,50,59,0.08);
}

.header-logo .logo,
.footer-logo .logo {
  border-radius: 50%;
  background: var(--accent);
  padding: 6px;
  transform: rotate(7deg);
}

.logo-text {
  font-size: 1.25rem;
  letter-spacing: -0.045em;
}

.logo-accent {
  color: var(--accent);
  font-style: italic;
}

.header-nav a {
  font-family: var(--font-ui);
  font-weight: 600;
}

.btn {
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 8px 0 color-mix(in srgb, var(--accent) 50%, black);
}

.btn-primary:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 11px 0 color-mix(in srgb, var(--accent) 50%, black);
}

.hero-section {
  background:
    radial-gradient(ellipse at center, color-mix(in srgb, var(--primary) 10%, transparent), transparent 60%),
    var(--background);
}

.hero-grid {
  background-image:
    radial-gradient(circle, color-mix(in srgb, var(--foreground) 14%, transparent) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.hero-glass {
  border-radius: 72px 28px 72px 28px;
  border: 2px solid var(--border);
  background: color-mix(in srgb, var(--card) 88%, transparent);
  box-shadow: var(--glow-primary);
}

.hero-headline {
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-style: italic;
}

.hero-sub {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-visual {
  border-radius: 48% 52% 46% 54% / 38% 40% 60% 62%;
  border: 4px solid var(--card);
  box-shadow:
    0 0 0 3px var(--accent),
    18px 20px 0 color-mix(in srgb, var(--primary) 36%, transparent);
  transform: rotate(-2deg);
}

.ticker-label {
  background: var(--accent);
  color: var(--accent-foreground);
}

.section-header {
  max-width: 950px;
  text-align: center;
  margin-inline: auto;
}

.section-label {
  margin-inline: auto;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--primary);
}

.section-header h2,
.mission-text {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-style: italic;
}

.accent-text {
  color: var(--accent);
}

.filter-panel,
.territory-sync,
.vaults-intro,
.reports-intro,
.signal-drop-block,
.reports-subscribe,
.network-about,
.network-cta {
  border: 2px solid var(--border);
  border-radius: 48px 18px 48px 18px;
  box-shadow: var(--glow-primary);
}

.filter-pill,
.report-tag,
.mood-btn {
  border-radius: 999px;
}

.game-card,
.vault-card,
.report-card,
.pillar-card {
  border: 2px solid var(--border);
  border-radius: 38px 14px 38px 14px;
  box-shadow: 0 14px 30px rgba(24,50,59,0.1);
}

.game-card:nth-child(even),
.vault-card:nth-child(odd),
.report-card:nth-child(even) {
  border-radius: 14px 38px 14px 38px;
}

.game-card:hover,
.vault-card:hover,
.report-card:hover,
.pillar-card:hover {
  transform: translateY(-7px) rotate(0.7deg);
  border-color: var(--accent);
  box-shadow: 10px 14px 0 color-mix(in srgb, var(--accent) 20%, transparent);
}

.game-title,
.vault-title,
.report-title,
.report-title-sm {
  letter-spacing: -0.035em;
}

.score,
.vault-index {
  color: var(--accent);
}

.network-section {
  background:
    radial-gradient(circle at center, color-mix(in srgb, var(--primary) 9%, transparent), transparent 65%),
    var(--background);
}

.site-footer {
  border-top: 8px solid color-mix(in srgb, var(--accent) 70%, var(--primary));
}

::selection {
  background: var(--accent);
  color: var(--accent-foreground);
}

@media (max-width: 767px) {
  .hero-headline {
    font-size: clamp(3rem, 15vw, 5rem);
  }
  .hero-visual {
    box-shadow:
      0 0 0 3px var(--accent),
      10px 12px 0 color-mix(in srgb, var(--primary) 36%, transparent);
  }
  .section-header h2,
  .mission-text {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }
}