:root {
  --bg: #07080b;
  --text: #ece8de;
  --muted: #9a9588;
  --gold: #fbb911;
  --gold-dim: #c48a12;
  --blue: #1d4f9a;
  --red: #c81e24;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Manrope, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
}

#dust {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}

.glow-blue {
  width: 42vw;
  height: 42vw;
  top: -12%;
  left: -8%;
  background: color-mix(in srgb, var(--blue) 28%, transparent);
}

.glow-red {
  width: 46vw;
  height: 46vw;
  right: -12%;
  bottom: -18%;
  background: color-mix(in srgb, var(--red) 22%, transparent);
  animation-delay: -7s;
}

.glow-gold {
  width: 28vw;
  height: 28vw;
  top: 28%;
  left: 50%;
  translate: -50% 0;
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  animation-duration: 22s;
}

.flag-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 4px;
}

.flag-blue {
  width: 33.333%;
  background: var(--blue);
}

.flag-red {
  flex: 1;
  background: var(--red);
}

.stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 72px 24px 80px;
  text-align: center;
}

.arms {
  margin: 0 0 28px;
  animation: rise 1.1s ease-out both, float 6.5s ease-in-out 1.1s infinite;
}

.arms img {
  display: block;
  width: min(42vw, 240px);
  height: auto;
  filter:
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 28px rgba(251, 185, 17, 0.18));
}

.region {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: rise 1s 0.18s ease-out both;
}

.brand {
  margin: 0;
  font-family: Unbounded, Manrope, "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  animation: rise 1s 0.28s ease-out both;
}

.brand span {
  color: var(--gold);
}

.foot {
  position: absolute;
  bottom: 22px;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
  color: #6f6b62;
  font-size: 0.75rem;
  text-align: center;
}

.foot p {
  margin: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(4%, -3%) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow,
  .arms,
  .region,
  .brand {
    animation: none !important;
  }
}
