/* ========================================
   VARIABLES
   ======================================== */
:root {
  /* Base */
  --vault-black: #050507;
  --steel-shadow: #0f172a;
  --glass-surface: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.1);

  /* Accents */
  --diamond-blue: #38bdf8;
  --ice-cyan: #67e8f9;
  --platinum: #cbd5f5;
  --laser-red: #ef4444;

  /* Text */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  /* Gradients */
  --gradient-diamond: linear-gradient(135deg, #38bdf8 0%, #67e8f9 100%);
  --gradient-vault: linear-gradient(180deg, #050507 0%, #0f172a 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);

  /* Layout */
  --max-width: 1320px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Spacing */
  --section-gap: 120px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.3s var(--ease-smooth);
  --transition-slow: 0.5s var(--ease-smooth);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--vault-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: var(--diamond-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--ice-cyan);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

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

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.content-narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* ========================================
   HEADER — VAULT NAV
   ======================================== */
.vault-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(5, 5, 7, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}

.vault-nav.scrolled {
  background: rgba(5, 5, 7, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(56, 189, 248, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

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

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-dot {
  color: var(--diamond-blue);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gradient-diamond);
  border-radius: 1px;
  transition: transform var(--transition-base);
}

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

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

.nav-link.active {
  color: var(--diamond-blue);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  padding: 8px;
}

.toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .toggle-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 7, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 24px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all var(--transition-base);
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  color: var(--text-secondary);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--diamond-blue);
}

.btn-mobile {
  margin-top: 24px;
  text-align: center;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 24px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-diamond);
  color: #050507;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.btn-primary:hover {
  color: #050507;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.4), 0 8px 25px rgba(56, 189, 248, 0.2);
}

.btn-glass {
  background: var(--glass-surface);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-glass:hover {
  color: var(--text-primary);
  background: var(--glass-hover);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-nav {
  padding: 8px 20px;
  font-size: 0.8125rem;
}

.btn-full {
  width: 100%;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

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

/* Laser Grid */
.laser-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.laser {
  position: absolute;
  background: var(--laser-red);
  opacity: 0.06;
}

.laser-h {
  height: 1px;
  width: 100%;
}

.laser-v {
  width: 1px;
  height: 100%;
}

.laser-1 { top: 25%; animation: laserScanH 8s ease-in-out infinite; }
.laser-2 { top: 50%; animation: laserScanH 10s ease-in-out infinite reverse; }
.laser-3 { top: 75%; animation: laserScanH 12s ease-in-out infinite; }
.laser-4 { left: 30%; animation: laserScanV 9s ease-in-out infinite; }
.laser-5 { left: 70%; animation: laserScanV 11s ease-in-out infinite reverse; }

.hero-particles {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(56, 189, 248, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 70%, rgba(103, 232, 249, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 20%, rgba(56, 189, 248, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 60%, rgba(203, 213, 245, 0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(56, 189, 248, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 40%, rgba(103, 232, 249, 0.15) 0%, transparent 100%);
}

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

/* Hero Content */
.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--diamond-blue);
  margin-bottom: 24px;
  font-family: 'Orbitron', sans-serif;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--diamond-blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-highlight {
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 520px;
}

.hero-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.hero-disclaimer svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-disclaimer span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual — Vault Door */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-door {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-outer {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.vault-ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(56, 189, 248, 0.15);
  animation: vaultSpin 20s linear infinite;
}

.vault-ring-2 {
  width: 80%;
  height: 80%;
  border-color: rgba(103, 232, 249, 0.12);
  animation: vaultSpin 15s linear infinite reverse;
  border-style: dashed;
}

.vault-ring-3 {
  width: 60%;
  height: 60%;
  border-color: rgba(56, 189, 248, 0.2);
  animation: vaultSpin 10s linear infinite;
}

.vault-diamond {
  position: relative;
  z-index: 2;
  animation: diamondFloat 4s ease-in-out infinite;
}

.vault-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--diamond-blue), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ========================================
   SECTION COMMONS
   ======================================== */
.game-section,
.features-section,
.steps-section,
.cta-section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--diamond-blue);
  margin-bottom: 16px;
  font-family: 'Orbitron', sans-serif;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   GAME SECTION — VAULT CORE
   ======================================== */
.game-section {
  background: var(--steel-shadow);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.game-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.game-glow-border {
  position: absolute;
  inset: -2px;
  background: var(--gradient-diamond);
  border-radius: calc(var(--radius-xl) + 2px);
  opacity: 0.3;
  z-index: 0;
  animation: borderGlow 3s ease-in-out infinite alternate;
}

.game-container {
  position: relative;
  z-index: 1;
  background: #0a0a0f;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.game-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-info {
  margin-top: 24px;
  text-align: center;
}

.info-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.info-card svg {
  flex-shrink: 0;
}

.info-card span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ========================================
   FEATURES
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--gradient-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.feature-card:hover {
  background: var(--glass-hover);
  border-color: rgba(56, 189, 248, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   STEPS
   ======================================== */
.steps-section {
  background: var(--vault-black);
}

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

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-diamond);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 16px;
}

.step-line {
  width: 40px;
  height: 2px;
  background: var(--gradient-diamond);
  margin: 0 auto 20px;
  border-radius: 1px;
}

.step-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   CTA
   ======================================== */
.cta-card {
  position: relative;
  background: var(--gradient-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-laser {
  position: absolute;
  height: 1px;
  width: 100%;
  background: var(--laser-red);
  opacity: 0.04;
}

.cta-laser-1 { top: 30%; animation: laserScanH 7s ease-in-out infinite; }
.cta-laser-2 { top: 70%; animation: laserScanH 9s ease-in-out infinite reverse; }

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.vault-footer {
  background: var(--steel-shadow);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px;
}

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

.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links-group nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-link:hover {
  color: var(--diamond-blue);
}

.footer-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-badge-18 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--laser-red);
  font-family: 'Orbitron', sans-serif;
}

/* ========================================
   PAGE CONTENT (Sub pages)
   ======================================== */
.page-content {
  padding-top: var(--header-height);
  min-height: 100vh;
}

.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: var(--steel-shadow);
  border-bottom: 1px solid var(--glass-border);
}

.page-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: 80px 0 100px;
}

.content-block {
  margin-bottom: 48px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.content-block p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-list {
  padding-left: 0;
  margin-top: 12px;
}

.content-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--diamond-blue);
  border-radius: 50%;
}

.content-list li strong {
  color: var(--text-primary);
}

.highlight-box {
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.highlight-box h2 {
  color: var(--diamond-blue);
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 24px;
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.contact-icon {
  margin-bottom: 12px;
}

.contact-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
}

.form-input {
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-input:focus {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-select option {
  background: var(--steel-shadow);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.form-note a {
  color: var(--diamond-blue);
  text-decoration: underline;
}
/* ENDFILE */