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

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  width: 100%;
  max-width: 900px;
}

.hero-pretitle {
  margin-bottom: 32px;
  opacity: 0.7;
}

.hero-logo {
  margin-bottom: 28px;
}

.hero-seal {
  width: 120px;
  height: 120px;
  animation: sealRotate 40s linear infinite;
}

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

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

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  gap: 0;
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-title-sub {
  font-family: var(--font-caps);
  font-size: clamp(0.6rem, 1.5vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--bronze);
  text-transform: uppercase;
  margin-top: 10px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--bronze-light);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.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);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.4;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================
   ANNOUNCEMENT STRIP
======================== */
.announcement-strip {
  background: rgba(212, 175, 55, 0.05);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 20px 0;
}

.announcement-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.announcement-inner p {
  flex: 1;
  font-size: 0.9rem;
  color: var(--cream);
  min-width: 200px;
}

.announcement-link {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  white-space: nowrap;
  transition: opacity var(--transition-fast);
}

.announcement-link:hover {
  opacity: 0.7;
}

/* ========================
   INTRO
======================== */
.intro {
  padding: var(--section-padding) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.intro-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-left h2 em {
  font-style: italic;
  color: var(--gold);
}

.intro-left p {
  font-size: 1rem;
  line-height: 1.9;
}

.intro-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.intro-emblem {
  width: 280px;
  height: 280px;
  opacity: 0.7;
  animation: sealRotate 60s linear infinite reverse;
}

.intro-emblem svg {
  width: 100%;
  height: 100%;
}

.intro-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.intro-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}

/* ========================
   FEATURED GAME
======================== */
.featured-game {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.featured-game-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.featured-game::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.featured-game::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}

.featured-game-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.featured-game-left {
  display: flex;
  justify-content: center;
}

.featured-game-seal {
  width: 300px;
  height: 300px;
  opacity: 0.8;
  animation: sealRotate 50s linear infinite;
}

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

.featured-game-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-game-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream);
}

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

.featured-game-sub {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--bronze);
  text-transform: uppercase;
  margin-top: -8px;
}

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

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

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

/* ========================
   SECOND TITLE TEASER
======================== */
.second-title-teaser {
  padding: var(--section-padding) 0;
  border-top: 1px solid rgba(212,175,55,0.08);
}

.second-title-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.second-title-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.second-title-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
}

.second-title-left h2 em {
  color: var(--gold);
  font-style: italic;
}

.second-title-left p em {
  color: var(--gold);
  font-style: italic;
}

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

.second-title-visual {
  background: rgba(8,8,14,0.6);
  border: 1px solid rgba(212,175,55,0.12);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.second-title-badge {
  color: #c4a030;
  display: flex;
  align-items: center;
  gap: 8px;
}

.second-title-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4a030;
  display: inline-block;
  animation: amberPulse 2s ease-in-out infinite;
}

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

.second-title-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

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

.second-title-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.second-title-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.5;
}

.second-title-feature-icon {
  color: var(--gold);
  opacity: 0.5;
  font-size: 0.65rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ========================
   FAITH
======================== */
.faith {
  padding: var(--section-padding) 0;
  text-align: center;
}

.faith-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faith-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 32px;
  line-height: 1.2;
}

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

.faith-inner p {
  max-width: 660px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.9;
}

.faith-verse {
  margin-top: 56px;
  padding: 40px 60px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}

.faith-verse::before {
  content: '';
  position: absolute;
  top: -1px; left: 40px; right: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.faith-verse-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.03em;
}

/* ========================
   COMMUNITY TEASER
======================== */
.community-teaser {
  padding: var(--section-padding) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.community-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.community-teaser-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.community-teaser-left h2 em {
  color: var(--gold);
  font-style: italic;
}

.community-teaser-actions {
  margin-top: 8px;
}

.community-teaser-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.community-card {
  padding: 28px 32px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  background: rgba(212, 175, 55, 0.02);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition-mid), background var(--transition-mid);
}

.community-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.05);
}

.community-card-icon {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.7;
}

.community-card h4 {
  font-family: var(--font-caps);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
}

.community-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.community-card-link {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  transition: opacity var(--transition-fast);
  margin-top: 4px;
}

.community-card-link:hover {
  opacity: 0.7;
}

/* ========================
   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;
}

/* ========================
   TABLET
======================== */
@media (max-width: 1024px) {
  .intro-grid { gap: 60px; }
  .featured-game-inner { gap: 50px; }
  .community-teaser-inner { gap: 50px; }
  .second-title-inner { gap: 48px; }
}

/* ========================
   MOBILE
======================== */
@media (max-width: 768px) {

  .hero {
    padding: calc(var(--nav-height) + 24px) 0 56px;
  }

  .hero-content {
    padding: 0 20px;
    gap: 10px;
  }

  .hero-pretitle { margin-bottom: 4px; }
  .hero-logo { margin-bottom: 4px; }

  .hero-seal {
    width: 160px;
    height: 160px;
  }

  .hero-title { margin-bottom: 4px; }

  .hero-title-main {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
    line-height: 1;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  .announcement-inner {
    flex-direction: column;
    gap: 8px;
  }

  .announcement-inner p {
    font-size: 0.85rem;
    min-width: unset;
  }

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

  .intro-right { order: -1; }

  .intro-emblem {
    width: 160px;
    height: 160px;
  }

  .intro-stat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .intro-stat-num { font-size: 1.8rem; }

  .featured-game-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .featured-game-seal {
    width: 160px;
    height: 160px;
  }

  .featured-game-title { font-size: 2.2rem; }

  .featured-game-actions { flex-direction: column; }
  .featured-game-actions a { width: 100%; justify-content: center; }

  .second-title-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .second-title-features { grid-template-columns: 1fr; }
  .second-title-actions { flex-direction: column; }
  .second-title-actions a { width: 100%; justify-content: center; }

  .faith-verse {
    padding: 24px 16px;
  }

  .faith-verse-text {
    font-size: 1rem;
    white-space: normal;
    text-align: center;
  }

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

  .community-teaser-right { grid-template-columns: 1fr; }

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

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

/* ========================
   SMALL MOBILE
======================== */
@media (max-width: 480px) {

  .hero-seal {
    width: 130px;
    height: 130px;
  }

  .hero-title-main {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .intro-stat-num { font-size: 1.5rem; }
  .featured-game-title { font-size: 1.8rem; }
  .faith-title { font-size: 1.6rem; }
}