:root {
  --bg-color: #050505;
  --text-main: #c4c4c4;
  --text-accent: #8b0000;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'Cinzel', serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Particle Canvas */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  /* Shift particles higher up the screen */
  transform: translateY(-20vh);
}

/* Atmospheric Fog Overlay */
.vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 30%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Main Container - Border & Box Removed */
.container {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

/* Coming Soon Text Glow & Style */
h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 4rem;
  letter-spacing: 8px;
  color: #e0e0e0;
  text-shadow: 0 0 15px rgba(139, 0, 0, 0.8), 0 0 30px rgba(139, 0, 0, 0.4);
  text-transform: uppercase;
  animation: floatText 4s ease-in-out infinite alternate;
}

/* Subtle Rise Animation for the Text */
@keyframes floatText {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-8px);
  }
}

/* Responsive Design */
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
    letter-spacing: 4px;
  }
}