@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;
  overflow: scroll;
}
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeScale 1s ease-out forwards;
  animation-delay: 0.7s;
}
.bg2-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transform: scale(0.90);
  animation: fadeScale 1s ease-out forwards;
  animation-delay: 0.7s;
}
@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.eye {
  position: absolute;
  width: 181px;   /* match EyeWhite size */
  height: 181px;
  top: 360px;
  left: 210px;
}

.eye img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* important */
}

.eye-white {
  z-index: 1;
}

.iris {
  z-index: 2;
}

.pupil {
  z-index: 3;
}
.cash-image {
  position: absolute;
  top: 505px;
  left: 695px;
  width: 480px;
  height: 227px;
  object-fit: cover;
  z-index: 4;
  opacity: 0;
  transform: translateY(-15px);
  animation: cashIn 0.5s ease-out forwards;
  animation-delay: 2s;
}
@keyframes cashIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.overlay-video {
  position: absolute;
  top: 65px;
  left: 345px;
  width: 560px;
  height: 560px;
  overflow: hidden;
  z-index: 3;
  clip-path: circle(0% at 50% 50%);
  animation: irisIn 1.5s ease-out forwards;
  animation-delay: 0.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: 550px;
  left: 200px;
  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: 615px;
  left: 200px;
  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: 615px;
  left: 345px;
  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);
  }
}