@charset "UTF-8";
@font-face {
  font-family: 'NoirEtBlank';
  src: url('Assets/Fonts/noiretblanc_med_bold_italic-webfont.woff2') format('woff2'),
       url('Assets/Fonts/noiretblanc_med_bold_italic-webfont.woff') format('woff');
  font-style: normal;
}
@font-face {
  font-family: 'FranklinGothic';
  src: url('Assets/Fonts/franklingothic_cond-webfont.woff2') format('woff2'),
       url('Assets/Fonts/franklingothic_cond-webfont.woff') format('woff');
  font-style: normal;
}
@font-face {
  font-family: 'FranklinGothicBold';
  src: url('Assets/Fonts/franklingothic_bold-webfont.woff2') format('woff2'),
       url('Assets/Fonts/franklingothic_bold-webfont.woff') format('woff');
  font-style: normal;
}
.logo-box {
  max-width: 2000px;
  margin: 0 auto;
	padding-top: 30px;
	padding-bottom: 40px;
	padding-left: 20px;
	padding-right: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.site-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}
.center-screen {
  display: flex;
  justify-content: center;
  align-items: top;
  height: calc(100vh - 150px);
  width: 100%;
  overflow: hidden;
}
.main-box-wrapper {
  width: 1250px;
  height: 750px;
  position: relative;
  transform-origin: top center;
  transform: scale(calc(
    min(
      100% / 1000,
      (100vh - 100px) / 750
    )
  ));
}
.main-box {
  position: relative;
  width: 1250px;
  height: 750px;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1000 / 750;
  transform-origin: top center;
}
.icons-image {
  position: absolute;
  top: 5px;
  left: 650px;
  width: 489px;
  height: 383px;
  opacity: 0;
  animation: flickerOn 0.8s linear forwards;
  animation-delay: 1.5s; /* after stickers */
}
@keyframes flickerOn {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  15%  { opacity: 0; }
  25%  { opacity: 1; }
  30%  { opacity: 0; }
  45%  { opacity: 1; }
  60%  { opacity: 0.5; }
  100% { opacity: 1; }
}
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.glow-image {
  position: absolute;
  top: 360px;
  left: 70px;
  width: 450px;
  height: 450px;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeScale 1s ease-out forwards;
  animation-delay: 3s;
}

@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ---------- STICKERS ---------- */
.sticker {
  position: absolute;
  width: 100px;
  opacity: 0;
  z-index: 3;
  transform: translateY(-10px);

  animation: stickerIn 0.5s cubic-bezier(.25,.8,.25,1) forwards;
}

/* Individual delays */
.s1 { animation-delay: 1.1s; }
.s2 { animation-delay: 1.35s; }
.s3 { animation-delay: 1.6s; }

/* Position each sticker */
.s1 { top: 160px; left: 345px; }
.s2 { top: 320px; left: 300px; }
.s3 { top: 580px; left: 800px;
}
@keyframes stickerIn {
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.overlay-video {
  position: absolute;
  top: 425px;
  left: 100px;
  width: 350px;
  height: 350px;
  overflow: hidden;
  z-index: 2;
  clip-path: circle(0% at 50% 50%);
  animation: irisIn 1.2s ease-out forwards;
  animation-delay: 1.8s;
}
.overlay-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
@keyframes irisIn {
  to {
    clip-path: circle(50% at 50% 50%);
  }
}
.text-box {
  position: absolute;
  top: 410px;
  left: 865px;
  width: 360px;
  text-align: left;
  color: #222222;
  z-index: 3;
}
.text-box h {
  font-family: 'NoirEtBlank', 'Arial', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.text-box p {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.2;
}
.credit-list-a {
  position: absolute;
  top: 475px;
  left: 865px;
  width: 150px;
  text-align: left;
  color: #222222;
  z-index: 3;
}
.credit-list-a p {
  font-family: 'FranklinGothic', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}
.credit-list-b {
  position: absolute;
  top: 475px;
  left: 1010px;
  width: 200px;
  text-align: left;
  color: #222222;
  z-index: 3;
}
.credit-list-b p {
  font-family: 'FranklinGothicBold', 'Arial', sans-serif;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}
.fade-up {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.5s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}