/* ==========================================================================
   WHALEGRAIL - STYLE.CSS (ROYAL BLUE & GOLD SOVEREIGN VAULT SYSTEMS)
   ========================================================================== */

/* --- Custom Variables & Reset --- */
:root {
  --color-bg: #020712;
  --color-bg-darker: #010307;

  /* Royal Blue & Gold Brand Colors */
  --color-primary: #0070f3;
  /* Royal Sovereign Blue */
  --color-primary-light: #00bcff;
  /* Neon Aqua Blue */
  --color-primary-glow: rgba(0, 188, 255, 0.35);

  --color-secondary: #ffffff;
  /* Clean White */
  --color-secondary-glow: rgba(255, 255, 255, 0.15);

  /* Royal Gold & Vault Accents */
  --color-accent: #e5c158;
  /* Luminous Gold */
  --color-accent-light: #f3d47a;
  /* Bright Gold */
  --color-accent-glow: rgba(229, 193, 88, 0.4);

  /* Glassmorphic Components */
  --color-glass-border: rgba(229, 193, 88, 0.08);
  --color-glass-border-focus: rgba(0, 188, 255, 0.35);
  --color-glass-bg: rgba(6, 15, 34, 0.75);
  --color-dark: #02050b;

  /* Muted Text */
  --color-text-muted: #8a9cb0;

  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background-color: var(--color-bg);
  background-image: radial-gradient(circle at center, #081a38 0%, var(--color-bg-darker) 100%);
  color: #e3e9f0;
  font-family: var(--font-display);
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
  background: rgba(229, 193, 88, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent-glow);
}

/* --- Background Particle Overlay & Ocean Light Rays --- */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.ocean-light-rays {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 188, 255, 0.03) 0%, transparent 40%, rgba(229, 193, 88, 0.02) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.ambient-glow {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  transition: all 1s ease;
}

.bg-glow-blue {
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -200px;
  right: -50px;
  animation: floatGlow1 25s infinite alternate;
}

.bg-glow-gold {
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  bottom: -200px;
  left: -50px;
  animation: floatGlow2 30s infinite alternate;
}

@keyframes floatGlow1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-100px, 80px) scale(1.05);
  }

  100% {
    transform: translate(50px, -50px) scale(0.9);
  }
}

@keyframes floatGlow2 {
  0% {
    transform: translate(0, 0) scale(1.15);
  }

  50% {
    transform: translate(80px, -110px) scale(0.95);
  }

  100% {
    transform: translate(-50px, 50px) scale(1.1);
  }
}

/* --- Centered Vertical Container --- */
.app-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: space-between;
}

/* --- Header & Logo (Centered) --- */
.app-header {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2.8rem;
}

.logo-wrapper {
  background: rgba(3, 8, 19, 0.95);
  padding: 12px 24px;
  border-radius: 4px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(229, 193, 88, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(229, 193, 88, 0.25);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.logo-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(229, 193, 88, 0.3), 0 0 12px rgba(0, 188, 255, 0.15);
  border-color: var(--color-accent);
}

.brand-logo-img {
  height: 125px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-wrapper:hover .brand-logo-img {
  transform: scale(1.06) rotate(4deg);
}

.logo-eye-pulse {
  animation: eyePulse 1.6s infinite alternate;
}

@keyframes eyePulse {
  0% {
    fill: #00bcff;
    opacity: 0.6;
  }

  100% {
    fill: #ffffff;
    opacity: 1;
    filter: drop-shadow(0 0 2px #00bcff);
  }
}

.brand-text {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--color-secondary);
}

.gold-text {
  color: var(--color-accent);
  text-shadow: 0 0 8px var(--color-accent-glow);
}

.blue-text {
  color: var(--color-primary-light);
  text-shadow: 0 0 8px var(--color-primary-glow);
}

.console-text {
  color: var(--color-primary-light);
  font-size: 0.8rem;
  opacity: 0.85;
}

/* --- Hero Section (Centered) --- */
.hero-section {
  text-align: center;
  max-width: 780px;
  margin-bottom: 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(229, 193, 88, 0.05);
  border: 1px solid rgba(229, 193, 88, 0.25);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  box-shadow: 0 4px 15px rgba(229, 193, 88, 0.1);
  margin-bottom: 1.4rem;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 6px var(--color-accent-glow);
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  animation: pulseRadar 1.8s infinite linear;
}

@keyframes pulseRadar {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-secondary);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-secondary) 10%, var(--color-accent) 60%, var(--color-primary-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 6s linear infinite;
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 620px;
}

/* ==========================================================================
   SUB-AQUATIC SAFE LOCKER (Centered Centerpiece)
   ========================================================================== */
.chamber-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4.5rem;
}

.section-hint {
  margin-bottom: 1.4rem;
  text-align: center;
}

.hint-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.16em;
}

.chamber-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 340px;
}

/* Safe Vault Chamber Wrapper */
.portal-chamber {
  position: relative;
  width: 250px;
  height: 250px;
  transition: all 0.6s ease;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.04) 0%, rgba(2, 5, 11, 0.95) 80%);
  border-radius: 50%;
  box-shadow: inset 0 0 35px rgba(0, 188, 255, 0.08),
    0 12px 35px rgba(0, 0, 0, 0.7);
  border: 1.5px solid rgba(0, 188, 255, 0.1);
}

/* Steam Vents */
.steam-vent {
  position: absolute;
  bottom: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 188, 255, 0.15);
  filter: blur(2px);
  z-index: 1;
  opacity: 0;
}

.vent-left {
  left: 35px;
}

.vent-right {
  right: 35px;
}

/* Metallic outer Safe Rim */
.vault-rim {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 5px solid #182333;
  box-shadow: 0 0 0 1.5px rgba(229, 193, 88, 0.25),
    0 0 12px rgba(0, 132, 255, 0.15),
    inset 0 0 8px rgba(0, 0, 0, 0.8);
  z-index: 2;
  pointer-events: none;
}

.rim-light {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff4d4d;
  /* Locked Red */
  box-shadow: 0 0 5px #ff3333;
  transition: background-color 0.5s, box-shadow 0.5s;
}

.light-1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.light-2 {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.light-3 {
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.light-4 {
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

/* Heavy Steel Door Plate */
.safe-door-plate {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #273445 0%, #131b26 60%, #0b1017 100%);
  border: 3.5px solid #101620;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.08),
    0 6px 20px rgba(0, 0, 0, 0.7);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  overflow: hidden;
  cursor: pointer;
}

.plate-texture {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle, transparent, transparent 12px, rgba(0, 0, 0, 0.05) 12px, rgba(0, 0, 0, 0.05) 24px);
  opacity: 0.75;
}

/* Locking Bolts */
.lock-bolt {
  position: absolute;
  background: linear-gradient(to bottom, #e5c158, #b09138, #e5c158);
  border: 1px solid #111;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 3;
}

.bolt-top {
  width: 20px;
  height: 22px;
  top: -10px;
  left: calc(50% - 10px);
}

.bolt-bottom {
  width: 20px;
  height: 22px;
  bottom: -10px;
  left: calc(50% - 10px);
}

.bolt-left {
  width: 22px;
  height: 20px;
  left: -10px;
  top: calc(50% - 10px);
}

.bolt-right {
  width: 22px;
  height: 20px;
  right: -10px;
  top: calc(50% - 10px);
}

/* Pressure Gauge */
.pressure-gauge {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  border: 1.5px solid #e5c158;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8);
}

.gauge-needle {
  width: 1.5px;
  height: 8px;
  background: #ff3333;
  transform-origin: bottom center;
  transform: rotate(-40deg);
  transition: transform 1.1s ease-in-out;
}

.gauge-label {
  font-family: var(--font-mono);
  font-size: 5px;
  color: var(--color-text-muted);
  margin-top: 1px;
}

/* Central Rotary Wheel */
.vault-rotary-wheel {
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #202a3a 0%, #121922 100%);
  border: 4.5px solid #e5c158;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6),
    inset 0 1.5px 3px rgba(255, 255, 255, 0.05),
    0 0 8px rgba(229, 193, 88, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.wheel-center {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #10151f;
  border: 3px solid #e5c158;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: inset 0 1.5px 3px rgba(0, 0, 0, 0.5);
}

.wheel-lock-icon {
  width: 14px;
  height: 14px;
  color: #ff3f3f;
  transition: color 0.5s, transform 0.5s;
}

.wheel-spoke {
  position: absolute;
  background: #121922;
  border: 1px solid rgba(229, 193, 88, 0.4);
  z-index: 1;
}

.spoke-1,
.spoke-2,
.spoke-3 {
  width: 86px;
  height: 7px;
  top: calc(50% - 3.5px);
  left: calc(50% - 43px);
}

.spoke-2 {
  transform: rotate(60deg);
}

.spoke-3 {
  transform: rotate(120deg);
}

.wheel-handle {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5c158;
  border: 1.5px solid #111;
  box-shadow: 0 1.5px 3px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.handle-1 {
  top: -5px;
  left: calc(50% - 6px);
}

.handle-2 {
  bottom: -5px;
  left: calc(50% - 6px);
}

.handle-3 {
  left: -5px;
  top: calc(50% - 6px);
}

.handle-4 {
  right: -5px;
  top: calc(50% - 6px);
}

.handle-5 {
  top: 16px;
  left: 12px;
}

.handle-6 {
  top: 16px;
  right: 12px;
}

/* Safe Plate interaction styles */
.safe-door-plate:hover .vault-rotary-wheel {
  transform: rotate(15deg);
}

.chamber-container.wobbling .safe-door-plate {
  animation: lockWobble 0.7s infinite ease-in-out;
}

@keyframes lockWobble {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  15% {
    transform: scale(0.99) rotate(-1.5deg);
  }

  33% {
    transform: scale(1.005) rotate(1.2deg);
  }

  50% {
    transform: scale(0.99) rotate(-1deg);
  }

  68% {
    transform: scale(1.002) rotate(0.8deg);
  }

  85% {
    transform: scale(0.995) rotate(-0.5deg);
  }
}

/* --- Unlocked Door States --- */
.portal-chamber.opened .safe-door-plate {
  transform: scale(0.1);
  opacity: 0;
  pointer-events: none;
}

.portal-chamber.opened .bolt-top {
  transform: translateY(-12px);
}

.portal-chamber.opened .bolt-bottom {
  transform: translateY(12px);
}

.portal-chamber.opened .bolt-left {
  transform: translateX(-12px);
}

.portal-chamber.opened .bolt-right {
  transform: translateX(12px);
}

.portal-chamber.opened .rim-light {
  background: #00ff66;
  /* Green */
  box-shadow: 0 0 8px #00ff55;
}

.portal-chamber.opened {
  border-color: rgba(229, 193, 88, 0.35);
  box-shadow: inset 0 0 40px rgba(229, 193, 88, 0.2),
    0 15px 40px rgba(0, 0, 0, 0.7);
}

/* Floating Hologram Key */
.hologram-ball {
  position: absolute;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
  transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
}

.hologram-ball.revealed {
  opacity: 1;
  transform: scale(1.02) rotate(0deg);
  animation: keyFloat 4s ease-in-out infinite alternate;
}

@keyframes keyFloat {
  0% {
    transform: translateY(-5px) scale(1.02) rotate(0deg);
    filter: drop-shadow(0 0 8px rgba(0, 188, 255, 0.25));
  }

  100% {
    transform: translateY(7px) scale(1.05) rotate(3deg);
    filter: drop-shadow(0 0 20px rgba(229, 193, 88, 0.35));
  }
}

.holo-ball-svg {
  width: 95px;
  height: 95px;
  z-index: 4;
}

.hud-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  z-index: 2;
  pointer-events: none;
}

.hud-ring-svg {
  width: 100%;
  height: 100%;
  animation: rotateHUD 28s infinite linear;
}

@keyframes rotateHUD {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* HUD Panel revealed on open */
.hud-stat-panel {
  position: absolute;
  width: 290px;
  background: var(--color-glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--color-accent);
  border-radius: 4px;
  padding: 14px;
  z-index: 25;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8),
    0 0 25px rgba(229, 193, 88, 0.2);
  top: 12%;
  opacity: 0;
  transform: translateY(25px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: auto;
}

.hud-stat-panel.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
}

.hud-badge {
  font-weight: 700;
  background: rgba(229, 193, 88, 0.1);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 1.5px 6px;
  border-radius: 3px;
  letter-spacing: 0.08em;
}

.gold-glow-badge {
  box-shadow: 0 0 8px rgba(229, 193, 88, 0.2);
}

.hud-sec-code {
  color: var(--color-text-muted);
}

.hud-ball-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
  margin-bottom: 4px;
}

.hud-ball-desc {
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 12px;
}

.hud-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.hud-stat-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 3px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.hud-stat-box:hover {
  background: rgba(0, 112, 243, 0.06);
  border-color: var(--color-primary-light);
}

.hud-val {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
}

.hud-lbl {
  font-family: var(--font-mono);
  font-size: 0.44rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Action button for Safe */
.release-btn {
  background: linear-gradient(135deg, rgba(229, 193, 88, 0.15) 0%, rgba(2, 6, 15, 0.92) 100%);
  border: 1.5px solid var(--color-accent);
  color: var(--color-secondary);
  border-radius: 4px;
  cursor: pointer;
  padding: 10px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 193, 88, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.release-btn:hover {
  background: var(--color-accent);
  color: var(--color-dark);
  box-shadow: 0 5px 18px rgba(229, 193, 88, 0.4);
  transform: translateY(-1px);
}

.release-btn:hover .release-btn-icon {
  color: var(--color-dark);
}

.release-btn:active {
  transform: translateY(1px);
}

.release-btn-text {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.release-btn-icon {
  width: 13px;
  height: 13px;
  color: var(--color-accent);
  transition: color 0.3s;
}

/* Status Caption */
.chamber-status-caption {
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-align: center;
  transition: all 0.4s ease;
}

.chamber-status-caption.unlocked {
  color: var(--color-accent);
  text-shadow: 0 0 8px var(--color-accent-glow);
  animation: glowBlinker 1.5s infinite alternate;
}

@keyframes glowBlinker {
  0% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}


/* ==========================================================================
   WAITLIST REGISTRATION CONSOLE (Centered)
   ========================================================================== */
.waitlist-section {
  width: 100%;
  max-width: 540px;
  margin-bottom: 4rem;
}

.console-box {
  background: rgba(3, 10, 24, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1.5px solid rgba(229, 193, 88, 0.15);
  border-radius: 4px;
  padding: 2.4rem 2.2rem;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.85),
    0 0 35px rgba(0, 132, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
}

.console-box:focus-within {
  border-color: var(--color-glass-border-focus);
}

.console-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary-light));
}

/* High-tech golden crosshair corner marks */
.console-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.console-corners .corner {
  position: absolute;
  width: 16px;
  height: 16px;
}

.console-corners .corner::before,
.console-corners .corner::after {
  content: '';
  position: absolute;
  background: var(--color-accent);
  box-shadow: 0 0 4px var(--color-accent-glow);
}

.crn-top-left::before {
  top: 12px;
  left: 12px;
  width: 10px;
  height: 1.5px;
}

.crn-top-left::after {
  top: 12px;
  left: 12px;
  width: 1.5px;
  height: 10px;
}

.crn-top-right::before {
  top: 12px;
  right: 12px;
  width: 10px;
  height: 1.5px;
}

.crn-top-right::after {
  top: 12px;
  right: 12px;
  width: 1.5px;
  height: 10px;
}

.crn-bottom-left::before {
  bottom: 12px;
  left: 12px;
  width: 10px;
  height: 1.5px;
}

.crn-bottom-left::after {
  bottom: 12px;
  left: 12px;
  width: 1.5px;
  height: 10px;
}

.crn-bottom-right::before {
  bottom: 12px;
  right: 12px;
  width: 10px;
  height: 1.5px;
}

.crn-bottom-right::after {
  bottom: 12px;
  right: 12px;
  width: 1.5px;
  height: 10px;
}

.console-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.3) 50%);
  background-size: 100% 4px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 10;
}

.console-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
}

.console-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.14em;
}

.console-blinker-gold {
  width: 5px;
  height: 5px;
  background-color: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--color-accent-glow);
  animation: blinkerGold 1s infinite alternate;
}

@keyframes blinkerGold {
  0% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

.console-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

/* Progress bar */
.progress-container {
  margin-bottom: 2rem;
  text-align: left;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.progress-num {
  color: var(--color-accent);
  font-weight: 700;
}

.progress-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(229, 193, 88, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  position: relative;
  box-shadow: 0 0 8px rgba(229, 193, 88, 0.35);
  transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 15px 15px;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
  animation: progressMove 1.5s linear infinite;
}

@keyframes progressMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 15px 0;
  }
}

.progress-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  margin-top: 6px;
  opacity: 0.7;
}

/* Waitlist Form */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(229, 193, 88, 0.2);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.input-wrapper:focus-within {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 8px rgba(0, 188, 255, 0.15);
}

.input-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(229, 193, 88, 0.05);
  padding: 12px 14px;
  border-right: 1px solid rgba(229, 193, 88, 0.2);
}

.email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-secondary);
}

.email-input::placeholder {
  color: rgba(138, 156, 176, 0.35);
}

.input-corners::before,
.input-corners::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  pointer-events: none;
}

.input-corners::before {
  top: 0;
  right: 0;
}

.input-corners::after {
  bottom: 0;
  right: 0;
}

/* Royal Gilded Action Button */
.submit-btn {
  background: linear-gradient(135deg, #ffe875 0%, #d4af37 50%, #b8930a 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #020712;
  border-radius: 4px;
  padding: 12px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(229, 193, 88, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #ffffff 0%, #ffe875 50%, #d4af37 100%);
  box-shadow: 0 6px 20px rgba(229, 193, 88, 0.45),
    0 0 15px rgba(0, 188, 255, 0.3);
  color: #010307;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(1px);
}

.submit-btn .btn-icon {
  color: #020712;
}

/* Success State */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.4rem 0;
  animation: scaleUpIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleUpIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(229, 193, 88, 0.08);
  border: 1.5px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 12px var(--color-accent-glow);
}

.success-icon {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.animate-success {
  animation: stampIcon 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes stampIcon {
  0% {
    transform: scale(0.2) rotate(-45deg);
    opacity: 0;
  }

  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 6px;
}

.success-message {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.success-message strong {
  color: var(--color-accent);
  font-family: var(--font-mono);
  background: rgba(229, 193, 88, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px dashed rgba(229, 193, 88, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-muted);
  border-radius: 4px;
  padding: 8px 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.hidden {
  display: none !important;
}


/* ==========================================================================
   DISPLAY CABINET - 4x2 OCTAGON GRID (Replaces Collectaballs glass jars)
   ========================================================================== */
.vault-grid-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4.5rem;
}

.vault-title {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
  text-align: center;
}

.vault-subtitle {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* 4x2 Grid Container */
.vault-matrix-container {
  width: 100%;
  max-width: 960px;
  background: rgba(3, 10, 24, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1.5px solid rgba(229, 193, 88, 0.15);
  border-radius: 6px;
  padding: 2.2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85),
    0 0 35px rgba(0, 132, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  margin-bottom: 2rem;
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

/* Vault Pod Gold Octagon Frame */
.vault-pod {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.55));
}

/* Gold octagon frame with padding border trick */
.pod-octagon {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(229, 193, 88, 0.22);
  /* Gold frame border */
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  padding: 2px;
  /* Octagon border thickness */
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Dark velvet seat cushion inside the octagon */
.pod-seat {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #0a1429 0%, #02050b 100%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.pod-seat::before {
  content: '';
  position: absolute;
  width: 76%;
  height: 76%;
  border-radius: 50%;
  background: radial-gradient(circle, #0b1a35 0%, #010408 100%);
  border: 1px solid rgba(229, 193, 88, 0.12);
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.85),
    0 0 15px rgba(0, 188, 255, 0.05);
  z-index: 1;
  pointer-events: none;
  transition: all 0.4s ease;
}

.pod-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin-top: 8px;
  transition: color 0.3s;
}

.pod-ball-svg {
  width: 50%;
  height: 50%;
  z-index: 5;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.6));
  animation: podLevitate 4s ease-in-out infinite;
}

/* Stagger animation delays for natural floating feel */
.vault-pod:nth-child(2n) .pod-ball-svg {
  animation-delay: 0.5s;
}

.vault-pod:nth-child(3n) .pod-ball-svg {
  animation-delay: 1s;
}

.vault-pod:nth-child(4n) .pod-ball-svg {
  animation-delay: 1.5s;
}

@keyframes podLevitate {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* Hover & Active Pod States */
.vault-pod:hover .pod-octagon,
.vault-pod.active .pod-octagon {
  background: var(--color-accent);
  /* Make gold frame glow */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  transform: translateY(-5px);
}

.vault-pod:hover .pod-seat::before,
.vault-pod.active .pod-seat::before {
  background: radial-gradient(circle, #0d244a 0%, #010408 100%);
  border-color: var(--color-accent);
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.95),
    0 0 20px var(--color-accent-glow);
}

.vault-pod:hover .pod-ball-svg,
.vault-pod.active .pod-ball-svg {
  transform: scale(1.15) translateY(-2px);
}

.vault-pod:hover .pod-label,
.vault-pod.active .pod-label {
  color: var(--color-accent);
}

/* Bioluminescent Pod Backdrops */
.pod-glow {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  filter: blur(15px);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vault-pod:hover .pod-glow,
.vault-pod.active .pod-glow {
  opacity: 0.2;
}

.glow-sovereign {
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
}

.glow-trident {
  background: radial-gradient(circle, #f1c40f 0%, transparent 70%);
}

.glow-compass {
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
}

.glow-octopus {
  background: radial-gradient(circle, #00d2d3 0%, transparent 70%);
}

.glow-core {
  background: radial-gradient(circle, #00bcff 0%, transparent 70%);
}

.glow-crown {
  background: radial-gradient(circle, #f39c12 0%, transparent 70%);
}

.glow-sapphire {
  background: radial-gradient(circle, #3498db 0%, transparent 70%);
}

.glow-doubloon {
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
}

/* Specifications Console */
.vault-spec-console {
  width: 100%;
  max-width: 960px;
  background: rgba(3, 10, 24, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(229, 193, 88, 0.15);
  border-radius: 4px;
  padding: 2rem 2.2rem;
  margin-bottom: 2.2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(229, 193, 88, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

/* Luxury double-edge gold side bars */
.vault-spec-console::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4.5px;
  background: linear-gradient(to bottom, #ffe875, #d4af37, #ffe875);
  box-shadow: 0 0 8px var(--color-accent-glow);
}

.vault-spec-console::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4.5px;
  background: linear-gradient(to bottom, #ffe875, #d4af37, #ffe875);
  box-shadow: 0 0 8px var(--color-accent-glow);
}

.spec-inner {
  position: relative;
  z-index: 2;
}

.spec-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.spec-col-info {
  text-align: left;
}

.spec-capsule-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.spec-desc-text {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.spec-col-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.spec-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.spec-stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}

.spec-stat-val {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Specs Connection Gilded Button */
.spec-cta-btn {
  background: linear-gradient(135deg, #ffe875 0%, #d4af37 50%, #b8930a 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #020712;
  border-radius: 4px;
  padding: 12px 35px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(229, 193, 88, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.spec-cta-btn:hover {
  background: linear-gradient(135deg, #ffffff 0%, #ffe875 50%, #d4af37 100%);
  color: #010307;
  box-shadow: 0 6px 22px rgba(229, 193, 88, 0.45),
    0 0 15px rgba(0, 188, 255, 0.3);
  transform: translateY(-2px);
}

.spec-cta-btn:hover .btn-icon {
  transform: translateX(4px);
  color: #010307;
}

.spec-cta-btn .btn-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  color: #020712;
}

.vault-disclaimer {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(138, 156, 176, 0.45);
  margin-top: 1.5rem;
  max-width: 650px;
  text-align: center;
  line-height: 1.5;
}


/* ==========================================================================
   COUNTDOWN TIMER (Centered)
   ========================================================================== */
.countdown-section {
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}

.countdown-heading {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.2em;
  margin-bottom: 1.6rem;
  text-align: center;
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.timer-box {
  background: rgba(4, 9, 21, 0.8);
  border: 1.5px solid var(--color-glass-border);
  border-radius: 4px;
  width: 84px;
  height: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s;
}

.timer-box:hover {
  border-color: var(--color-accent);
}

.timer-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.timer-label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.timer-divider {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  text-shadow: 0 0 10px var(--color-accent-glow);
  animation: flashDivider 1.5s infinite alternate;
}

@keyframes flashDivider {
  0% {
    opacity: 0.2;
  }

  100% {
    opacity: 0.8;
  }
}


/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.app-footer-social {
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2.2rem;
  text-align: center;
}

.footer-social-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-link-icon {
  color: var(--color-text-muted);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link-icon svg {
  width: 100%;
  height: 100%;
}

.social-link-icon:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px var(--color-accent-glow));
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(138, 156, 176, 0.45);
  line-height: 1.6;
  max-width: 600px;
}


/* ==========================================================================
   RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  .vault-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .spec-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    text-align: center;
  }

  .spec-col-info {
    text-align: center;
  }

  .spec-col-stats {
    align-items: center;
  }

  .spec-stat-item {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .app-container {
    padding: 2rem 1rem 3rem 1rem;
  }

  .hero-section {
    margin-bottom: 2rem;
  }

  .chamber-container {
    width: 100%;
    max-width: 320px;
  }

  .portal-chamber {
    width: 240px;
    height: 240px;
  }

  .safe-door-plate {
    inset: 4px;
  }

  .vault-rotary-wheel {
    width: 98px;
    height: 98px;
    border-width: 3.5px;
  }

  .wheel-center {
    width: 32px;
    height: 32px;
    border-width: 2.2px;
  }

  .spoke-1,
  .spoke-2,
  .spoke-3 {
    width: 78px;
  }

  .hologram-ball {
    width: 130px;
    height: 130px;
  }

  .holo-ball-svg {
    width: 80px;
    height: 80px;
  }

  .hud-ring {
    width: 140px;
    height: 140px;
  }

  .hud-stat-panel {
    width: 270px;
    padding: 12px;
  }

  .hud-stat-grid {
    gap: 5px;
  }

  .hud-val {
    font-size: 0.7rem;
  }

  .console-box {
    padding: 1.8rem 1.2rem;
  }

  .progress-header {
    font-size: 0.62rem;
  }

  .progress-sub {
    font-size: 0.55rem;
  }

  .email-input {
    font-size: 0.78rem;
    padding: 10px 12px;
  }

  .input-tag {
    font-size: 0.68rem;
    padding: 10px 12px;
  }

  .vault-matrix-container {
    padding: 1.2rem;
  }

  .vault-grid {
    gap: 1rem;
  }

  .vault-spec-console {
    padding: 1.2rem;
  }

  .timer-box {
    width: 64px;
    height: 64px;
  }

  .timer-num {
    font-size: 1.3rem;
  }

  .timer-divider {
    font-size: 1.3rem;
  }
}