@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");

:root {
  --text: rgba(0, 0, 0, 0.92);
  --muted: rgba(0, 0, 0, 0.6);
  --border: rgba(0, 0, 0, 0.18);
  --accent: #ff2bd6;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/beauty1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.05) contrast(1.02);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: -1;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  color: #000;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  text-shadow:
    0 2px 16px rgba(255, 255, 255, 0.55),
    0 0 14px rgba(255, 43, 214, 0.22);
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 43, 214, 0.9), transparent);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.brand:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a {
  color: #000;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color 150ms ease;
  text-shadow:
    0 2px 16px rgba(255, 255, 255, 0.55),
    0 0 14px rgba(255, 43, 214, 0.22);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 43, 214, 0.92);
  opacity: 0;
  transform: translateY(2px);
  box-shadow: 0 0 16px rgba(255, 43, 214, 0.4);
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav a:hover {
  color: #000;
}

.nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav a[aria-current="page"] {
  color: #000;
}

.nav a[aria-current="page"]::after {
  opacity: 1;
  transform: translateY(0);
}

.main {
  flex: 1;
  display: flex;
}

.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 0;
}

.welcome {
  text-align: center;
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 10px 28px rgba(0, 0, 0, 0.6),
    0 0 18px rgba(255, 43, 214, 0.35);
}

.welcome__script {
  font-family: "Great Vibes", cursive;
  font-size: clamp(44px, 9vw, 92px);
  line-height: 0.95;
}

.welcome__tagline {
  margin-top: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(10px, 2.4vw, 14px);
  opacity: 0.92;
}

.promo {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(18px, 4vw, 34px);
  line-height: 1.1;
  text-shadow:
    0 6px 22px rgba(0, 0, 0, 0.55),
    0 0 22px rgba(255, 43, 214, 0.55);
  animation: promoBlink 1.1s steps(2, end) infinite;
}

@keyframes promoBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0.15;
  }
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
}

.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
