@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&display=swap");

body {
  margin: 0;
  font-family: "Dancing Script", "Segoe Script", cursive;
  background: #0f172a;
  color: #f8fafc;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.glitch-text {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 4vh;
  margin: 0;
  font-size: clamp(1.75rem, 3.75vw, 3.25rem);
  letter-spacing: 0.08em;
  text-transform: none;
  font-weight: 700;
  text-shadow:
    -3px 0 0 rgba(255, 0, 80, 0.8),
    3px 0 0 rgba(0, 200, 255, 0.8),
    0 0 18px rgba(255, 255, 255, 0.35);
}

#ripple-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
