@font-face {
  font-family: 'SNPro';
  src: url('assets/fonts/SNPro-Thin.otf') format('opentype');
  font-weight: 100;
}
@font-face {
  font-family: 'SNPro';
  src: url('assets/fonts/SNPro-Light.otf') format('opentype');
  font-weight: 300;
}
@font-face {
  font-family: 'SNPro';
  src: url('assets/fonts/SNPro-Regular.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'SNPro';
  src: url('assets/fonts/SNPro-Medium.otf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'SNPro';
  src: url('assets/fonts/SNPro-Heavy.otf') format('opentype');
  font-weight: 800;
}
@font-face {
  font-family: 'SNPro';
  src: url('assets/fonts/SNPro-Black.otf') format('opentype');
  font-weight: 900;
}

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

body {
  font-family: 'SNPro', sans-serif;
  color: #1a1a2e;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── VIDEO BACKGROUNDS ── */
.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ── NAV ── */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(80, 20, 140, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: none;
}

nav .logo img {
  height: 100px;
}

.btn-play-nav {
  display: inline-block;
  font-family: 'SNPro', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-play-nav:hover {
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* ── SHARED ── */
section {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}

.section-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-weight: 900;
  font-size: clamp(42px, 9vw, 72px);
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #3a1a5e;
}

/* ── GOLD BORDERED CARD ── */
.gold-card {
  background: #fff;
  border: 12px solid #F7CC45;
  border-radius: 40px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}

/* ── GAME BUTTON STYLE ── */
.btn-play-now,
.btn-play-nav,
.btn-download {
  display: inline-block;
  background: linear-gradient(180deg, #fdd835, #f9a825);
  color: #fff;
  font-family: 'SNPro', sans-serif;
  font-weight: 900;
  font-size: 28px;
  padding: 22px 56px;
  border-radius: 50px;
  border: 4px solid #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  box-shadow: 0 6px 0 rgba(0,0,0,0.3), 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-play-now:hover,
.btn-play-nav:hover,
.btn-download:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 0 rgba(0,0,0,0.3), 0 12px 24px rgba(0,0,0,0.3);
}

.btn-play-now:active,
.btn-play-nav:active,
.btn-download:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.2);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  background: url('assets/stills/PURPLE_LETTERS2.png') center/cover;
  overflow: hidden;
}

.hero .video-bg-overlay {
  background: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}

.hero-logo {
  width: clamp(250px, 45vw, 640px);
  position: relative;
  z-index: 2;
  margin-bottom: -60px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

.hero-glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 30px;
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 48px) clamp(30px, 4vw, 57px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-btn {
  position: relative;
  z-index: 3;
  margin-top: -45px;
}

.hero-content h1 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 60px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: uppercase;
  text-shadow: none;
}

.hero-content h1 span {
  color: #F7CC45;
}

.hero-content h1 span.shadow {
  text-shadow: 0 3px 12px rgba(0,0,0,0.4);
}

.hero-content h1 span.white {
  color: #fff;
}

.hero-content h1 span.yellow {
  color: #EA3ED4;
  text-shadow: none;
}

.hero-content h1 span.purple {
  color: #9242B5;
}

/* Decorative tiles around hero */
.hero-tiles {
  position: absolute;
  z-index: 1;
}

.hero-tiles img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tile-e { width: 90px; top: 18%; left: 2%; transform: rotate(-15deg); }
.tile-l { width: 70px; top: 60%; left: 5%; transform: rotate(10deg); }
.tile-a { width: 100px; bottom: 5%; right: 8%; transform: rotate(12deg); }
.tile-p { width: 60px; top: 12%; right: 8%; transform: rotate(-8deg); }
.tile-n { width: 50px; bottom: 20%; left: 15%; transform: rotate(20deg); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── WHAT IS SECTION ── */
.what-is {
  background: url('assets/stills/PURPLE_LETTERS2.png') center/cover;
  padding: 80px 20px;
}


.what-is .section-inner {
  position: relative;
}

.what-is-decor-left {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(calc(-50% - 80px));
  width: 300px;
  z-index: 10;
}

.what-is-decor-left img {
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

.what-is-decor-right {
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(calc(-50% - 100px));
  width: 450px;
  z-index: 10;
}

.what-is-decor-right img {
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

.play-arrow-decor {
  display: none;
}

.movie-play-btn {
  position: absolute;
  top: calc(50% - 35px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  z-index: 10;
  pointer-events: none;
  animation: pulse-play 1.5s ease-in-out infinite;
}

@keyframes pulse-play {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

.video-player-wrap {
  position: relative;
  cursor: pointer;
  text-align: center;
  margin: 0 auto 40px;
}

.video-player-wrap .what-is-phones {
  max-width: 1540px;
  width: 85%;
  margin: 0 auto;
  border-radius: 16px;
}

.video-with-frame {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.video-with-frame.active {
  display: block;
}

.what-is-video {
  display: block;
  border-radius: clamp(30px, 4vw, 65px);
  overflow: hidden;
  background: #000;
  margin: 0 auto;
  pointer-events: none;
}

.video-phone-frame {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  pointer-events: none;
  z-index: 2;
}

.what-is .section-title {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.what-is-phones {
  display: block;
  max-width: 1540px;
  width: 110%;
  margin: 0 auto 40px;
  border-radius: 16px;
}

.what-is .gold-card {
  width: calc(100% - 200px);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.what-is-card {
  position: relative;
  padding: 50px 80px;
}

.what-is-tile-left {
  position: absolute;
  left: -160px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  z-index: 3;
}

.what-is-tile-left img {
  width: 100%;
}

.what-is .gold-card p {
  font-size: 35px;
  line-height: 1.7;
  color: #666666;
}

/* ── HAVE THE LAST WORD ── */
.have-last-word {
  background: url('assets/stills/letter_bg.png') center/cover;
  padding: 80px 20px;
}

.have-last-word .video-bg-overlay {
  background: rgba(20, 150, 140, 0.3);
}

.have-last-word .section-inner {
  width: calc(100% - 200px);
  max-width: 1200px;
  position: relative;
}

.have-last-word .decor-left {
  position: absolute;
  left: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 324px;
  z-index: 3;
}

.have-last-word .decor-left img {
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

.have-last-word .decor-right {
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  z-index: 3;
}

.have-last-word .decor-right img {
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

.have-last-word .gold-card {
  width: 100%;
  border-color: #9242B5;
  padding: 120px 170px;
}

.have-last-word .gold-card h2 {
  font-weight: 900;
  font-size: clamp(42px, 9vw, 72px);
  text-transform: uppercase;
  color: #FF21DA;
  margin-bottom: 20px;
  text-align: left;
}

.have-last-word .gold-card ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.have-last-word .gold-card li {
  font-size: 35px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 8px;
}

.have-last-word .gold-card .btn-wrap {
  text-align: center;
}

.mobile-pirate {
  display: none;
}

/* ── WHY PLAY ── */
.why-play {
  background: url('assets/stills/ORANGE_LETTERS.png') center/cover;
  padding: 80px 20px;
}

.why-play .video-bg-overlay {
  background: rgba(140, 60, 200, 0.3);
}

.why-play .section-inner {
  max-width: 1500px;
}

.why-play .section-title {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.why-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-img {
  width: 22%;
  flex-shrink: 0;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

.why-img:nth-of-type(2),
.why-img:nth-of-type(4) {
  transform: translateY(30px);
}

.why-label {
  background: #fffde8;
  border: 8px solid #FFCA00;
  border-radius: 30px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
  margin: 0 -60px;
  min-width: 200px;
}

.why-label h3 {
  font-weight: 900;
  font-size: 22px;
  color: #666666;
  margin-bottom: 6px;
}

.why-label p {
  font-size: 20px;
  color: #666666;
  line-height: 1.5;
}

/* ── CHARACTERS ── */
.characters {
  background: #fff;
  padding: 60px 0;
}

.characters .section-inner {
  max-width: 100%;
}

.character-scroll {
  overflow: hidden;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.character-scroll.loaded {
  opacity: 1;
}

.character-track {
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


.character-track img {
  width: 480px;
  height: 480px;
  object-fit: contain;
  filter: none;
  flex-shrink: 0;
}


/* ── CTA ── */
.cta {
  background: url('assets/stills/GREEN_LETTERS.png') center/cover;
  text-align: center;
  padding: 80px 20px;
}

.cta .video-bg-overlay {
  background: rgba(200, 120, 20, 0.3);
}

.cta .section-inner {
  max-width: 1500px;
}

.cta .play-tiles {
  max-width: 1300px;
  margin: 0 auto 30px;
}

.cta .play-tiles img {
  width: 100%;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25));
}


/* ── FOOTER ── */
footer {
  background: url('assets/stills/PURPLE_LETTERS2.png') center/cover;
  position: relative;
  padding: 50px 20px;
  text-align: center;
}

footer .footer-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

footer .footer-logo img {
  height: 144px;
  margin-bottom: 20px;
}

footer p, footer a {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 2;
}

footer a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer .footer-links {
  margin-top: 0;
}

footer .footer-links a {
  margin: 0 8px;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  padding: 20px;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  font-size: 18px;
  color: #1a1a2e;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 25px 16px;
  }

  nav .logo img {
    height: 50px;
  }

  .hamburger {
    display: none;
  }

  .btn-play-nav {
    display: none;
  }

  .btn-play-now,
  .btn-download {
    font-size: 22px;
    padding: 18px 40px;
  }

  /* HERO */
  .hero {
    min-height: 58vh;
    padding: 80px 16px 40px;
  }

  .hero .video-bg video {
    min-width: 0;
    width: auto;
    height: 100%;
  }

  .hero-logo {
    width: clamp(250px, 70vw, 400px);
    margin-bottom: -40px;
  }

  .hero-content {
    margin-top: 70px;
  }

  .hero-glass {
    padding: 60px 24px 40px;
    border-radius: 20px;
  }

  .hero-content h1 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .tile-e, .tile-l, .tile-a, .tile-p, .tile-n {
    width: 40px !important;
  }

  /* SECTIONS GENERAL */
  section {
    padding: 50px 16px;
  }

  .section-title {
    font-size: clamp(38px, 9vw, 52px);
  }

  .have-last-word .gold-card h2 {
    font-size: clamp(38px, 9vw, 52px);
  }

  /* WHAT IS */
  .video-player-wrap {
    width: 100%;
    margin-top: -75px;
  }

  .video-player-wrap .what-is-phones {
    width: 100%;
    max-width: 100%;
  }

  .movie-play-btn {
    width: 60px;
    top: calc(50% - 45px);
  }

  .play-arrow-decor {
    display: block;
    text-align: center;
    margin: -25px auto -80px;
    padding-left: 150px;
    position: relative;
    z-index: 5;
  }

  .play-arrow-decor img {
    width: 96px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  }

  .what-is .gold-card {
    width: 90%;
  }

  .what-is .gold-card p {
    font-size: 18px;
  }

  .have-last-word .gold-card li {
    font-size: 18px;
  }

  .why-label h3 {
    font-size: 18px;
  }

  .why-label p {
    font-size: 18px;
  }

  footer p, footer a {
    font-size: 18px;
  }

  footer .footer-links a {
    font-size: 18px;
  }

  .what-is-decor-left,
  .what-is-decor-right,
  .what-is-tile-left {
    display: none;
  }

  /* HAVE THE LAST WORD */
  .have-last-word .section-inner {
    width: 90%;
  }

  .have-last-word .decor-left,
  .have-last-word .decor-right {
    display: none;
  }

  .have-last-word .gold-card {
    padding: 30px 24px 70px;
  }

  .mobile-pirate {
    display: block;
    text-align: center;
    margin: 20px 0;
  }

  .mobile-pirate img {
    width: 200px;
  }

  .have-last-word .gold-card h2 {
    font-size: clamp(28px, 7vw, 42px);
    text-align: center;
  }

  .gold-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  /* WHY PLAY */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    row-gap: 0;
    align-items: center;
  }

  .why-img {
    width: 100%;
    border-radius: 12px;
    margin-top: -40px;
  }

  .why-img:nth-of-type(1) {
    margin-top: 0;
  }

  .why-img:nth-of-type(2),
  .why-img:nth-of-type(4) {
    transform: none;
  }

  .why-label {
    margin: 0;
    min-width: unset;
    width: 100%;
    border-radius: 24px;
    padding: 20px 16px;
  }


  /* Row 1: label left, img right */
  .why-label[style] {
    transform: none !important;
  }

  .why-label:nth-of-type(1) { grid-column: 1; grid-row: 1; margin-left: 40px; }
  .why-img:nth-of-type(1) { grid-column: 2; grid-row: 1; }

  /* Row 2: img left, label right (Challenge Your Mind) */
  .why-img:nth-of-type(2) { grid-column: 1; grid-row: 2; }
  .why-label:nth-of-type(3) { grid-column: 2; grid-row: 2; margin-left: -40px; margin-top: -40px; }

  /* Row 3: label left, img right (A Unique Twist) */
  .why-label:nth-of-type(2) { grid-column: 1; grid-row: 3; margin-left: 40px; margin-top: -40px; }
  .why-img:nth-of-type(3) { grid-column: 2; grid-row: 3; }

  /* Row 4: img centered */
  .why-img:nth-of-type(4) { grid-column: 1 / 3; grid-row: 4; width: 50%; justify-self: center; }

  /* CHARACTERS */
  .character-track img {
    width: 300px;
    height: 300px;
  }

  /* CTA */
  .cta .play-tiles {
    max-width: 100%;
  }

  /* FOOTER */
  footer .footer-logo img {
    height: 80px;
  }
}
