:root {
  --beam-opacity: 0.38;
  --bulb-brightness: 1;
  --bulb-glow: 46px;
  --floor-glow-alpha: 0.63;
  --beam-left: 50vw;
  --beam-top: 114px;
  --beam-angle: 0deg;
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: #060304;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fffaf2;
  background:
    radial-gradient(
      circle at 50% 83%,
      rgba(255, 34, 18, 0.98) 0,
      rgba(220, 0, 0, 0.92) 18%,
      rgba(117, 0, 3, 0.95) 48%,
      rgba(24, 0, 2, 0.98) 78%,
      #050304 100%
    );
}

.coming-soon::before {
  position: absolute;
  inset: 0;
  z-index: -8;
  content: "";
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 82, 27, 0.42), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.68)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 44%, rgba(0, 0, 0, 0.36));
}

.coming-soon::after {
  position: absolute;
  inset: auto -12% -4% -12%;
  z-index: -3;
  height: 31%;
  content: "";
  background:
    radial-gradient(
      ellipse at 50% 0,
      rgba(255, 72, 28, var(--floor-glow-alpha)),
      rgba(174, 0, 0, 0.38) 32%,
      rgba(24, 0, 0, 0.82) 74%,
      rgba(4, 0, 1, 0.96) 100%
    );
  border-top: 1px solid rgba(255, 118, 65, 0.16);
  filter: blur(0.1px);
}

.curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -6;
  width: 50%;
  opacity: 0.48;
  background:
    repeating-linear-gradient(
      86deg,
      rgba(39, 0, 2, 0.72) 0,
      rgba(130, 0, 5, 0.26) 8%,
      rgba(237, 0, 0, 0.18) 15%,
      rgba(47, 0, 2, 0.62) 24%
    );
  mix-blend-mode: multiply;
}

.curtain-left {
  left: 0;
  transform: skewX(8deg);
  transform-origin: bottom left;
}

.curtain-right {
  right: 0;
  transform: skewX(-8deg);
  transform-origin: bottom right;
}

.stage-depth {
  position: absolute;
  inset: auto 0 0;
  z-index: -4;
  height: 36%;
  opacity: 0.46;
  background:
    linear-gradient(102deg, transparent 0 31%, rgba(0, 0, 0, 0.5) 31.4%, transparent 32.2%),
    linear-gradient(78deg, transparent 0 38%, rgba(0, 0, 0, 0.42) 38.5%, transparent 39.3%),
    linear-gradient(90deg, transparent 0 50%, rgba(0, 0, 0, 0.34) 50.3%, transparent 51%),
    linear-gradient(180deg, transparent 0 72%, rgba(0, 0, 0, 0.64) 72.5%, transparent 73.5%);
}

.lamp {
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 240px;
  height: 170px;
  justify-items: center;
  pointer-events: none;
  transform: translateX(-50%);
}

.lamp-cap {
  width: 174px;
  height: 16px;
  background: linear-gradient(180deg, #323849, #171a26);
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.48));
}

.chain-canvas {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 156px;
  height: 92px;
  overflow: visible;
  transform: translateX(-50%);
}

.chain-shadow,
.chain-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chain-shadow {
  stroke: rgba(0, 0, 0, 0.58);
  stroke-width: 8;
}

.chain-path {
  stroke: rgba(255, 231, 185, 0.72);
  stroke-width: 2.4;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.62));
}

.chain-link {
  fill: rgba(37, 22, 12, 0.78);
  stroke: rgba(255, 218, 154, 0.68);
  stroke-width: 1.8;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.42));
}

.bulb-rig {
  position: absolute;
  top: var(--bulb-y, 104px);
  left: var(--bulb-x, 120px);
  display: grid;
  justify-items: center;
  transform: translate(-50%, 0) rotate(var(--bulb-angle, 0deg));
  transform-origin: 50% 0;
  will-change: top, left, transform;
}

.socket {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 24px;
  margin-top: 4px;
  margin-bottom: 0;
  border-radius: 10px 10px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 233, 179, 0.9), rgba(163, 88, 28, 0.92)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 46%, rgba(255, 255, 255, 0.24));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -5px 8px rgba(73, 31, 8, 0.26),
    0 9px 18px rgba(0, 0, 0, 0.3);
}

.socket::before {
  position: absolute;
  top: -11px;
  left: 50%;
  width: 10px;
  height: 13px;
  border-radius: 999px 999px 2px 2px;
  content: "";
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 226, 155, 0.86), rgba(115, 62, 23, 0.9));
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.bulb {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 46% 34%, #ffffff 0 21%, #fff7dc 37%, #efb84b 66%, #7b4218 100%);
  box-shadow:
    0 0 18px rgba(255, 246, 196, 0.88),
    0 0 var(--bulb-glow) rgba(255, 176, 37, 0.72),
    0 0 84px rgba(244, 46, 12, 0.32);
  filter: brightness(var(--bulb-brightness));
  transition:
    filter 80ms linear,
    box-shadow 80ms linear;
}

.spotlight {
  position: absolute;
  top: var(--beam-top);
  left: var(--beam-left);
  z-index: -1;
  width: min(42rem, 68vw);
  height: calc(100svh - var(--beam-top));
  pointer-events: none;
  opacity: var(--beam-opacity);
  transform: translateX(-50%) rotate(var(--beam-angle));
  transform-origin: top center;
  will-change: top, left, transform, opacity;
  clip-path: polygon(45% 0, 55% 0, 73% 100%, 27% 100%);
  background:
    radial-gradient(ellipse at 50% 0, rgba(255, 249, 206, 0.9), rgba(255, 188, 35, 0.3) 26%, transparent 58%),
    linear-gradient(180deg, rgba(255, 174, 22, 0.78), rgba(255, 58, 0, 0.18) 58%, transparent);
  filter: blur(0.4px);
  mix-blend-mode: screen;
  transition: opacity 90ms linear;
}

.announcement {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(92vw, 1120px);
  justify-items: center;
  padding: 10.5rem 1.25rem 7.4rem;
  text-align: center;
}

.brand-mark {
  width: 108px;
  height: 108px;
  object-fit: contain;
  opacity: 0.95;
  filter:
    drop-shadow(0 0 18px rgba(255, 148, 28, 0.42))
    drop-shadow(0 16px 34px rgba(0, 0, 0, 0.34));
}

.brand-name {
  margin: 0.85rem 0 1.6rem;
  color: #ffe2ba;
  font-size: 1.22rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

h1 {
  max-width: 100%;
  margin: 0;
  font-family:
    Impact, Haettenschweiler, "Arial Narrow Bold", "Bebas Neue", sans-serif;
  font-size: 8.6rem;
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 5px 0 rgba(80, 0, 0, 0.3),
    0 20px 48px rgba(0, 0, 0, 0.44),
    0 0 38px rgba(255, 88, 30, 0.34);
}

.stay-tuned {
  margin: 1.45rem 0 0;
  color: #fff4ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.58),
    0 0 24px rgba(255, 201, 130, 0.24);
}

.tagline {
  max-width: 34rem;
  margin: 1.45rem 0 0;
  color: rgba(255, 246, 233, 0.86);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.62);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(5.6rem, 1fr));
  gap: 0.8rem;
  width: min(100%, 31rem);
  margin-top: 1.8rem;
}

.countdown-unit {
  display: grid;
  min-height: 5.8rem;
  place-items: center;
  padding: 0.75rem 0.55rem;
  border: 1px solid rgba(255, 226, 186, 0.2);
  border-radius: 8px;
  background: rgba(18, 0, 0, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.countdown-value {
  color: #fffaf1;
  font-family:
    Impact, Haettenschweiler, "Arial Narrow Bold", "Bebas Neue", sans-serif;
  font-size: 2.25rem;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 171, 54, 0.36);
}

.countdown-label {
  color: rgba(255, 228, 199, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-bar {
  position: absolute;
  right: 1rem;
  bottom: 1.1rem;
  left: 1rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  align-items: center;
  justify-content: center;
  color: rgba(255, 248, 239, 0.88);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.8),
    0 0 22px rgba(255, 95, 24, 0.24);
}

.contact-bar a {
  display: inline-flex;
  min-height: 2.1rem;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.contact-bar a:hover,
.contact-bar a:focus-visible {
  color: #fff;
  outline: none;
}

.facebook-link {
  width: 2.1rem;
  border: 1px solid rgba(255, 226, 186, 0.28);
  border-radius: 999px;
  background: rgba(11, 0, 0, 0.24);
}

.facebook-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

@media (max-width: 900px) {
  .announcement {
    padding-top: 9.7rem;
  }

  .brand-mark {
    width: 96px;
    height: 96px;
  }

  h1 {
    font-size: 5.6rem;
  }

  .stay-tuned {
    font-size: 1.65rem;
  }

  .countdown {
    width: min(100%, 27rem);
    grid-template-columns: repeat(4, minmax(4.7rem, 1fr));
  }
}

@media (max-width: 560px) {
  .lamp {
    width: 190px;
    height: 142px;
  }

  .lamp-cap {
    width: 136px;
  }

  .chain-canvas {
    width: 120px;
    height: 74px;
  }

  .socket {
    width: 58px;
    height: 20px;
    margin-top: 8px;
    margin-bottom: -7px;
  }

  .bulb {
    width: 48px;
    height: 48px;
  }

  .spotlight {
    width: 94vw;
    height: 62vh;
  }

  .announcement {
    width: 100%;
    padding: 8.1rem 1rem 8rem;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
  }

  .brand-name {
    margin: 0.55rem 0 0.95rem;
    font-size: 1rem;
  }

  h1 {
    font-size: 3.7rem;
    line-height: 0.95;
  }

  .stay-tuned {
    margin-top: 1.1rem;
    font-size: 1.24rem;
  }

  .tagline {
    margin-top: 1.25rem;
    font-size: 1rem;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 1.35rem;
  }

  .countdown-unit {
    min-height: 4.9rem;
    padding: 0.62rem 0.25rem;
  }

  .countdown-value {
    font-size: 1.72rem;
  }

  .countdown-label {
    font-size: 0.62rem;
  }

  .contact-bar {
    bottom: 0.8rem;
    gap: 0.35rem 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 370px) {
  h1 {
    font-size: 3.1rem;
  }

  .contact-bar {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bulb,
  .spotlight {
    transition: none;
  }
}
