@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;900&display=swap');

:root {
  --bg: #090909;
  --accent: #ffd000;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.8);
  --card-bg: rgba(255, 255, 255, 0.1);
  --feature-card-bg: rgba(255, 255, 255, 0.07);
  --hero-gradient: linear-gradient(180deg, #090909 0%, #090909 38.805%, rgb(75, 62, 19) 65.865%, rgb(198, 82, 28) 100%);
  --btn-text: #030e14;
  --max-width: 1200px;
  --page-padding: 20px;
}

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

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
}

.accent {
  color: var(--accent);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.logo-icon {
  width: 30px;
  height: 30px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon .lg {
  position: absolute;
}

.logo-icon .lg img {
  position: absolute;
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

.logo-icon .lg.op22 {
  opacity: 0.22;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  height: 1140px;
  overflow: hidden;
  background: var(--hero-gradient);
}

.hero-nav {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 40px));
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-size: 68px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 1.1;
}

.hero-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 740px;
  line-height: 1.6;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 50px;
  background: var(--accent);
  color: var(--btn-text);
  border: 2px solid white;
  border-radius: 50px;
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 24px 0 rgba(255, 208, 0, 0.95);
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.22s, box-shadow 0.22s;
  max-width: 200px;
}

.btn-cta:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 0 42px 10px rgba(255, 208, 0, 0.6);
}

.hero-images {
  position: absolute;
  top: 500px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 40px));
  padding: 0 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-deco-wrap {
  width: 355px;
  height: 66px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.hero-deco-wrap img {
  position: absolute;
  width: 100%;
  height: 357.97%;
  top: -151.27%;
  left: 0;
  max-width: none;
}

.hero-deco-wrap.flipped {
  transform: rotate(180deg) scaleY(-1);
}

.hero-char-wrap {
  width: 443px;
  height: 580px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.hero-char-wrap img {
  position: absolute;
  width: 105.25%;
  height: 120.79%;
  left: -4.86%;
  top: -10.83%;
  max-width: none;
}

.stats {
  background: var(--bg);
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.stat-card {
  width: 387px;
  background: var(--card-bg);
  border-radius: 30px;
  padding: 40px 20px;
  text-align: center;
  flex-shrink: 0;
}

.stat-number {
  font-size: 44px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  font-weight: 300;
  color: white;
  line-height: 1.4;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 58px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 940px;
  margin: 0 auto;
  line-height: 1.6;
}

.pillars {
  background: var(--bg);
  padding: 60px 0 80px;
}

.pillars-layout {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 850px;
}

.pillars-cards {
  display: grid;
  grid-template-columns: 340px 100px 340px;
  grid-template-rows: auto auto;
  gap: 20px;
}

.pcard-1 { grid-column: 1; grid-row: 1; }
.pcard-2 { grid-column: 3; grid-row: 1; }
.pcard-3 { grid-column: 1; grid-row: 2; }
.pcard-4 { grid-column: 3; grid-row: 2; }

.pillar-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-connector-ne {
  grid-column: 2;
  grid-row: 1;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.pillar-connector img {
  width: 100px;
  height: 100px;
}

.mobile-only {
  display: none;
}

.feature-card {
  width: 340px;
  background: var(--feature-card-bg);
  border-radius: 30px;
  padding: 20px;
  flex-shrink: 0;
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card-icon {
  width: 80px;
  height: 80px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.feature-card-icon img {
  position: absolute;
  width: 142.96%;
  height: 142.96%;
  left: -20.42%;
  top: -21.13%;
  max-width: none;
}

.feature-card-title {
  font-size: 26px;
  font-weight: 900;
  color: white;
  line-height: 1.2;
}

.feature-card-body {
  font-size: 14px;
  font-weight: 300;
  color: white;
  line-height: 1.6;
}

.connector-arrow {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.connector-arrow img {
  width: 100%;
  height: 100%;
}

.pillar-char-wrap {
  width: 480px;
  height: 850px;
  overflow: hidden;
  position: absolute;
  right: -60px;
  top: -40px;
  flex-shrink: 0;
  pointer-events: none;
}

.pillar-char-wrap img {
  position: absolute;
  width: 146.32%;
  height: 123.63%;
  left: -26.44%;
  top: -10.53%;
  max-width: none;
}

.gallery {
  background: var(--bg);
  padding: 60px 0;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-row {
  display: flex;
  gap: 20px;
}

.gallery-item {
  flex: 1;
  height: 300px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.section-header--left {
  text-align: left;
}

.gallery-deco {
  flex: 1;
  height: 300px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.gallery-deco img {
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0px;
  transform: scaleX(-1);
  max-width: none;
}

.champions {
  background: var(--bg);
  padding: 60px 0;
}

.champions-grid {
  display: grid;
  grid-template-columns: repeat(3, 285px);
  gap: 20px;
  justify-content: center;
}

.game-thumb {
  width: 285px;
  height: 285px;
  border-radius: 34px;
  border: 3px solid var(--accent);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
}

.footer-cta {
  position: relative;
  overflow: hidden;
  background: var(--hero-gradient);
  padding: 80px 0;
}

.footer-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.footer-cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1046px;
  width: 100%;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 50px;
  background: var(--accent);
  color: var(--btn-text);
  border: 2px solid white;
  border-radius: 15px;
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  min-width: 544px;
  text-align: center;
  line-height: 1.4;
  transition: opacity 0.2s;
}

.contact-btn:hover {
  opacity: 0.9;
}

.site-footer {
  background: var(--bg);
  padding: 50px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
}

.social-links a:hover {
  opacity: 1;
  transform: scale(1.15);
}

.social-links img {
  width: 40px;
  height: 40px;
}

.copyright {
  font-size: 14px;
  font-weight: 400;
  color: white;
  text-align: left;
  line-height: 1.5;
}

.page-header {
  background: var(--bg);
  padding: 20px 0;
}

.page-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalog-section {
  padding: 30px 0 60px;
}

.catalog-inner {
  max-width: 998px;
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.catalog-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.game-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 895px;
}

.game-grid-row {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.game-card {
  display: block;
  width: 285px;
  height: 285px;
  border-radius: 34px;
  border: 3px solid var(--accent);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.game-card::after,
.game-thumb::after {
  content: attr(data-name);
  position: absolute;
  inset: 0;
  background: var(--accent);
  color: var(--btn-text);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s;
}

.game-card:hover::after,
.game-thumb:hover::after {
  opacity: 1;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  display: block;
}

.cta-row {
  display: flex;
  gap: 83px;
  align-items: flex-end;
  width: 100%;
}

.cta-deco {
  width: 245px;
  height: 46px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.cta-deco img {
  position: absolute;
  width: 100%;
  height: 357.97%;
  top: -151.27%;
  left: 0;
  max-width: none;
}

.cta-deco.flipped {
  transform: rotate(180deg) scaleY(-1);
}

.policy-section {
  padding: 60px 0 80px;
}

.policy-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-title {
  font-size: 58px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
}

.policy-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .policy-title {
    font-size: 28px;
  }
}

.game-detail {
  padding: 60px 0;
}

.game-detail-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

.game-title-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1038px;
  width: 100%;
}

.game-title {
  font-size: 58px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.1;
}

.game-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.game-hero-image-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: min(1006px, 100%);
}

.game-thumb-img {
  width: 285px;
  height: 285px;
  border: 3px solid var(--accent);
  border-radius: 34px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-hero-cta {
  display: flex;
  gap: 49px;
  align-items: flex-end;
  width: 100%;
  justify-content: center;
}

.game-deco-wrap {
  width: 355px;
  height: 66px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.game-deco-wrap img {
  position: absolute;
  width: 100%;
  height: 357.97%;
  top: -151.27%;
  left: 0;
  max-width: none;
}

.game-deco-wrap.flipped {
  transform: rotate(180deg) scaleY(-1);
}

.game-feature {
  padding: 0 0 80px;
}

.game-feature-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  gap: 30px;
  align-items: center;
}

.game-feature-img {
  width: 478px;
  height: 600px;
  border: 3px solid var(--accent);
  border-radius: 34px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game-feature-title {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 1.2;
}

.game-arrow-icon {
  width: 100px;
  height: 100px;
  transform: rotate(170deg);
}

@media (max-width: 768px) {
  :root {
    --page-padding: 15px;
  }

  
  .page-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 0 15px;
  }

  
  .catalog-inner {
    padding: 0 15px;
    max-width: 330px;
  }

  .game-grid {
    width: 330px;
    gap: 15px;
  }

  .game-grid-row {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
  }

  .game-card {
    width: 157px;
    height: 157px;
  }

  
  .game-card.gc-5 { order: 4; }
  .game-card.gc-3 { order: 5; }

  
  .cta-row {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .cta-deco {
    width: 245px;
    height: 46px;
  }

  
  .hero {
    height: 939px;
  }

  .hero-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 0 15px;
  }

  .hero-content {
    width: 330px;
    top: 20px;
    padding: 80px 0 0; 
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-images {
    top: 668px;
    width: 330px;
    padding: 0;
  }

  .hero-deco-wrap {
    width: 96px;
    height: 18px;
  }

  .hero-char-wrap {
    width: 193px;
    height: 251px;
  }

  
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 330px;
  }

  
  .section-title {
    font-size: 28px;
  }

  
  .pillars-layout {
    min-height: auto;
    max-width: 330px;
    margin: 0 auto;
  }

  .pillars-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 330px;
  }

  .pillar-connector {
    display: none;
  }

  .pcard {
    display: flex;
    flex-direction: column;
    width: 330px;
  }

  .feature-card {
    width: 330px;
  }

  .feature-card-title {
    font-size: 22px;
  }

  .mobile-only {
    display: block;
  }

  .connector-arrow {
    width: 100px;
    height: 100px;
  }

  .pillar-char-wrap {
    position: relative;
    right: auto;
    top: auto;
    width: 256px;
    height: 470px;
    margin: 20px auto 0;
  }

  
  .gallery-row {
    flex-direction: column;
    align-items: center;
  }

  .gallery-item {
    width: 330px;
    flex: none;
    height: 239px;
  }

  .gallery-row:last-child {
    flex-direction: column;
    align-items: center;
  }

  .gallery-fade-wrap {
    display: none;
  }

  
  .champions-grid {
    grid-template-columns: repeat(2, 157px);
    gap: 15px;
  }

  .game-thumb {
    width: 157px;
    height: 157px;
  }

  
  .footer-cta-inner {
    padding: 0 15px;
  }

  .contact-btn {
    min-width: auto;
    width: 330px;
    padding: 24px 20px;
  }

  
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  
  .game-title {
    font-size: 28px;
  }

  .game-hero-image-block {
    width: 100%;
  }

  .game-hero-cta {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .game-deco-wrap {
    width: 95px;
    height: 18px;
  }

  .game-feature-inner {
    flex-direction: column;
    gap: 30px;
  }

  .game-feature-img {
    width: 330px;
    height: 414px;
  }

  .game-feature-title {
    font-size: 28px;
  }
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px 32px;
}

.cookie-overlay.hidden {
  display: none;
}

.cookie-modal {
  background: #111111;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 40px 50px 44px;
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.cookie-icon {
  width: 84px;
  height: 84px;
}

.cookie-title {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1;
}

.cookie-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  text-align: center;
  line-height: 1.75;
  max-width: 640px;
}

.cookie-btn {
  width: 100%;
  padding: 22px 20px;
  border-radius: 60px;
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
}

.cookie-btn-agree {
  background: var(--accent);
  color: var(--btn-text);
  box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.45), 0 0 28px rgba(255, 208, 0, 0.25);
}

.cookie-btn-customize {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 30px 20px 34px;
    gap: 18px;
  }

  .cookie-title {
    font-size: 26px;
  }

  .cookie-btn {
    padding: 18px 16px;
    font-size: 13px;
  }
}

/* ============================================================
   ANIMATIONS & HOVER EFFECTS
   ============================================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* --- Hero on-load stagger --- */
.hero-title {
  animation: fadeInUp 0.8s ease both;
}
.hero-body {
  animation: fadeInUp 0.8s 0.18s ease both;
}
.hero-content > .btn-cta {
  animation: fadeInUp 0.8s 0.34s ease both;
}

/* --- Character float --- */
.hero-char-wrap {
  animation: float 4s ease-in-out infinite;
}
.pillar-char-wrap {
  animation: float 5s ease-in-out 0.6s infinite;
}

/* --- Nav underline slide --- */
.nav-links a,
.footer-links a {
  position: relative;
}
.nav-links a::after,
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.28s ease;
}
.nav-links a:hover::after,
.footer-links a:hover::after {
  width: 100%;
}

/* --- Logo --- */
.logo-link {
  transition: opacity 0.2s, transform 0.2s;
}
.logo-link:hover {
  opacity: 0.85;
  transform: scale(1.04);
}

/* --- Stat cards --- */
.stat-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 208, 0, 0.12);
}

/* --- Feature cards --- */
.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(255, 208, 0, 0.14);
}

/* --- Gallery image zoom --- */
.gallery-item img {
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
}

/* --- Game thumb scale (champions) --- */
.game-thumb {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.game-thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(255, 208, 0, 0.28);
}

/* --- Game card (catalog) glow --- */
.game-card:hover {
  box-shadow: 0 10px 30px rgba(255, 208, 0, 0.28);
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
