:root {
  --bg-dark: #090711;
  --bg-surface: rgba(18, 14, 30, 0.75);
  
  --neon-pink: #ff2a85;
  --neon-pink-glow: rgba(255, 42, 133, 0.45);
  --neon-cyan: #00f0ff;
  --neon-cyan-glow: rgba(0, 240, 255, 0.35);
  --neon-purple-glow: rgba(157, 78, 221, 0.4);
  
  --text-primary: #f3f0fc;
  --text-secondary: #9f98b6;
  --text-dim: #645d7d;
  
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.vignette-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, transparent 20%, rgba(5, 3, 10, 0.85) 85%);
  pointer-events: none;
  z-index: 2;
}

.scanlines {
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 26, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0.25;
  z-index: 2;
}

.splash-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 1.5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.top-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  padding: 0.6rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan-glow);
  animation: pulse-glow 2.5s infinite ease-in-out;
}

.status-text code {
  color: var(--neon-cyan);
  font-weight: 600;
}

.git-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 42, 133, 0.12);
  border: 1px solid rgba(255, 42, 133, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  color: #ff94c4;
}

.git-icon {
  font-size: 0.95rem;
}

.git-stash-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.08rem 0.4rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 750px;
  margin: auto 0;
  gap: 3.5rem;
}

.bone-wrapper {
  position: relative;
  cursor: pointer;
  display: inline-block;
  transform: perspective(600px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: bone-float 4.8s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  outline: none;
}

.bone-wrapper:hover {
  transform: scale(1.05) rotate(1deg);
}

.bone-wrapper:active {
  transform: scale(0.97) rotate(-2deg);
}

.bone-neon-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--neon-pink-glow) 0%, rgba(157, 78, 221, 0.25) 50%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.bone-img {
  position: relative;
  z-index: 2;
  width: 310px;
  max-width: 75vw;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.45))
         drop-shadow(0 0 28px var(--neon-pink-glow));
  user-select: none;
  -webkit-user-drag: none;
}

.title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.brand-title {
  font-size: clamp(3rem, 9vw, 5.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
}

.title-accent {
  color: var(--neon-pink);
  text-shadow: 0 0 18px var(--neon-pink-glow), 0 0 36px rgba(255, 42, 133, 0.35);
}

.title-main {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.45), 0 0 32px var(--neon-purple-glow);
}

.domain-pill {
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 3.2vw, 1.6rem);
  font-weight: 700;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.35);
  padding: 0.18rem 0.65rem;
  border-radius: 10px;
  margin-left: 0.4rem;
  text-shadow: 0 0 12px var(--neon-cyan-glow);
  vertical-align: middle;
}

.tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.tagline-badge {
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  color: #d8b4fe;
  font-size: 0.86rem;
}

.tagline-divider {
  color: var(--text-dim);
}

.tagline-sub {
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

.bottom-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  padding: 0.6rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy {
  color: var(--text-dim);
}

@keyframes bone-float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-11px) rotate(1.4deg);
  }
}

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

@media (max-width: 600px) {
  .splash-container {
    padding: 1rem 1.1rem;
  }

  .hero-stage {
    gap: 2.2rem;
  }

  .bone-img {
    width: 230px;
  }

  .bone-neon-halo {
    width: 270px;
    height: 270px;
  }

  .brand-title {
    font-size: 2.75rem;
  }

  .tagline {
    font-size: 0.9rem;
    gap: 0.4rem;
  }

  .tagline-sub {
    display: block;
    width: 100%;
  }

  .tagline-divider {
    display: none;
  }

  .bottom-bar {
    text-align: center;
  }
}
