/* ========================
   PAGE HERO
======================== */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding: calc(var(--nav-height) + 80px) 24px 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(212,175,55,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
}

.page-hero-content h1 em {
  color: var(--gold);
  font-style: italic;
}

.page-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--bronze-light);
  letter-spacing: 0.04em;
  max-width: 600px;
}

.page-hero-seal {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.1;
  animation: sealRotate 60s linear infinite reverse;
  pointer-events: none;
}

.page-hero-seal svg { width: 100%; height: 100%; }

@keyframes sealRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.page-hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25), transparent);
}

/* ========================
   FEATURED GAME
======================== */
.games-featured {
  padding: var(--section-padding) 0;
}

.games-featured-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: center;
  padding: 60px;
  border: 1px solid rgba(212,175,55,0.15);
  margin-top: 40px;
  overflow: hidden;
}

.games-featured-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.games-featured-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.games-featured-seal {
  width: 260px;
  height: 260px;
  animation: sealRotateFwd 40s linear infinite;
}

.games-featured-seal svg { width: 100%; height: 100%; }

@keyframes sealRotateFwd {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.games-featured-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.games-featured-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.games-featured-number {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
}

.games-featured-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 4px;
}

.games-featured-title em {
  color: var(--gold);
  font-style: italic;
}

.games-featured-sub {
  margin-top: -8px;
}

.games-featured-desc {
  font-size: 1rem;
  line-height: 1.85;
  max-width: 560px;
}

.games-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.game-tag {
  font-family: var(--font-caps);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--bronze);
}

.games-featured-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  margin-top: 8px;
}

.games-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.games-meta-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream);
}

.games-featured-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--cream);
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all var(--transition-mid);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ========================
   FUTURE GAMES
======================== */
.games-future {
  padding: var(--section-padding) 0;
  border-top: 1px solid rgba(212,175,55,0.08);
}

.games-future-header {
  max-width: 680px;
  margin-bottom: 60px;
}

.games-future-header h2 em {
  color: var(--gold);
  font-style: italic;
}

.games-future-header p {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.85;
}

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

.games-future-card {
  padding: 40px 32px;
  border: 1px solid rgba(212,175,55,0.1);
  background: rgba(212,175,55,0.02);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.games-future-card:hover {
  border-color: rgba(212,175,55,0.25);
  background: rgba(212,175,55,0.04);
}

.games-future-card-seal {
  width: 64px;
  height: 64px;
  opacity: 0.5;
  animation: sealRotateFwd 30s linear infinite;
}

.games-future-card-seal svg { width: 100%; height: 100%; }

.games-future-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.games-future-card-content h3 {
  font-size: 1.4rem;
  line-height: 1.2;
}

.games-future-card-content h3 em {
  color: var(--gold);
  font-style: italic;
}

.games-future-card-content p {
  font-size: 0.92rem;
  line-height: 1.75;
}

.games-future-status {
  color: var(--bronze);
  margin-top: auto;
}

.games-future-link {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: auto;
  transition: opacity 0.2s ease;
}

.games-future-link:hover { opacity: 0.7; }

/* ========================
   PHILOSOPHY
======================== */
.games-philosophy {
  padding: var(--section-padding) 0;
  border-top: 1px solid rgba(212,175,55,0.08);
}

.games-philosophy-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.games-philosophy-inner h2 {
  margin-bottom: 32px;
}

.games-philosophy-inner h2 em {
  color: var(--gold);
  font-style: italic;
}

.games-philosophy-inner p {
  max-width: 660px;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.games-philosophy-cta {
  margin-top: 48px;
}

/* ========================
   FOOTER
======================== */
.footer {
  padding: 80px 0 40px;
  background: var(--black-soft);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo img { height: 36px; width: auto; }

.footer-logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
}

.footer-logo-sub { display: block; margin-top: 2px; }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--bronze);
}

.footer-center .label { display: block; margin-bottom: 20px; }

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

.footer-links a {
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gray-light);
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--gold); }
.footer-right .label { display: block; margin-bottom: 20px; }

.footer-game-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-game-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--cream);
  transition: color var(--transition-fast);
}

.footer-game-link:hover .footer-game-name { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.8rem; color: var(--gray-mid); }

.footer-verse {
  font-family: var(--font-display);
  color: var(--bronze) !important;
  font-size: 0.9rem !important;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .games-featured-card {
    gap: 48px;
    padding: 48px 40px;
  }

  .games-future-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero-seal { display: none; }

  .games-featured-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 36px 28px;
  }

  .games-featured-left { order: -1; }

  .games-featured-seal {
    width: 180px;
    height: 180px;
  }

  .games-featured-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-future-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .games-featured-actions {
    flex-direction: column;
  }

  .games-featured-actions a {
    width: 100%;
    justify-content: center;
  }
}
/* ========================
   IN DEVELOPMENT CARD
======================== */
.games-indev {
  padding: 0 0 var(--section-padding);
}

.games-indev-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
  padding: 60px;
  border: 1px solid rgba(212,175,55,0.12);
  overflow: hidden;
  margin-top: 40px;
}

.games-indev-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(180,140,20,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.games-indev-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.games-indev-seal {
  width: 240px;
  height: 240px;
  animation: sealRotateFwd 50s linear infinite reverse;
  opacity: 0.7;
}

.games-indev-seal svg { width: 100%; height: 100%; }

.games-indev-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot-amber {
  background: #c4a030 !important;
  animation: amberPulse 2s ease-in-out infinite !important;
}

@keyframes amberPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.games-indev-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.games-indev-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
  padding: 24px 0;
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.games-indev-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.games-indev-feature-icon {
  color: var(--gold);
  opacity: 0.6;
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.games-indev-feature-title {
  display: block;
  font-family: var(--font-caps);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}

.games-indev-feature-desc {
  display: block;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--gray-light);
}

@media (max-width: 1024px) {
  .games-indev-card { gap: 48px; padding: 48px 40px; }
}

@media (max-width: 768px) {
  .games-indev-card { grid-template-columns: 1fr; gap: 40px; padding: 36px 28px; }
  .games-indev-left { order: -1; }
  .games-indev-seal { width: 160px; height: 160px; }
  .games-indev-features { grid-template-columns: 1fr; }
}