:root {
  --orange-primary: #FF5A00;
  --orange-light: #FF7E33;
  --orange-dark: #CC4800;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray-light: rgba(255, 255, 255, 0.7);
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-family);
  line-height: 1.5;
  font-weight: 300;
  overflow: hidden;
}

#app {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  padding: 2rem;
}

.container {
  text-align: center;
  max-width: 800px;
}

.title {
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .title {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.stroke-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange-primary);
  position: relative;
  animation: stroke-animation 6s infinite alternate;
}

.stroke-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: calc(100% + 20px);
  height: 2px;
  background: var(--orange-primary);
  animation: line-move 3s infinite;
}

.stroke-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10px;
  width: calc(100% + 20px);
  height: 2px;
  background: var(--orange-primary);
  animation: line-move 3s infinite reverse;
}

.filled-text {
  color: var(--orange-primary);
  position: relative;
  animation: pulse 3s infinite alternate;
}

.tagline {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--gray-light);
  max-width: 36rem;
  margin: 0 auto;
  opacity: 0;
  animation: fade-in 2s forwards 1s;
}

/* Animations */
@keyframes stroke-animation {
  0%, 20% {
    -webkit-text-stroke: 2px rgba(255, 90, 0, 0);
  }
  40%, 100% {
    -webkit-text-stroke: 2px var(--orange-primary);
  }
}

@keyframes line-move {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add a subtle gradient overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.8) 70%, rgba(10, 10, 10, 1) 100%);
  z-index: -1;
}

/* Add subtle particles in the background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 90, 0, 0.05) 0%, transparent 8%),
    radial-gradient(circle at 70% 60%, rgba(255, 90, 0, 0.05) 0%, transparent 8%),
    radial-gradient(circle at 40% 80%, rgba(255, 90, 0, 0.05) 0%, transparent 8%),
    radial-gradient(circle at 80% 10%, rgba(255, 90, 0, 0.05) 0%, transparent 8%);
  z-index: -2;
}