
:root{
  --ice: rgba(205, 245, 255, 0.98);
  --ice2: rgba(160, 228, 255, 0.92);
  --gold: rgba(255, 214, 132, 0.98);
}

*{ box-sizing:border-box; }

html,body{
  height:100%;
  margin:0;
  overflow:hidden;
  background:#05060a;
}

.scene{
  position:relative;
  width:100%;
  height:100%;
}

.bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter: saturate(1.12) contrast(1.06) brightness(0.92);
  transform: scale(1.03);
}

.vignette{
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 50% 38%,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.22) 45%,
      rgba(0,0,0,.55) 75%,
      rgba(0,0,0,.82) 100%);
  pointer-events:none;
  z-index:1;
}

#shootingStars{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:2;
  pointer-events:none;
}

.atlas{
  position:absolute;
  z-index:3;
  width: clamp(120px, 14vw, 260px);
  left: -22%;
  top: -18%;
  opacity: .95;
  pointer-events:none;
  filter: drop-shadow(0 0 12px rgba(155,235,255,.52))
          drop-shadow(0 0 24px rgba(120,160,255,.22));
  transform: rotate(-20deg);
  transform-origin: 25% 45%;
  animation: atlasFly 80s linear infinite;
  will-change: transform;
}

@keyframes atlasFly{
  0%   { transform: translate(0,0) rotate(-20deg) scale(1.00); opacity:.9; }
  25%  { opacity: 1; }
  100% { transform: translate(165vw, 120vh) rotate(-20deg) scale(1.04); opacity:.92; }
}

.center{
  position:absolute;
  top: 19%;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, 92vw);
  text-align:center;
  z-index:4;
}

.title{
  margin:0 0 18px 0;
  font-family: "Cinzel Decorative","Cinzel",serif;
  font-weight: 700;
  font-size: clamp(38px, 5vw, 70px);
  letter-spacing: .04em;
  color: var(--ice);
  text-shadow:
    0 0 12px rgba(170,240,255,.65),
    0 0 30px rgba(120,200,255,.45),
    0 0 60px rgba(90,140,255,.22);
}

.title .the{ opacity:.92; margin-right: .18em; }
.title .keystone{
  color: rgba(210,245,255,.98);
  text-shadow:
    0 0 14px rgba(180,255,255,.72),
    0 0 34px rgba(120,220,255,.55),
    0 0 70px rgba(200,140,255,.18);
}
.title .starseed{ opacity:.94; margin-left: .12em; }

.quotes{
  display:flex;
  flex-direction:column;
  gap: 12px;
  align-items:center;
}

.q{
  margin:0;
  font-family: "Cinzel",serif;
  font-weight: 600;
  font-size: clamp(16px, 2.05vw, 24px);
  letter-spacing: .03em;
  padding: 2px 12px;
  border-radius: 14px;
}

.q-gold{
  color: var(--gold);
  text-shadow:
    0 0 12px rgba(255,210,130,.58),
    0 0 28px rgba(255,170,90,.22);
}

.q-ice{
  color: var(--ice2);
  text-shadow:
    0 0 12px rgba(170,240,255,.55),
    0 0 28px rgba(120,200,255,.26);
}

.q-faint{
  color: rgba(255,255,255,.78);
  font-weight: 500;
  text-shadow: 0 0 14px rgba(170,240,255,.18);
}

.footer{
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  width: min(980px, 92vw);
  display:flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 70px);
  z-index:4;
}

.sigilBtn{
  text-decoration:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
  color: rgba(235,248,255,.92);
  user-select:none;
}

.sigilWrap{
  width: 92px;
  height: 92px;
  display:grid;
  place-items:center;
  filter: drop-shadow(0 0 16px rgba(140,220,255,.22))
          drop-shadow(0 0 20px rgba(255,200,120,.10));
}

.sigil{
  width: 92px;
  height: 92px;
  overflow: visible;
}

.ring, .ring2, .rune, .rune2, .orbit, .spark, .dots circle{
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.ring{
  stroke: rgba(225,248,255,.68);
  stroke-width: 2.2;
}

.ring2{
  stroke: rgba(170,240,255,.42);
  stroke-width: 1.8;
}

.dots circle{
  stroke: rgba(255,255,255,.55);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 6px rgba(170,240,255,.25));
}

.rune{
  stroke: rgba(255,214,132,.72);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 8px rgba(255,200,120,.22));
}

.rune2{
  stroke: rgba(180,245,255,.78);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 10px rgba(140,220,255,.28));
}

.orbit{
  stroke: rgba(255,255,255,.28);
  stroke-width: 1.4;
  stroke-dasharray: 180;
  animation: orbit 3.8s linear infinite;
}

@keyframes orbit{
  from{ stroke-dashoffset: 180; }
  to{ stroke-dashoffset: 0; }
}

.spark{
  stroke: rgba(255,255,255,.82);
  stroke-width: 2.4;
  animation: spark 1.9s ease-in-out infinite;
}

@keyframes spark{
  0%,100%{ opacity:.65; transform: scale(1); transform-origin: 86px 58px; }
  50%{ opacity:1; transform: scale(1.2); transform-origin: 86px 58px; }
}

.label{
  font-family: "Cinzel",serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(170,240,255,.18);
  opacity: .95;
}

.sigilBtn:hover .sigilWrap{
  filter: drop-shadow(0 0 18px rgba(140,220,255,.35))
          drop-shadow(0 0 22px rgba(255,210,140,.18));
}

.sigilBtn:focus-visible{
  outline: none;
}

.sigilBtn:focus-visible .sigilWrap{
  box-shadow: 0 0 0 3px rgba(140,220,255,.35);
  border-radius: 999px;
}

@media (max-width: 520px){
  .center{ top: 16%; }
  .footer{ bottom: 18px; gap: 28px; }
  .sigilWrap, .sigil{ width: 80px; height: 80px; }
  .label{ font-size: 12px; }
}


/* --- v11: ONLY requested changes: bolder/more visible text + sigil buttons --- */
.title{
  font-weight: 800 !important;
  text-shadow:
    0 0 16px rgba(210,245,255,.88),
    0 0 36px rgba(120,210,255,.62),
    0 0 70px rgba(90,140,255,.30);
}
.q{
  font-weight: 700 !important;
  text-shadow:
    0 0 12px rgba(255,255,255,.55),
    0 0 26px rgba(140,220,255,.42);
}
.sigilImg{
  width: 92px;
  height: auto;
  filter:
    drop-shadow(0 0 10px rgba(190,245,255,.55))
    drop-shadow(0 0 24px rgba(120,200,255,.28));
}
