:root {
  --bg-color: #000000;
  --text-color: #ffffff;
  --primary-red: #c90001;
  --primary-blue: #ff0000;
  --accent-gold: #fdaf19;
  --hover-orange: #eb9141;
  --welcome-blue: #005bc1;
}

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

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg-color) 100%);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  text-align: center;
  animation: fadeIn 1.5s ease-out;
  position: relative;
  z-index: 1;
}

/* Background glow effect using Aaccentia colors */
body::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(78, 94, 208, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 30% 30%, rgba(201, 0, 1, 0.1) 0%, transparent 30%);
  z-index: 0;
  pointer-events: none;
}

h1 {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-color) 30%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}

.subtext {
  font-size: 1.2rem;
  color: var(--accent-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}