:root {
  --bg-main: #080515;
  --bg-section: #0d0718;
  --bg-header: rgba(42, 6, 25, 0.92);
  --bg-card: rgba(18, 9, 31, 0.82);

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

  --orange: #ff8a00;
  --orange-2: #ff4d00;
  --purple: #a855f7;
  --pink: #ec5cff;
  --cyan: #22c7ff;

  --border-purple: rgba(168, 85, 247, 0.45);
  --border-orange: rgba(255, 138, 0, 0.45);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;

  --container: 1180px;

  --shadow-glow-purple: 0 0 28px rgba(168, 85, 247, 0.28);
  --shadow-glow-orange: 0 0 28px rgba(255, 138, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(168, 85, 247, 0.18), transparent 30%),
    radial-gradient(circle at 80% 40%, rgba(34, 199, 255, 0.12), transparent 32%),
    var(--bg-main);
  color: var(--text-main);
}

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

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

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

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

/* HEADER */

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

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

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

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

.main-nav a {
  position: relative;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  opacity: 0.86;
  transition: color 0.25s ease, opacity 0.25s 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: 10px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  box-shadow: var(--shadow-glow-orange);
}

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

button {
  font-family: inherit;
}

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

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

.language-option {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.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;
  transition: transform 0.25s ease, filter 0.25s ease;
}

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

.social-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.05rem;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.social-icon:hover {
  transform: translateY(-2px) scale(1.04);
  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-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 0 18px rgba(236, 92, 255, 0.28);
}

.social-youtube {
  background: linear-gradient(135deg, #ff2020, #b80000);
  box-shadow: 0 0 18px rgba(255, 32, 32, 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: 10px;
  background: #fff;
}

/* HERO */

.hero-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/backgrounds/MainBG_2500x1406.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 5, 21, 0.98) 0%, rgba(8, 5, 21, 0.72) 38%, rgba(8, 5, 21, 0.15) 76%),
    linear-gradient(0deg, rgba(8, 5, 21, 1) 0%, transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
}

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

.hero-content h1 {
  max-width: 620px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-content h1 span {
  display: block;
  color: var(--orange);
  text-shadow: 0 0 24px rgba(255, 138, 0, 0.32);
}

.hero-content p {
  max-width: 520px;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn i {
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
}

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

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

/* ABOUT */

.about-section {
  position: relative;
  background:
    radial-gradient(circle at 80% 15%, rgba(168, 85, 247, 0.13), transparent 32%),
    var(--bg-main);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 58px;
  align-items: center;
}

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

.section-copy h2,
.section-placeholder h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-copy p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

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

.feature-card {
  min-height: 270px;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    var(--bg-card);
  border: 1px solid var(--border-purple);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.feature-card img {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.feature-card.pink {
  border-color: rgba(236, 92, 255, 0.45);
  box-shadow: var(--shadow-glow-purple);
}

.feature-card.blue {
  border-color: rgba(34, 199, 255, 0.38);
}

.feature-card.orange {
  border-color: rgba(255, 138, 0, 0.48);
  box-shadow: var(--shadow-glow-orange);
}

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

.pink-icon {
  color: #ff70d9;
  border: 1px solid rgba(255, 112, 217, 0.7);
  box-shadow: 0 0 24px rgba(255, 112, 217, 0.28);
}

.blue-icon {
  color: #72a7ff;
  border: 1px solid rgba(114, 167, 255, 0.7);
  box-shadow: 0 0 24px rgba(114, 167, 255, 0.25);
}

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

/* PLACEHOLDER */

.section-placeholder {
  padding: 90px 0;
  text-align: center;
  background: #0b0614;
}

.section-placeholder p {
  color: var(--text-muted);
}

/* GAMES SECTION */

.games-section {
  position: relative;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 138, 0, 0.08), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(168, 85, 247, 0.16), transparent 34%),
    #0a0613;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.game-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #12091f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.game-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.0);
  transition: transform 0.5s ease;
}

.flowxie-card .game-card-bg {
  background-image:
    linear-gradient(135deg, rgba(42, 8, 61, 0.19), rgba(236, 92, 255, 0.35)),
    url("../img/backgrounds/bg-flowxie-card.png");
}

.foxfyre-card .game-card-bg {
  background-image:
    linear-gradient(135deg, rgba(22, 5, 10, 0.192), rgba(255, 92, 0, 0.32)),
    url("../img/backgrounds/bg-foxfyre-card.png");
}

.game-card:hover .game-card-bg {
  transform: scale(1.08);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 5, 21, 0.22) 0%, rgba(8, 5, 21, 0.78) 58%, rgba(8, 5, 21, 0.98) 100%),
    linear-gradient(90deg, rgba(8, 5, 21, 0.86) 0%, rgba(8, 5, 21, 0.46) 55%, rgba(8, 5, 21, 0.18) 100%);
}

.game-card-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.game-status {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.game-status.available {
  color: #ffffff;
  background: linear-gradient(135deg, #20c997, #13a86f);
  box-shadow: 0 0 24px rgba(32, 201, 151, 0.35);
}

.game-status.development {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: var(--shadow-glow-orange);
}

/* LOGOS DE JUEGOS */

.game-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 20px rgba(255, 138, 0, 0.15));
}

.flowxie-logo {
  max-width: min(430px, 92%);
  max-height: 190px;
  margin-bottom: 24px;
}

.foxfyre-logo {
  max-width: min(440px, 92%);
  max-height: 190px;
  margin-bottom: 24px;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.game-tags .fill-span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.game-tags i {
  color: var(--cyan);
  font-size: 0.9rem;
}

.foxfyre-card .game-tags i {
  color: var(--orange);
}

.game-card-content p {
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-store {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.08);
}


/* DEVLOG SECTION */

.devlog-section {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 199, 255, 0.10), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(236, 92, 255, 0.12), transparent 32%),
    #080515;
}

.devlog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.devlog-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    rgba(18, 9, 31, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.devlog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 138, 0, 0.38);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.46),
    0 0 30px rgba(255, 138, 0, 0.12);
}

.devlog-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #12091f;
}

.devlog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.devlog-card:hover .devlog-thumb img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.devlog-content {
  padding: 24px;
}

.devlog-date {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.devlog-content h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.devlog-content h3 a {
  color: #ffffff;
  transition: color 0.2s ease;
}

.devlog-content h3 a:hover {
  color: var(--orange);
}

.devlog-content p {
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.read-more {
  color: var(--cyan);
  font-weight: 900;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.read-more:hover {
  color: var(--orange);
  padding-left: 4px;
}

/* SOCIAL CTA */

.social-cta-section {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 138, 0, 0.14), transparent 30%),
    radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.18), transparent 34%),
    #0a0613;
}

.social-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: clamp(34px, 6vw, 64px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.18), transparent 38%),
    linear-gradient(225deg, rgba(34, 199, 255, 0.12), transparent 42%),
    rgba(18, 9, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(168, 85, 247, 0.12);
}

.social-cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 138, 0, 0.22), transparent 20%),
    radial-gradient(circle at 70% 60%, rgba(236, 92, 255, 0.16), transparent 24%);
  filter: blur(20px);
  opacity: 0.9;
  pointer-events: none;
}

.social-cta-content,
.social-cta-actions {
  position: relative;
  z-index: 1;
}

.social-cta h2 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.social-cta p {
  max-width: 620px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.social-cta-actions {
  display: grid;
  gap: 16px;
}

.social-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  color: #ffffff;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.social-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.12);
}

.social-button-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1rem;
}

.youtube-button {
  background: linear-gradient(135deg, #ff2020, #b90000);
  box-shadow: 0 0 30px rgba(255, 32, 32, 0.25);
}

.x-button {
  background: linear-gradient(135deg, #151023, #05040a);
  border: 1px solid rgba(168, 85, 247, 0.7);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.22);
}

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

/* 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: 170px;
  margin-bottom: 20px;
}

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

.footer-column h3 {
  margin-bottom: 18px;
  color: #ffffff;
  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;
}

/* GAME DETAIL PAGE */

.game-detail-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.game-detail-bg,
.game-detail-overlay {
  position: absolute;
  inset: 0;
}

.game-detail-bg {
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.flowxie-detail-hero .game-detail-bg {
  background-image: url("../img/backgrounds/bg-flowxie-card.jpg");
}

.game-detail-overlay {
  background:
    linear-gradient(90deg, rgba(8, 5, 21, 0.98) 0%, rgba(8, 5, 21, 0.72) 45%, rgba(8, 5, 21, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 5, 21, 1) 0%, transparent 30%);
  z-index: 1;
}

.game-detail-hero-inner {
  position: relative;
  z-index: 2;
}

.game-detail-copy {
  max-width: 620px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}

.back-link:hover {
  color: var(--orange);
  transform: translateX(-3px);
}

.game-detail-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 16px 22px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 22px rgba(236, 92, 255, 0.25));
}

.flowxie-detail-logo {
  max-width: min(520px, 94%);
  max-height: 240px;
  margin: 24px 0;
}

.game-detail-copy p {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.detail-tags {
  margin-top: 24px;
  margin-bottom: 30px;
}

.game-overview-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(236, 92, 255, 0.12), transparent 32%),
    var(--bg-main);
}

.game-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 54px;
  align-items: center;
}

.game-info-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    rgba(18, 9, 31, 0.86);
  border: 1px solid rgba(236, 92, 255, 0.32);
  box-shadow: var(--shadow-glow-purple);
}

.game-info-panel h2 {
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.game-info-panel ul {
  list-style: none;
}

.game-info-panel li {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.game-info-panel li:last-child {
  border-bottom: 0;
}

.game-info-panel span {
  color: var(--text-muted);
}

.game-info-panel strong {
  color: #ffffff;
  text-align: right;
}

.game-features-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(34, 199, 255, 0.10), transparent 32%),
    #0a0613;
}

.detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.detail-feature-card {
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    rgba(18, 9, 31, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.detail-feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.detail-feature-card p {
  color: var(--text-muted);
  line-height: 1.65;
}

.game-gallery-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 138, 0, 0.10), transparent 32%),
    var(--bg-main);
}

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

.gallery-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: #12091f;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

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

.game-final-cta {
  text-align: center;
  padding: clamp(34px, 6vw, 64px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(236, 92, 255, 0.18), transparent 40%),
    linear-gradient(225deg, rgba(34, 199, 255, 0.12), transparent 40%),
    rgba(18, 9, 31, 0.9);
  border: 1px solid rgba(236, 92, 255, 0.25);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    var(--shadow-glow-purple);
}

.game-final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
}

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