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

* { box-sizing: border-box; }

:root {
  --bg: #03111d;
  --bg2: #071c2b;
  --gold: #d9a954;
  --gold2: #f0c77c;
  --text: #f7f7f7;
  --muted: rgba(255,255,255,.76);
  --line: rgba(255,255,255,.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #02101b;
}

.site-shell {
  min-height: 100vh;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  background:
    radial-gradient(circle at top center, rgba(12,52,85,.55), transparent 28%),
    linear-gradient(180deg, #03101a 0%, #05192a 100%);
}

.container {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3,16,26,.95);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: white;
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.brand-text {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}

nav {
  display: flex;
  gap: 48px;
}

nav a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: color .2s ease;
}

nav a:hover {
  color: var(--gold2);
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 26px;
  border-radius: 4px;
  border: 1px solid rgba(217,169,84,.9);
  color: var(--gold2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: all .2s ease;
}

.outline-btn:hover {
  background: rgba(217,169,84,.1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  background:
    radial-gradient(circle at center, rgba(15,55,87,.42), transparent 45%),
    linear-gradient(180deg, #03111d 0%, #04192a 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 620px;
}

.hero-copy {
  max-width: 620px;
  padding-bottom: 90px;
}

h1 {
  margin: 0;
  font-size: 78px;
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.gold-line {
  width: 72px;
  height: 4px;
  background: var(--gold);
  margin: 30px 0 26px;
}

.small-line {
  margin-top: 18px;
  margin-bottom: 24px;
}

.hero-copy p {
  margin: 0;
  font-size: 23px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 44px;
}

.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 218px;
  height: 64px;
  border-radius: 4px;
  background: linear-gradient(180deg, #e9c47b 0%, #d6a34f 100%);
  color: #04111c;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(217,169,84,.22);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  height: 64px;
  border-radius: 4px;
  border: 1px solid rgba(217,169,84,.8);
  color: var(--gold2);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  background: rgba(255,255,255,.02);
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .18;
}

.hero-logo img {
  width: 560px;
  max-width: 100%;
  object-fit: contain;
}

.game-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.game-bg {
  position: absolute;
  inset: 0;
  background-image: url('unnamed.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.92) contrast(1.02);
  transform: scale(1.01);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,16,26,.92) 0%, rgba(3,16,26,.75) 26%, rgba(3,16,26,.18) 58%, rgba(3,16,26,.06) 100%),
    linear-gradient(180deg, rgba(3,16,26,.1), rgba(3,16,26,.4));
}

.game-content {
  position: relative;
  display: grid;
  grid-template-columns: 520px 1fr;
  min-height: 760px;
  align-items: center;
}

.game-panel {
  padding: 40px 0;
}

.eyebrow {
  color: var(--gold2);
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h2 {
  margin: 24px 0 24px;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.game-panel p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 20px;
  line-height: 1.65;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 34px;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.fact {
  border-right: 1px solid rgba(255,255,255,.12);
  padding-right: 22px;
}

.fact:last-child {
  border-right: none;
}

.fact-title {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

.fact-text {
  margin-top: 10px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.5;
}

.learn-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  height: 58px;
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid rgba(217,169,84,.82);
  color: var(--gold2);
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  background: rgba(255,255,255,.02);
}

.content-section {
  position: relative;
  padding: 104px 0;
  background: linear-gradient(180deg, #041827 0%, #061f31 100%);
  border-top: 1px solid rgba(255,255,255,.07);
}

.content-section.alt {
  background: linear-gradient(180deg, #061f31 0%, #03111d 100%);
}

.section-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 72px;
  align-items: start;
}

.section-kicker {
  color: var(--gold2);
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-title {
  margin: 20px 0 24px;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -.03em;
  text-transform: none;
}

.section-copy {
  color: rgba(255,255,255,.78);
  font-size: 20px;
  line-height: 1.65;
  margin: 0;
}

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

.info-card {
  min-height: 170px;
  padding: 28px;
  border: 1px solid rgba(217,169,84,.18);
  background: rgba(255,255,255,.035);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}

.info-card h3 {
  margin: 0 0 14px;
  color: white;
  font-size: 26px;
  line-height: 1.22;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: -.02em;
  text-transform: none;
}

.info-card p,
.info-card li {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.6;
}

.info-card p { margin: 0; }

.support-band {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(217,169,84,.16), transparent 32%),
    linear-gradient(135deg, #03111d 0%, #082336 55%, #123d4d 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}

.support-inner {
  max-width: 860px;
}

.support-inner h2 {
  margin: 20px 0 24px;
  font-size: 60px;
  line-height: 1.02;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -.03em;
  text-transform: none;
}

.support-inner p {
  color: rgba(255,255,255,.8);
  font-size: 21px;
  line-height: 1.65;
  margin: 0 0 34px;
}

.support-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.email-btn {
  padding: 0 22px;
  font-size: 16px;
}

.footer {
  padding: 34px 0;
  background: #020d16;
  color: rgba(255,255,255,.55);
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
}

@media (max-width: 1100px) {
  nav { display: none; }
  .hero-grid, .game-content, .section-grid { grid-template-columns: 1fr; }
  .hero-logo { display: none; }
  h1 { font-size: 58px; }
  h2 { font-size: 50px; }
  .facts { grid-template-columns: repeat(2,1fr); }
  .card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .container { width: calc(100% - 36px); }
  .hero-actions,
  .support-actions {
    flex-direction: column;
  }
  .gold-btn, .ghost-btn { width: 100%; }
  h1 { font-size: 46px; }
  h2 { font-size: 40px; }
  .section-title { font-size: 38px; }
  .facts { grid-template-columns: 1fr; }
  .fact { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 18px; }
}
