@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&display=swap');

:root {
  --gold-1: #f0e6d2;
  --gold-2: #c8aa6e;
  --gold-3: #c89b3c;
  --gold-4: #785a28;
  --gold-glow: rgba(200, 170, 110, 0.45);
  --bg-dark: #010a13;
  --font-lol: 'Cinzel', 'Beaufort', Georgia, 'Times New Roman', serif;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: var(--gold-1);
  font-family: var(--font-lol);
  user-select: none;
}

.bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: opacity 2.5s ease-in-out, transform 12s ease-out;
  opacity: 0;
  transform: scale(1.04);
  filter: brightness(0.45) contrast(1.15) saturate(1.1);
}

.bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.ambient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, rgba(1, 10, 19, 0.45) 0%, rgba(1, 10, 19, 0.8) 60%, rgba(1, 10, 19, 0.98) 100%);
  pointer-events: none;
  z-index: 2;
}

.vignette-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  box-shadow: inset 0 0 160px rgba(0, 0, 0, 0.9);
  pointer-events: none;
  z-index: 3;
}

.welcome-stage {
  position: relative;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.hextech-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0.85;
}

.ornament-line {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

.ornament-diamond {
  width: 10px;
  height: 10px;
  background: var(--gold-2);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--gold-glow);
}

.welcome-title {
  font-family: var(--font-lol);
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 10%, #f0e6d2 35%, #c8aa6e 75%, #785a28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(200, 170, 110, 0.45));
  margin-bottom: 16px;
  line-height: 1.2;
}

.welcome-subtitle {
  font-family: var(--font-lol);
  font-size: clamp(12px, 1.6vw, 16px);
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #a09b8c;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  animation: pulseSubtitle 4s infinite ease-in-out;
}

@keyframes pulseSubtitle {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; text-shadow: 0 0 12px rgba(200, 170, 110, 0.3); }
}

.hextech-bottom-ornament {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.6;
}

.bottom-line {
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-4), transparent);
}

.bottom-dot {
  width: 4px;
  height: 4px;
  background: var(--gold-3);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold-3);
}

@media (max-width: 768px) {
  .ornament-line {
    width: 45px;
  }
  .bottom-line {
    width: 70px;
  }
}
