:root {
  --bg-color: #0a0a0a;
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --accent-orange: #ff4d00;
  --accent-yellow: #ff9900;
  --font-main: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at center, #1c1c1c 0%, #000000 100%);
  color: var(--text-primary);
  font-family: var(--font-main);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.flame-icon {
  width: 140px;
  height: auto;
  animation: float 8s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 77, 0, 0.3));
}

.flame-shard {
  transform-origin: center 120px;
}

.flame-core {
  animation: pulse-core 6s infinite ease-in-out;
}

.flame-left {
  animation: sway-left 5s infinite ease-in-out alternate;
}

.flame-right {
  animation: sway-right 5.5s infinite ease-in-out alternate;
}

.flame-highlight {
  animation: flicker-bright 3s infinite alternate;
  transform-origin: center bottom;
}

.brand-name {
  font-size: 3rem;
  letter-spacing: 0.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--accent-orange), var(--accent-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.status-container {
  font-size: 1.25rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 1.5rem;
}

#dynamic-text {
  transition: opacity 0.5s ease;
  font-weight: 300;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse-core {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes sway-left {
  0% {
    transform: rotate(0deg) translateY(0);
  }

  100% {
    transform: rotate(-3deg) translateY(-2px);
  }
}

@keyframes sway-right {
  0% {
    transform: rotate(0deg) translateY(0);
  }

  100% {
    transform: rotate(3deg) translateY(-2px);
  }
}

@keyframes flicker-bright {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }

  100% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.fade-out {
  opacity: 0;
  transform: translateY(5px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .brand-name {
    font-size: 2rem;
    letter-spacing: 0.3rem;
  }

  .flame-icon {
    width: 100px;
  }
}