:root {
  --bg-main: #080515;
  --bg-dark: #05030b;
  --bg-panel: rgba(18, 9, 31, 0.88);
  --bg-header: rgba(8, 5, 21, 0.78);

  --text-main: #ffffff;
  --text-muted: #d8cfe8;

  --orange: #ff8a00;
  --orange-2: #ff4d00;
  --purple: #a855f7;
  --purple-dark: #4c1d95;
  --cyan: #22c7ff;
  --pink: #ec5cff;
  --danger: #ff2457;

  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 16px;

  --container: 1180px;

  --shadow-orange: 0 0 34px rgba(255, 138, 0, 0.3);
  --shadow-purple: 0 0 34px rgba(168, 85, 247, 0.3);
  --shadow-cyan: 0 0 30px rgba(34, 199, 255, 0.24);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 138, 0, 0.14), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(168, 85, 247, 0.18), transparent 35%),
    radial-gradient(circle at 50% 90%, rgba(34, 199, 255, 0.08), transparent 32%),
    var(--bg-main);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px),
    radial-gradient(circle, rgba(236,92,255,0.55) 1px, transparent 1px);
  background-size: 90px 90px, 140px 140px;
  background-position: 0 0, 30px 60px;
  z-index: -1;
}

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

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

button {
  font-family: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section-space {
  padding: 108px 0;
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 138, 0, 0.24));
  }

  50% {
    filter: drop-shadow(0 0 34px rgba(236, 92, 255, 0.38));
  }
}

@keyframes scanMove {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-header);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-logo {
  width: 190px;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--text-main);
  opacity: 0.86;
  font-weight: 900;
  font-size: 0.9rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
  opacity: 1;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  box-shadow: var(--shadow-orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.language-switcher span {
  color: rgba(255, 255, 255, 0.36);
  font-weight: 800;
}

.language-option {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-weight: 900;
  cursor: pointer;
  padding: 0;
}

.language-option:hover,
.language-option.active {
  color: var(--orange);
  text-shadow: 0 0 14px rgba(255, 138, 0, 0.45);
}

.social-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.social-icon:hover {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.15);
}

.social-x {
  background: rgba(8, 5, 21, 0.78);
  border: 1px solid rgba(168, 85, 247, 0.72);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.22);
}

.social-youtube {
  background: linear-gradient(135deg, #ff2020, #b80000);
  box-shadow: 0 0 18px rgba(255, 32, 32, 0.28);
}

.social-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 0 18px rgba(236, 92, 255, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 20px;
  background: #fff;
}

/* HERO */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 86px;
}

.hero-video,
.hero-fallback,
.hero-overlay,
.hero-glitch {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-fallback {
  z-index: -1;
  background-image: url("../img/backgrounds/bg-hero-foxfyre.jpg");
  background-size: cover;
  background-position: center;
}

.hero-glitch {
  z-index: 1;
  opacity: 0.22;
  mix-blend-mode: screen;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(236, 92, 255, 0.14) 12% 13%, transparent 13% 38%, rgba(34, 199, 255, 0.12) 38% 39%, transparent 39%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 8px);
}

.hero-overlay {
  z-index: 2;
  background:
    radial-gradient(circle at 75% 35%, rgba(255, 138, 0, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(8, 5, 21, 0.98) 0%, rgba(8, 5, 21, 0.76) 45%, rgba(8, 5, 21, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 5, 21, 1) 0%, rgba(8, 5, 21, 0.2) 42%, rgba(8, 5, 21, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 0.54fr;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--orange);
  font-weight: 900;
  background: rgba(255, 138, 0, 0.08);
  border: 1px solid rgba(255, 138, 0, 0.55);
  box-shadow: var(--shadow-orange);
}

.hero-logo {
  width: min(640px, 96%);
  margin-bottom: 26px;
  animation: pulseGlow 4.5s ease-in-out infinite;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin-bottom: 26px;
}

.hero-copy p {
  max-width: 610px;
  color: var(--text-muted);
  font-size: 1.14rem;
  line-height: 1.72;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 25px;
  border-radius: 16px;
  font-weight: 950;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: var(--shadow-orange);
}

.btn-secondary {
  color: #fff;
  background: rgba(34, 199, 255, 0.08);
  border: 1px solid rgba(34, 199, 255, 0.55);
  box-shadow: var(--shadow-cyan);
}

.hero-floating-card {
  align-self: end;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.16), transparent 38%),
    linear-gradient(225deg, rgba(124, 58, 237, 0.24), transparent 45%),
    rgba(18, 9, 31, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(124, 58, 237, 0.18);
  backdrop-filter: blur(12px);
  animation: floatSoft 5s ease-in-out infinite;
}

.hero-floating-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.hero-floating-card h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.hero-floating-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

/* GENERAL SECTIONS */

.section-heading {
  max-width: 790px;
  margin-bottom: 56px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.section-copy h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.048em;
  margin-bottom: 20px;
}

.section-heading p,
.section-copy p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1.06rem;
}

.section-copy p + p {
  margin-top: 18px;
}

.mini-star {
  display: inline-block;
  color: var(--orange);
  font-size: 1.9rem;
  margin-bottom: 18px;
}

/* STORY */

.story-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 138, 0, 0.10), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.13), transparent 32%),
    var(--bg-main);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 58px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 138, 0, 0.28);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    var(--shadow-orange);
}

.story-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,138,0,0.18), transparent 42%),
    linear-gradient(0deg, rgba(8,5,21,0.5), transparent 50%);
}

.story-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-image-frame:hover img {
  transform: scale(1.06);
}

.artifact-chip {
  position: absolute;
  right: -18px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(18, 9, 31, 0.9);
  border: 1px solid rgba(34, 199, 255, 0.42);
  box-shadow: var(--shadow-cyan);
  color: #fff;
  font-weight: 900;
}

/* GAMEPLAY */

.gameplay-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(34, 199, 255, 0.10), transparent 30%),
    radial-gradient(circle at 85% 35%, rgba(236, 92, 255, 0.12), transparent 34%),
    #0a0613;
}

.gameplay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gameplay-card {
  padding: 30px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.gameplay-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 138, 0, 0.45);
}

.feature-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 999px;
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.04);
}

.orange-icon {
  color: var(--orange);
  border: 1px solid rgba(255, 138, 0, 0.65);
  box-shadow: var(--shadow-orange);
}

.blue-icon {
  color: var(--cyan);
  border: 1px solid rgba(34, 199, 255, 0.55);
  box-shadow: var(--shadow-cyan);
}

.pink-icon {
  color: var(--pink);
  border: 1px solid rgba(236, 92, 255, 0.6);
  box-shadow: 0 0 24px rgba(236, 92, 255, 0.24);
}

.purple-icon {
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.65);
  box-shadow: var(--shadow-purple);
}

.gameplay-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.gameplay-card p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

/* MAGIC */

.magic-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 138, 0, 0.11), transparent 32%),
    radial-gradient(circle at 90% 70%, rgba(34, 199, 255, 0.08), transparent 30%),
    var(--bg-main);
}

.magic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.magic-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #12091f;
  box-shadow: 0 28px 90px rgba(0,0,0,0.42);
}

.magic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transform: scale(1.05);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.magic-card:hover::before {
  opacity: 0.56;
  transform: scale(1.12);
}

.rotendo-card::before {
  background:
    radial-gradient(circle at 35% 35%, rgba(255,138,0,0.65), transparent 25%),
    linear-gradient(135deg, rgba(255,138,0,0.3), rgba(168,85,247,0.2));
}

.gravitendo-card::before {
  background:
    radial-gradient(circle at 65% 35%, rgba(34,199,255,0.58), transparent 25%),
    linear-gradient(135deg, rgba(34,199,255,0.28), rgba(168,85,247,0.25));
}

.magic-card-content {
  position: relative;
  z-index: 2;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background:
    linear-gradient(0deg, rgba(8,5,21,0.96) 0%, rgba(8,5,21,0.35) 70%, transparent 100%);
}

.magic-number {
  color: rgba(255,255,255,0.42);
  font-weight: 950;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.magic-card h3 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.magic-card p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* CORRUPTION */

.corruption-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(236, 92, 255, 0.16), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(34, 199, 255, 0.12), transparent 34%),
    #05030b;
}

.corruption-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/backgrounds/bg-corruption.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(1.3) contrast(1.1);
}

.corruption-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, transparent 0 20%, rgba(236,92,255,0.16) 20% 21%, transparent 21% 50%, rgba(34,199,255,0.15) 50% 51%, transparent 51%);
  mix-blend-mode: screen;
}

.corruption-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.warning-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
  background: rgba(255, 36, 87, 0.12);
  border: 1px solid rgba(255, 36, 87, 0.58);
  box-shadow: 0 0 28px rgba(255, 36, 87, 0.22);
}

.corruption-copy h2 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-shadow:
    3px 0 rgba(236, 92, 255, 0.45),
    -3px 0 rgba(34, 199, 255, 0.35);
}

.corruption-copy p {
  max-width: 610px;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1.08rem;
}

.corruption-copy p + p {
  margin-top: 18px;
}

.corruption-terminal {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(5, 3, 11, 0.82);
  border: 1px solid rgba(236, 92, 255, 0.34);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.55),
    0 0 34px rgba(236, 92, 255, 0.2);
  backdrop-filter: blur(12px);
}

.terminal-header {
  display: flex;
  gap: 8px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.terminal-header span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--pink);
}

.terminal-header span:nth-child(2) {
  background: var(--orange);
}

.terminal-header span:nth-child(3) {
  background: var(--cyan);
}

.terminal-body {
  position: relative;
  padding: 26px;
  font-family: Consolas, Monaco, monospace;
  color: #bff7ff;
  line-height: 1.9;
}

.terminal-body::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 70%;
  background: linear-gradient(180deg, transparent, rgba(34,199,255,0.08), transparent);
  animation: scanMove 4s linear infinite;
}

.danger-text {
  color: #ff4d6d;
  text-shadow: 0 0 18px rgba(255, 36, 87, 0.75);
}

/* CHARACTERS */

.characters-section {
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 138, 0, 0.1), transparent 28%),
    radial-gradient(circle at 85% 50%, rgba(168, 85, 247, 0.12), transparent 34%),
    var(--bg-main);
}

.character-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 70px;
}

.character-card {
  position: relative;
  min-height: 520px;
  padding: 285px 26px 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018)),
    rgba(18, 9, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 28px 90px rgba(0,0,0,0.42);
  transition: transform 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.character-card:hover {
  transform: translateY(-8px);
}

.character-card img {
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: auto;
  width: min(78%, 280px);
  max-height: 300px;
  object-fit: contain;
  transform: translateX(-50%);
  filter:
    drop-shadow(0 24px 20px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 24px rgba(255, 138, 0, 0.18));
  transition: transform 0.32s ease;
  z-index: 1;
}

.character-card:hover img {
  transform: translateX(-50%) translateY(-10px) scale(1.04);
}

.sunwer-card {
  border-color: rgba(255, 138, 0, 0.28);
}

.flowxie-card {
  border-color: rgba(236, 92, 255, 0.28);
}

.rury-card {
  border-color: rgba(34, 199, 255, 0.28);
}

.character-info {
  position: relative;
  z-index: 2;
}

.character-info span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-weight: 950;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.flowxie-card .character-info span {
  color: var(--pink);
}

.rury-card .character-info span {
  color: var(--cyan);
}

.character-info h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.character-info p {
  color: var(--text-muted);
  line-height: 1.65;
}

/* WORLDS */

.worlds-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(34,199,255,0.08), transparent 30%),
    radial-gradient(circle at 80% 85%, rgba(255,138,0,0.11), transparent 34%),
    #0a0613;
}

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.world-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #12091f;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 70px rgba(0,0,0,0.34);
}

.world-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.world-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.14);
}

.world-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8,5,21,0.92) 0%, rgba(8,5,21,0.2) 65%, transparent 100%);
}

.world-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.world-card-content span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-weight: 950;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.world-card-content h3 {
  font-size: 1.65rem;
}

/* GALLERY */

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(236,92,255,0.12), transparent 32%),
    radial-gradient(circle at 80% 75%, rgba(255,138,0,0.08), transparent 34%),
    var(--bg-main);
}

.gallery-slider {
  position: relative;
  padding: 0 58px 54px;
}

.gallery-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.gallery-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 calc((100% - 24px) / 2);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,138,0,0.12), rgba(168,85,247,0.12)),
    #12091f;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow:
    0 26px 76px rgba(0,0,0,0.42),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.gallery-slide:hover img {
  transform: scale(1.06);
  filter: brightness(1.12) saturate(1.08);
}

.gallery-arrow {
  position: absolute;
  top: calc(50% - 28px);
  z-index: 4;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(8, 5, 21, 0.78);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 16px 44px rgba(0,0,0,0.36),
    0 0 24px rgba(255,138,0,0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.gallery-arrow:hover {
  transform: scale(1.08);
  background: rgba(255, 138, 0, 0.22);
  border-color: rgba(255, 138, 0, 0.52);
}

.gallery-arrow-prev {
  left: 0;
}

.gallery-arrow-next {
  right: 0;
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 10px;
  transform: translateX(-50%);
}

.gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.gallery-dot.active {
  width: 28px;
  background: var(--orange);
  box-shadow: var(--shadow-orange);
}

/* FINAL CTA */

.final-cta-section {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 138, 0, 0.16), transparent 34%),
    #0a0613;
}

.final-cta {
  text-align: center;
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.20), transparent 40%),
    linear-gradient(225deg, rgba(168, 85, 247, 0.16), transparent 40%),
    rgba(18, 9, 31, 0.9);
  border: 1px solid rgba(255, 138, 0, 0.28);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    var(--shadow-orange);
}

.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--text-muted);
  line-height: 1.7;
}

.center-buttons {
  justify-content: center;
}

/* FOOTER */

.site-footer {
  background:
    linear-gradient(180deg, #080515, #05030b);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 42px;
  padding: 70px 0;
}

.footer-logo {
  display: inline-block;
  width: 210px;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 350px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-column h3 {
  margin-bottom: 18px;
  font-size: 1rem;
}

.footer-column a {
  display: table;
  margin-bottom: 12px;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 0, 0.55);
}

.footer-bottom {
  padding: 22px 0;
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}