@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #12141f;
  color: #d9dcec;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; }

@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.06); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.9; }
}

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px;
  background: rgba(18,20,31,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232,184,75,0.15);
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.nav-title { font-family: 'Cinzel', serif; font-weight: 700; font-size: 19px; color: #f0c85a; letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link { color: #aeb3cf; text-decoration: none; font-size: 14px; font-weight: 500; }
.nav-cta {
  background: linear-gradient(180deg,#f0c85a,#d99a3d); color: #1a1508;
  text-decoration: none; font-weight: 700; font-size: 13px; padding: 9px 20px;
  border-radius: 6px; letter-spacing: 0.02em;
}

.hero {
  position: relative; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 150px 24px 130px; overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 900px 600px at 50% 40%, rgba(217,154,61,0.28), transparent 70%);
  animation: glowPulse 6s ease-in-out infinite; pointer-events: none;
}
.spark { position: absolute; background: #f0c85a; border-radius: 50%; }
.spark-1 { top: 20%; left: 14%; width: 4px; height: 4px; animation: twinkle 3s ease-in-out infinite; }
.spark-2 { top: 34%; right: 18%; width: 3px; height: 3px; animation: twinkle 4s ease-in-out infinite 1s; }
.spark-3 { bottom: 24%; left: 24%; width: 3px; height: 3px; animation: twinkle 5s ease-in-out infinite 0.5s; }

.badge {
  position: relative; border: 1px solid rgba(232,184,75,0.5); background: rgba(232,184,75,0.08);
  color: #f0c85a; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px; margin-bottom: 28px; animation: fadeUp 0.7s ease both;
}
.hero h1 {
  position: relative; font-family: 'Cinzel', serif; font-weight: 800; font-size: clamp(48px,7vw,88px);
  line-height: 1.05; color: #f0c85a; margin: 0 0 22px; text-shadow: 0 0 40px rgba(240,200,90,0.25);
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-desc { position: relative; max-width: 620px; font-size: 19px; line-height: 1.6; color: #b7bcda; margin: 0 0 44px; animation: fadeUp 0.8s ease 0.2s both; }
.hero-buttons { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; animation: fadeUp 0.8s ease 0.3s both; }
.btn-primary {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg,#f0c85a,#d99a3d); color: #1a1508; text-decoration: none;
  font-weight: 700; font-size: 16px; padding: 16px 32px; border-radius: 8px;
  box-shadow: 0 8px 30px rgba(217,154,61,0.35);
}
.play-icon { width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 9px solid #1a1508; }
.btn-secondary {
  position: relative; display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(232,184,75,0.35); background: rgba(232,184,75,0.05); color: #f0c85a;
  text-decoration: none; font-weight: 600; font-size: 15px; padding: 15px 26px; border-radius: 8px;
}
.win-icon { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; width: 14px; height: 14px; }
.win-icon span { background: #f0c85a; border-radius: 1px; }
.mac-icon { width: 13px; height: 13px; border-radius: 50%; border: 2px solid #f0c85a; }
.btn-disabled { opacity: 0.5; cursor: not-allowed; }
.coming-soon-badge {
  position: absolute; top: -10px; right: -8px;
  background: linear-gradient(180deg,#f0c85a,#d99a3d); color: #1a1508;
  font-size: 9px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
.hero-note { position: relative; margin-top: 20px; font-size: 12.5px; color: #6c7194; animation: fadeUp 0.8s ease 0.35s both; }

.section { padding: 100px 56px 120px; max-width: 1240px; margin: 0 auto; }
.section-label { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #d99a3d; margin-bottom: 14px; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { font-family: 'Cinzel', serif; font-weight: 700; font-size: clamp(30px,4vw,42px); color: #f0e6c8; margin: 0; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 28px; }
.feature-card { background: #181b2b; border: 1px solid rgba(232,184,75,0.14); border-radius: 14px; padding: 32px 26px; }
.feature-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(232,184,75,0.1); border: 1px solid rgba(232,184,75,0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.feature-card h3 { font-family: 'Cinzel', serif; font-size: 19px; font-weight: 700; color: #f0c85a; margin: 0 0 10px; }
.feature-card p { font-size: 14.5px; line-height: 1.6; color: #9ba0c2; margin: 0; }

.icon-coop { width: 24px; height: 24px; border-radius: 50%; border: 2px solid #f0c85a; box-shadow: 8px 0 0 -2px #f0c85a; }
.icon-hardcore { width: 0; height: 0; border-left: 11px solid transparent; border-right: 11px solid transparent; border-bottom: 19px solid #f0c85a; }
.icon-procedural { width: 22px; height: 22px; background: #f0c85a; transform: rotate(45deg); border-radius: 3px; }
.icon-classes { width: 22px; height: 26px; background: #f0c85a; clip-path: polygon(50% 0%,100% 20%,100% 60%,50% 100%,0% 60%,0% 20%); }

.gallery-section { padding: 60px 0 130px; }
.gallery-wrap { position: relative; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.gallery-frame {
  position: relative; border-radius: 16px; overflow: hidden; border: 1px solid rgba(232,184,75,0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5); aspect-ratio: 2560/1387; background: #000;
}
.gallery-frame img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.5s ease;
}
.gallery-frame img.active { opacity: 1; }
.gallery-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; pointer-events: none; }
.gallery-arrow {
  pointer-events: auto; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(240,200,90,0.4); background: rgba(18,20,31,0.65); color: #f0c85a;
  font-size: 18px; cursor: pointer; backdrop-filter: blur(4px);
}
.gallery-dots { position: absolute; bottom: 16px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.gallery-dot { width: 8px; height: 8px; border-radius: 4px; border: none; cursor: pointer; background: rgba(240,200,90,0.35); transition: all 0.25s ease; padding: 0; }
.gallery-dot.active { width: 22px; background: #f0c85a; }
.gallery-caption { text-align: center; margin-top: 18px; font-size: 14px; color: #6c7194; }

.support-section { padding: 0 56px 140px; }
.support-card { max-width: 780px; margin: 0 auto; position: relative; background: #181b2b; border: 1px solid rgba(232,184,75,0.2); border-radius: 18px; padding: 56px 48px; text-align: center; }
.corner-dot { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #d99a3d; }
.corner-dot.tl { top: 10px; left: 10px; } .corner-dot.tr { top: 10px; right: 10px; }
.corner-dot.bl { bottom: 10px; left: 10px; } .corner-dot.br { bottom: 10px; right: 10px; }
.support-card h2 { font-family: 'Cinzel', serif; font-weight: 700; font-size: clamp(26px,3.5vw,34px); color: #f0e6c8; margin: 0 0 14px; }
.support-card p { font-size: 15.5px; line-height: 1.7; color: #9ba0c2; max-width: 520px; margin: 0 auto 32px; }
.btn-coffee { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(180deg,#f0c85a,#d99a3d); color: #1a1508; text-decoration: none; font-weight: 700; font-size: 15px; padding: 15px 30px; border-radius: 8px; }
.coffee-icon { width: 16px; height: 16px; border-radius: 4px 4px 8px 8px; border: 2px solid #1a1508; }

.footer { border-top: 1px solid rgba(232,184,75,0.12); padding: 36px 56px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 24px; height: 24px; border-radius: 6px; object-fit: cover; }
.footer-brand span { font-family: 'Cinzel', serif; font-size: 14px; color: #8b90ab; }
.footer-copy { font-size: 12.5px; color: #565b7c; }

@media (max-width: 640px) {
  .nav { flex-wrap: wrap; justify-content: center; gap: 12px; padding: 14px 20px; }
  .nav-title { font-size: 16px; white-space: nowrap; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 16px 24px; }

  .hero { padding: 120px 20px 90px; }
  .hero-buttons { gap: 12px; }
  .btn-secondary, .btn-primary { font-size: 14px; padding: 13px 20px; }

  .section { padding: 64px 20px 72px; }
  .section-head { margin-bottom: 44px; }

  .gallery-section { padding: 40px 0 80px; }
  .gallery-wrap { padding: 0 20px; }
  .gallery-arrow { width: 36px; height: 36px; font-size: 16px; }

  .support-section { padding: 0 20px 90px; }
  .support-card { padding: 40px 24px; }

  .footer { padding: 24px 20px; justify-content: center; text-align: center; }
}
