/* ── Fonts ─────────────────────────────────────────── */
@font-face {
  font-family: 'montserrat';
  src: url('../fonts/montserrat-regular-webfont.woff2') format('woff2'),
       url('../fonts/montserrat-regular-webfont.woff') format('woff');
  font-weight: normal;
}
@font-face {
  font-family: 'montserrat';
  src: url('../fonts/montserrat-bold-webfont.woff2') format('woff2'),
       url('../fonts/montserrat-bold-webfont.woff') format('woff');
  font-weight: bold;
}
@font-face {
  font-family: 'chivo';
  src: url('../fonts/chivo-regular-webfont.woff2') format('woff2'),
       url('../fonts/chivo-regular-webfont.woff') format('woff');
  font-weight: normal;
}

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #F9A51B;
  --gold-dk: #bb740a;
  --bg:      #111111;
  --bg-2:    #1a1a1a;
  --bg-3:    #222222;
  --text:    #e8e4e4;
  --muted:   #888787;
  --white:   #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'chivo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: 'montserrat', sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'montserrat', sans-serif;
  font-size: .75rem;
  font-weight: bold;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── Nav ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #2a2a2a;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo img { height: 32px; filter: brightness(0) invert(68%) sepia(78%) saturate(642%) hue-rotate(358deg) brightness(102%) contrast(97%); }

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-family: 'montserrat', sans-serif;
  font-size: .8rem;
  font-weight: bold;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }

.nav__lang {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-left: 2rem;
}

.nav__lang-option {
  font-family: 'montserrat', sans-serif;
  font-size: .7rem;
  font-weight: bold;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  text-decoration: none;
}
.nav__lang-option:hover { color: var(--gold); }
.nav__lang-option--active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
}
.nav__lang-sep {
  color: #444;
  font-size: .65rem;
}
.nav__flag {
  width: 20px;
  height: 14px;
  vertical-align: middle;
  border-radius: 2px;
  display: inline-block;
}
.nav__lang-option {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/home/our-games.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.5);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero__game-logo {
  width: 380px;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.hero__text {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 480px;
}

.btn {
  display: inline-block;
  padding: .85rem 2rem;
  font-family: 'montserrat', sans-serif;
  font-size: .8rem;
  font-weight: bold;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s, color .2s;
  cursor: pointer;
}

.btn--gold {
  background: var(--gold);
  color: #000;
}
.btn--gold:hover { background: var(--gold-dk); }

.btn--outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover { background: var(--gold); color: #000; }

.hero__badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
}

.hero__badge {
  height: 28px;
  opacity: .8;
  filter: brightness(0) invert(1);
}

/* ── About ─────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--bg-2);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.about__title span { color: var(--gold); }

.about__body {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about__images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
}

.about__images img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

/* ── Culture ───────────────────────────────────────── */
.culture {
  padding: 7rem 0;
  background: var(--bg);
}

.culture__header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.culture__title {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.culture__lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.culture__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.culture__card {
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
}

.culture__card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.culture__card-body {
  padding: 1.5rem;
}

.culture__card-body h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: .6rem;
}

.culture__card-body p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Careers ───────────────────────────────────────── */
.careers {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  text-align: center;
}

.careers__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/careers/team.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(.25);
}

.careers__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.careers__title {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.careers__title span { color: var(--gold); }

.careers__body {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: #0a0a0a;
  border-top: 1px solid #222;
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #222;
  margin-bottom: 2rem;
}

.footer__logo { height: 28px; margin-bottom: 1.5rem; filter: brightness(0) invert(68%) sepia(78%) saturate(642%) hue-rotate(358deg) brightness(102%) contrast(97%); }

.footer__address {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.9;
  font-style: normal;
}

.footer__address a {
  color: var(--gold);
  transition: opacity .2s;
}
.footer__address a:hover { opacity: .75; }

.footer__nav-title {
  font-family: 'montserrat', sans-serif;
  font-size: .7rem;
  font-weight: bold;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__nav-links a {
  font-size: .9rem;
  color: var(--gold);
  transition: color .2s;
}
.footer__nav-links a:hover { color: var(--white); }

.footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: .25rem;
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: border-color .2s, color .2s, background .2s;
}
.footer__social:hover { background: var(--gold); color: #000; }

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--muted);
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer__legal-links a { transition: color .2s; }
.footer__legal-links a:hover { color: var(--gold); }

/* ── Policy Pages ──────────────────────────────── */
.page-hero {
  background: var(--bg-2);
  border-bottom: 1px solid #2a2a2a;
  padding: 5rem 0 3rem;
  margin-top: 64px;
}

.page-hero__title {
  font-size: 2.2rem;
  color: var(--white);
}

.page-body {
  padding: 4rem 0 6rem;
  background: var(--bg);
}

.policy-content {
  max-width: 860px;
}

.policy-content p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.policy-content ol {
  list-style: none;
  padding: 0;
}

.policy-content h4 {
  font-family: 'montserrat', sans-serif;
  font-size: .85rem;
  font-weight: bold;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 2rem 0 .6rem;
}

.policy-content a {
  color: var(--gold);
  text-decoration: underline;
}
.policy-content a:hover { color: var(--white); }
