/* ============================================================
   INFINITY KINGDOM — style.css
   Fantasy theme: deep blues, golds, vibrant magical colors
   ============================================================ */

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --gold: #f5c24a;
  --gold-light: #ffe29a;
  --gold-dark: #c8922a;
  --bg-dark: #0c1421;
  --bg-mid: #122036;
  --bg-light: #1a2f4c;
  --accent: #5dade2;
  --text: #e3e8ee;
  --text-muted: #a1b4c7;
  --red: #c0392b;
  --white: #ffffff;
  /* Swiper theme */
  --swiper-pagination-color: var(--gold);
  --swiper-pagination-bullet-inactive-color: rgba(245, 194, 74, .35);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-size: 10px;
}

/* ── RESET ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ── PARTICLE CANVAS ─────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────── */
.gold {
  color: var(--gold);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .7);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  color: #1a0800;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  letter-spacing: .08em;
  transition: background-position .4s, transform .2s, box-shadow .3s;
  box-shadow: 0 4px 24px rgba(245, 194, 74, .4), 0 0 0 1px var(--gold-dark);
  margin-top: 28px;
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(245, 194, 74, .55);
}

.btn-gold.btn-sm {
  padding: 12px 28px;
  font-size: .9rem;
  margin-top: 20px;
}

/* ── SWIPER MAIN ─────────────────────────────────────────── */
.main-swiper {
  position: fixed;
  inset: 0;
  z-index: 1;
}

.swiper-slide {
  overflow: hidden;
}

/* Custom Pagination using swiper_bullet_active.png */
.swiper-pagination {
  right: 28px !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  bottom: auto !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(245, 194, 74, .25) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1) !important;
  position: relative;
}

.swiper-pagination-bullet-active {
  background: transparent !important;
  width: 24px !important;
  height: 24px !important;
  background-image: url('swiper_bullet_active.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  filter: drop-shadow(0 0 8px rgba(245, 194, 74, .8));
}

/* ── FLOATING CTA ────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  top: 20px;
  right: 60px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a0800;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: .85rem;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(245, 194, 74, .35);
  transform: translateY(-80px);
  opacity: 0;
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1), opacity .5s;
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-cta:hover {
  box-shadow: 0 6px 30px rgba(245, 194, 74, .55);
}

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  backdrop-filter: blur(6px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  position: relative;
  width: min(900px, 90vw);
  background-image: url('first_screen_left_bg.png');
  background-size: 95% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 14px;
  transform: scale(.9);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 42px;
  right: 58px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(245, 194, 74, .6);
}

.modal-video-wrap {
  width: 99%;
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
  top: 2px;
  right: 1px;
}

.trailer-vid-element {
  width: 93% !important;
  height: 93% !important;
  object-fit: contain;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 1 — HERO
   ═══════════════════════════════════════════════════════════ */
.slide-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Background video */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8, 16, 28, .4) 0%, rgba(8, 16, 28, .8) 100%);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 6vw;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo-img {
  width: 420px;
  max-width: 100%;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, .8));
}

.hero-subtitle {
  display: block;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
}

.hero-headline {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .9), 0 0 40px rgba(245, 194, 74, .3);
  margin-bottom: 10px;
}

.hero-tagline {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(.85rem, 1.4vw, 1.1rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: .04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
  opacity: .9;
  text-align: center;
}

/* Play/Trailer button using provided images */
.hero-play {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  cursor: pointer;
  width: fit-content;
  transition: transform .2s;
}

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

.play-btn-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(245, 194, 74, .4));
  transition: filter 0.3s, transform 0.3s;
}

.hero-play:hover .play-btn-img {
  filter: drop-shadow(0 4px 15px rgba(245, 194, 74, .8));
}

.play-label {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .9);
}

/* PC CTA button */
.btn-pc-download {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(20, 50, 80, .9), rgba(12, 32, 56, .9));
  border: 2px solid var(--gold-dark);
  border-radius: 5px;
  color: var(--white);
  transition: border-color .3s, box-shadow .3s, transform .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .6);
  margin-bottom: 30px;
  backdrop-filter: blur(4px);
}

.btn-pc-download:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(28, 66, 104, .9), rgba(16, 42, 76, .9));
  box-shadow: 0 6px 30px rgba(245, 194, 74, .4);
  transform: translateY(-2px);
}

.btn-pc-icon {
  color: var(--gold);
  display: flex;
}

.btn-pc-text {
  display: flex;
  flex-direction: column;
}

.btn-pc-top {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-light);
}

.btn-pc-main {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.btn-arrow {
  color: var(--gold);
  margin-left: 4px;
  transition: transform .3s;
}

.btn-pc-download:hover .btn-arrow {
  transform: translateX(4px);
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-lbl {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .05em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(245, 194, 74, .3);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: hint-fade 3s ease-in-out infinite;
}

.scroll-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-chevrons i {
  font-size: .75rem;
  animation: chevron-roll .8s ease-in-out infinite alternate;
}

.scroll-chevrons i:last-child {
  animation-delay: .2s;
  opacity: .5;
}

@keyframes hint-fade {

  0%,
  100% {
    opacity: .4
  }

  50% {
    opacity: 1
  }
}

@keyframes chevron-roll {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(5px)
  }
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 2 — VIDEO SHOWCASE
   ═══════════════════════════════════════════════════════════ */
.slide-video-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.video-showcase-section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #020812;
}

.video-showcase-section .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
}

.video-showcase-section .section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.video-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.video-showcase-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}

.vs-slider-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vs-decor-bg {
  display: none;
}

/* deprecated */

.vs-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 50vh;
  /* Approximate height based on aspect ratio */
  min-height: 480px;
  perspective: 1500px;
  /* Enable 3D space */
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.vs-slide {
  position: absolute;
  width: 80%;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease;
  background: transparent;
  cursor: pointer;
  border: none;
}

.vs-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-video-bg {
  position: absolute;
  top: 49.7%;
  left: 50.7%;
  transform: translate(-50%, -50%);
  width: 96.5%;
  /* Makes the frame extend beyond the video */
  max-width: 900px;
  height: auto;
  object-fit: contain;
  z-index: 0;
  /* Important: Frame goes BEHIND video */
  pointer-events: none;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
}

.vs-video {
  position: relative;
  width: 90%;
  /* Scale down the video slightly to sit inside the frame visually */
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  z-index: 1;
  /* OVER frame */
  border-radius: 4px;
}


/* Hide raw info */
.vs-slide-info {
  display: none;
}

/* Slider States */
.vs-slide.vs-hidden {
  opacity: 0;
  transform: translateX(0) scale(0.7) translateZ(-500px);
  pointer-events: none;
  z-index: 1;
}

.vs-slide.vs-prev {
  opacity: 0.6;
  transform: translateX(-55%) scale(0.85) translateZ(-150px) rotateY(25deg);
  z-index: 2;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.6);
}

.vs-slide.vs-next {
  opacity: 0.6;
  transform: translateX(55%) scale(0.85) translateZ(-150px) rotateY(-25deg);
  z-index: 2;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.6);
}

.vs-slide.vs-active {
  opacity: 1;
  transform: translateX(0) scale(1) translateZ(0) rotateY(0deg);
  z-index: 5;
  box-shadow: none;
  cursor: default;
}

.vs-active .vs-video-bg {
  filter: drop-shadow(0 0 15px rgba(245, 194, 74, 0.5));
}

/* Play/Pause Overlays */
.vs-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  z-index: 3;
  pointer-events: none;
}

.vs-active .vs-play-overlay {
  opacity: 1;
}

.vs-active.is-playing .vs-play-overlay {
  opacity: 0 !important;
}

.vs-active.is-playing.is-paused .vs-play-overlay {
  opacity: 1;
}

.vs-active:not(.is-playing):hover .vs-play-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}

.vs-play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #d4af37;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  cursor: pointer;
}

.vs-play-btn:hover {
  transform: scale(1.1);
  background: rgba(212, 175, 55, 0.2);
  border-color: #fff;
  color: #fff;
}

.vs-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 2px;
}

.vs-fullscreen-btn {
  position: absolute;
  bottom: 25px;
  right: 40px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  z-index: 10;
}

.vs-active:hover .vs-fullscreen-btn {
  opacity: 1;
}

.vs-fullscreen-btn:hover {
  background: var(--gold);
  color: #000;
}

/* Active Info Display below */
.vs-active-info-display {
  text-align: center;
  margin-top: 30px;
  max-width: 640px;
  min-height: 80px;
  transition: opacity 0.3s ease;
}

.vs-active-info-display h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 1);
}

.vs-active-info-display p {
  font-family: 'Inter', sans-serif;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 1);
}

/* Dot Navigation */
.vs-dots {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.vs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #d4af37;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.vs-dot.vs-dot-active {
  background: transparent;
  width: 14px;
  height: 14px;
  border: none;
  background-image: url('swiper_bullet_active.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.8));
  transform: scale(1.2);
}

/* Showcase CTA */
.btn-showcase-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1b1710;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 35px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(220, 168, 73, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  border: 1px solid #ffe9a6;
}

.btn-showcase-cta i {
  font-size: 1.3rem;
  color: #1a160d;
}

.btn-showcase-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 168, 73, 0.6);
  filter: brightness(1.1);
}

/* Arrow Navigation */
.vs-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #d4af37;
  z-index: 20;
  cursor: pointer;
  transition: transform 0.3s, filter 0.3s;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-arrow img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
  transition: filter 0.3s;
}

.vs-arrow:hover {
  transform: translateY(-50%) scale(1.15);
}

.vs-arrow:hover img {
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.6));
}

.vs-arrow-left {
  left: -5%;
}

.vs-arrow-right {
  right: -5%;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 3 — FEATURES CAROUSEL
   ═══════════════════════════════════════════════════════════ */
.slide-features {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(0 0 0 / 84%), rgba(0, 0, 0, 0.7)), url(imgi_30_bg1.webp);
  background-size: cover;
  background-position: center;
}

.features-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 40px max(4vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.swiper-features {
  width: 100%;
  margin-top: 30px;
}

.feat-slide {
  padding: 0 10px 20px;
}

.feat-card {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: rgb(7 18 42);
  border: 1px solid rgba(245, 194, 74, .15);
  border-radius: 8px;
  overflow: hidden;
}

.feat-art {
  flex: 0 0 340px;
  height: 280px;
  position: relative;
  overflow: hidden;
}

.feat-art-1 {
  background: linear-gradient(135deg, #102030, #2a4060);
}

.feat-art-2 {
  background: linear-gradient(135deg, #3a1010, #7a2020);
}

.feat-art-3 {
  background: linear-gradient(135deg, #103020, #2a6040);
}

.feat-art-4 {
  background: linear-gradient(135deg, #2a1040, #5a2080);
}

/* Medieval CSS Art */
.feat-art-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Castle art */
.castle-art {
  position: relative;
  width: 180px;
  height: 160px;
}

.castle-wall {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 140px;
  height: 50px;
  background: rgba(180, 190, 200, .8);
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, .2);
}

.castle-tower {
  position: absolute;
  bottom: 10px;
  width: 34px;
  height: 90px;
  background: rgba(150, 160, 170, .9);
  border: 2px solid rgba(255, 255, 255, .2);
}

.c-left {
  left: 10px;
}

.c-right {
  right: 10px;
}

.castle-keep {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 70px;
  background: rgba(200, 210, 220, .9);
  border: 2px solid rgba(255, 255, 255, .3);
}

.castle-flag {
  position: absolute;
  bottom: 130px;
  left: 50%;
  width: 20px;
  height: 14px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* Dragon Egg art */
.dragon-art {
  position: relative;
  width: 160px;
  height: 160px;
}

.dragon-egg {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 110px;
  background: radial-gradient(ellipse at center, #e74c3c, #8e44ad);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: inset -10px -10px 20px rgba(0, 0, 0, .5), 0 0 20px rgba(231, 76, 60, .6);
}

.egg-crack {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 40px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: .8;
  filter: drop-shadow(0 0 4px #ff0);
}

.element-glow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(231, 76, 60, .8) 0%, transparent 70%);
  animation: glow-pulse 2s infinite alternate;
}

/* Summoning stone art */
.immortal-summon-art {
  position: relative;
  width: 160px;
  height: 160px;
}

.summon-stone {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 80px;
  background: linear-gradient(135deg, #1abc9c, #16a085);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 30px rgba(26, 188, 156, .6);
}

.summon-beam {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 100px;
  background: linear-gradient(to top, rgba(26, 188, 156, .8), transparent);
  filter: blur(4px);
}

.spirit-wisps {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(26, 188, 156, .2) 0%, transparent 60%);
  animation: spin 4s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Alliance flag pulse */
.pulse {
  animation: ring-pulse 2s infinite;
}

.feat-card-body {
  flex: 1;
  padding: 30px 30px 30px 0;
}

.feat-number {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(245, 194, 74, .2);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  text-align: left !important;
}

.feat-card-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
  text-align: left !important;
}

.feat-card-body p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text);
  opacity: .9;
  margin-bottom: 22px;
  text-align: left !important;
}

.feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  transition: gap .3s;
}

.feat-cta:hover {
  gap: 14px;
}

.feat-pagination {
  margin-top: 20px;
  text-align: center;
}

.feat-btn-prev,
.feat-btn-next {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  z-index: 10;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .3s, filter .3s;
}

.feat-btn-prev:hover,
.feat-btn-next:hover {
  transform: translateY(-50%) scale(1.15);
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.6));
}

.feat-btn-prev {
  left: 200px;
}

.feat-btn-next {
  right: 200px;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 4 — CHARACTER SLIDER
   ═══════════════════════════════════════════════════════════ */
.slide-chars {
  position: relative;
  overflow: hidden;
}

.char-slider-section {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Background Images */
.char-bg-list {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.char-bg {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  right: 8%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.char-bg.active {
  opacity: 1;
}

/* Dark gradient covers left half, chars show freely on right */
.char-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2, 8, 18, 0.98) 0%, rgba(2, 8, 18, 0.95) 45%, rgba(2, 8, 18, 0.5) 65%, rgba(2, 8, 18, 0.0) 100%);
  z-index: 1;
}

/* Content Layout: 2-col grid, 300px padding each side for arrows */
.char-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(100% - 120px);
  /* leave room for char-bottom */
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 300px;
  gap: 0;
  align-items: center;
}

/* Left column: text info above, video below */
.char-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  padding-right: 20px;
}

/* Text block */
.char-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Right spacer: empty — char bg image shows through */
.char-right-spacer {
  flex: 1;
}

/* Bottom: dots + CTA, centered horizontally */
.char-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 300px;
}

.char-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #020812;
}

/* Frame image BEHIND the video */
.char-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 0;
  pointer-events: none;
}

.char-video {
  position: absolute;
  top: 24px;
  left: 15px;
  right: 8px;
  width: calc(100% - 39px);
  height: calc(100% - 46px);
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
  border-radius: 4px;
  /* match inner curve */
}

.char-video.active {
  opacity: 1;
}

/* Dot navigation */
.char-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.char-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #d4af37;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.char-dot.active {
  background: transparent;
  border: none;
  width: 16px;
  height: 16px;
  background-image: url('swiper_bullet_active.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1);
}

.char-info-list {
  position: relative;
  margin: 0;
  min-height: 56px;
}

.char-info {
  display: none;
  animation: fadeInUp 0.4s ease forwards;
}

.char-info.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.char-name {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 4px;
}

.char-role {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: #d4af37;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* Arrow buttons: 300px from left/right edge */
.char-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 20;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 65px;
  height: 65px;
  transition: transform 0.3s, filter 0.3s;
}

.char-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.char-arrow:hover {
  transform: translateY(-50%) scale(1.15);
}

.char-arrow:hover img {
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.5));
}

.char-arrow-prev {
  left: 110px;
}

.char-arrow-next {
  right: 110px;
}


.slide-captains {
  position: relative;
  display: flex;
  align-items: center;
}

.captains-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #09121c 0%, #1c0e22 50%, #09121c 100%);
}

.captains-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 max(5vw, 40px);
  align-items: center;
}

.captains-intro {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text);
  opacity: .85;
  margin-bottom: 24px;
}

.captain-display {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.captain-portrait {
  position: relative;
  width: 110px;
  height: 130px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(245, 194, 74, .4);
  flex-shrink: 0;
}

.cap-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* Colorful knightly themes */
.cap-art-0 {
  background: linear-gradient(135deg, #5e3d18, #b8860b);
  color: #fff;
}

/* Earth/Cleopatra */
.cap-art-1 {
  background: linear-gradient(135deg, #7e2626, #e74c3c);
  color: #fff;
}

/* Fire */
.cap-art-2 {
  background: linear-gradient(135deg, #204060, #3498db);
  color: #fff;
}

/* Water */
.cap-art-3 {
  background: linear-gradient(135deg, #2d5a27, #2ecc71);
  color: #fff;
}

/* Wind */
.cap-art-4 {
  background: linear-gradient(135deg, #5a306b, #9b59b6);
  color: #fff;
}

/* Shadow/Lightning */
.cap-art-5 {
  background: linear-gradient(135deg, #606060, #bdc3c7);
  color: #fff;
}

/* Holy */

.cap-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, .2) 0%, transparent 70%);
}

.captain-info {
  flex: 1;
}

.cap-name {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 3px;
}

.cap-title {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.cap-desc {
  font-size: .85rem;
  line-height: 1.65;
  color: var(--text);
  opacity: .9;
  margin-bottom: 12px;
}

.cap-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cap-tag {
  padding: 4px 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  font-size: .72rem;
  color: var(--white);
}

.rarity-s {
  border-color: rgba(245, 194, 74, .6);
  color: var(--gold);
  background: rgba(245, 194, 74, .15);
}

/* Captain roster */
.captain-roster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cap-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: rgba(255, 255, 255, .05);
  border: 2px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  cursor: pointer;
  transition: border-color .3s, background .3s, transform .2s;
}

.cap-card:hover,
.cap-card.active {
  border-color: var(--gold);
  background: rgba(245, 194, 74, .1);
  transform: translateY(-3px);
}

.cap-card-art {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.cap-mini-0 {
  background: linear-gradient(135deg, #5e3d18, #b8860b);
  color: #fff;
}

.cap-mini-1 {
  background: linear-gradient(135deg, #7e2626, #e74c3c);
  color: #fff;
}

.cap-mini-2 {
  background: linear-gradient(135deg, #204060, #3498db);
  color: #fff;
}

.cap-mini-3 {
  background: linear-gradient(135deg, #2d5a27, #2ecc71);
  color: #fff;
}

.cap-mini-4 {
  background: linear-gradient(135deg, #5a306b, #9b59b6);
  color: #fff;
}

.cap-mini-5 {
  background: linear-gradient(135deg, #606060, #bdc3c7);
  color: #fff;
}

.cap-card-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cc-name {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text);
}

.cc-rank {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
}

.rank-s {
  background: rgba(245, 194, 74, .25);
  color: var(--gold);
}

.rank-a {
  background: rgba(189, 195, 199, .25);
  color: #bdc3c7;
}

.roster-hint {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 5 — REWARDS
   ═══════════════════════════════════════════════════════════ */
.slide-rewards {
  position: relative;
  display: flex;
  align-items: center;
}

.rewards-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #09121c 0%, #152010 50%, #09121c 100%);
}

.rewards-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 max(5vw, 40px);
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rewards-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  width: 100%;
  margin-bottom: 30px;
}

.reward-card {
  position: relative;
  padding: 22px 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.reward-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 194, 74, .4);
  box-shadow: 0 8px 30px rgba(245, 194, 74, .2);
}

.featured-rew {
  border-color: rgba(245, 194, 74, .4);
  background: rgba(245, 194, 74, .08);
}

.reward-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}

.rew-1 {
  background: rgba(52, 152, 219, .2);
  color: #3498db;
}

.rew-2 {
  background: rgba(245, 194, 74, .25);
  color: var(--gold);
}

.rew-3 {
  background: rgba(46, 204, 113, .2);
  color: #2ecc71;
}

.rew-4 {
  background: rgba(155, 89, 182, .2);
  color: #9b59b6;
}

.rew-5 {
  background: rgba(230, 126, 34, .2);
  color: #e67e22;
}

.rew-6 {
  background: rgba(231, 76, 60, .2);
  color: #e74c3c;
}

.reward-card h4 {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.reward-card p {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.rew-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--red);
  color: var(--gold);
  font-size: .62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
}

/* Gift code box */
.gift-box {
  width: 100%;
  max-width: 540px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(245, 194, 74, .3);
  border-radius: 8px;
  padding: 20px 24px;
}

.gift-box-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gift-icon {
  font-size: 2rem;
  color: var(--gold);
}

.gift-inputs {
  flex: 1;
}

.gift-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.gift-row {
  display: flex;
  gap: 10px;
}

.gift-row input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(0, 0, 0, .4);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  color: var(--white);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .3s;
}

.gift-row input:focus {
  border-color: var(--gold);
}

.gift-row input::placeholder {
  color: var(--text-muted);
}

.btn-redeem {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a0800;
  font-weight: 700;
  font-size: .85rem;
  border-radius: 4px;
  transition: transform .2s, box-shadow .3s;
}

.btn-redeem:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 194, 74, .4);
}

.gift-msg {
  font-size: .78rem;
  margin-top: 6px;
  min-height: 1em;
}

.gift-msg.success {
  color: #2ecc71;
}

.gift-msg.error {
  color: #e74c3c;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 6 — FAQ
   ═══════════════════════════════════════════════════════════ */
.slide-faq {
  position: relative;
  display: flex;
  align-items: center;
  overflow-y: auto;
}

.faq-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(2, 8, 18, 0.65), rgba(2, 8, 18, 0.8)), url('bg-s5.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px max(4vw, 30px) 30px;
  overflow-y: auto;
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

.faq-cat-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 194, 74, .3);
}

.faq-item {
  margin-bottom: 8px;
  background: rgba(10, 15, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  text-align: left;
  transition: background .3s, color .3s;
}

.faq-q:hover {
  background: rgba(255, 255, 255, .05);
  color: var(--white);
}

.faq-q[aria-expanded="true"] {
  background: rgba(245, 194, 74, .08);
  color: var(--gold);
  border-bottom: 1px solid rgba(245, 194, 74, .2);
}

.faq-chevron {
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  color: var(--gold-dark);
}

.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.16, 1, .3, 1), opacity .3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
}

.faq-a.open {
  max-height: 300px;
  opacity: 1;
}

.faq-a p {
  padding: 16px;
  font-size: .86rem;
  line-height: 1.7;
  color: var(--text-muted);
  border-bottom: none;
}

.faq-a strong {
  color: var(--gold-light);
}

.faq-cta-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 32px;
  padding: 28px;
  background: rgba(15, 20, 30, 0.75);
  border: 1px solid rgba(245, 194, 74, .4);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.faq-cta-text {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.4;
}

.faq-cta-row .btn-showcase-cta {
  margin-top: 0;
  flex-shrink: 0;
}

.faq-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.legal-text {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
}

.legal-link {
  color: var(--gold);
  opacity: .7;
  transition: opacity .2s;
}

.legal-link:hover {
  opacity: 1;
}

/* Custom Cursor */
* {
  cursor: none !important;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-image: url('mousse.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 999999;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.9));
  transform: translate(-10%, -10%);
  transition: transform 0.1s ease-out, filter 0.1s ease-out;
}

#custom-cursor.clicked {
  transform: translate(-10%, -10%) scale(0.8);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
}

/* ── FIRE GLOW CTA ANIMATION ────────────────────────────── */
@keyframes fireGlow {
  0% {
    box-shadow:
      0 0 8px rgba(255, 100, 0, 0.6),
      0 0 20px rgba(255, 60, 0, 0.3),
      0 0 40px rgba(255, 40, 0, 0.15),
      inset 0 0 8px rgba(255, 120, 0, 0.1);
  }

  25% {
    box-shadow:
      0 0 12px rgba(255, 140, 0, 0.8),
      0 0 28px rgba(255, 80, 0, 0.5),
      0 0 55px rgba(255, 50, 0, 0.25),
      inset 0 0 12px rgba(255, 160, 0, 0.15);
  }

  50% {
    box-shadow:
      0 0 15px rgba(245, 194, 74, 0.9),
      0 0 35px rgba(255, 100, 0, 0.6),
      0 0 65px rgba(255, 60, 0, 0.3),
      inset 0 0 15px rgba(245, 194, 74, 0.2);
  }

  75% {
    box-shadow:
      0 0 12px rgba(255, 120, 0, 0.7),
      0 0 30px rgba(255, 70, 0, 0.45),
      0 0 50px rgba(255, 45, 0, 0.2),
      inset 0 0 10px rgba(255, 140, 0, 0.12);
  }

  100% {
    box-shadow:
      0 0 8px rgba(255, 100, 0, 0.6),
      0 0 20px rgba(255, 60, 0, 0.3),
      0 0 40px rgba(255, 40, 0, 0.15),
      inset 0 0 8px rgba(255, 120, 0, 0.1);
  }
}

@keyframes fireFlicker {

  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scaleX(1);
  }

  50% {
    opacity: 0.8;
    transform: translateX(-50%) scaleX(1.05);
  }
}

/* Apply fire glow to main CTA buttons */
.btn-pc-download {
  animation: fireGlow 2.5s ease-in-out infinite;
  position: relative;
}

.btn-pc-download::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 8px;
  background: radial-gradient(ellipse, rgba(255, 100, 0, 0.5), transparent 70%);
  border-radius: 50%;
  animation: fireFlicker 1.5s ease-in-out infinite;
  pointer-events: none;
}

.btn-pc-download:hover {
  animation: fireGlow 1s ease-in-out infinite;
}

.btn-showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  background-size: 200% auto;
  color: #1a0800;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 4px;
  letter-spacing: .08em;
  position: relative;
  animation: fireGlow 2.5s ease-in-out infinite;
  transition: background-position .4s, transform .2s;
}

.btn-showcase-cta::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 8px;
  background: radial-gradient(ellipse, rgba(255, 100, 0, 0.5), transparent 70%);
  border-radius: 50%;
  animation: fireFlicker 1.5s ease-in-out infinite;
  pointer-events: none;
}

.btn-showcase-cta:hover {
  background-position: right center;
  transform: translateY(-2px);
  animation: fireGlow 1s ease-in-out infinite;
}

.floating-cta {
  animation: fireGlow 2.5s ease-in-out infinite;
  position: relative;
}

.floating-cta::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 6px;
  background: radial-gradient(ellipse, rgba(255, 100, 0, 0.45), transparent 70%);
  border-radius: 50%;
  animation: fireFlicker 1.5s ease-in-out infinite;
  pointer-events: none;
}

.floating-cta:hover {
  animation: fireGlow 1s ease-in-out infinite;
}

/* ── PARTNER LOGOS ───────────────────────────────────────── */
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 16px;
  padding-top: 12px;
}

.partner-logo {
  height: 32px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(30%) brightness(1.2);
  transition: opacity 0.3s, filter 0.3s;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1.4);
}