:root {
  --blue: #2d85f3;
  --red: #e63737;
  --yellow: #ffd54a;
  --ink: #141414;
  --muted: #6d7480;
  --paper: #ffffff;
  --soft: #f2f4f8;
  --dark: #08090d;
  --line: #e1e5eb;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(0, 0, 0, .72);
  color: #fff;
  backdrop-filter: blur(10px);
}
.site-header.is-scrolled { background: #050506; }
.brand img { width: 132px; height: auto; object-fit: contain; }
.site-menu { display: flex; justify-content: center; gap: 30px; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.site-menu a:hover { color: var(--yellow); }
.header-actions { display: flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.menu-toggle { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  border: 0;
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
}
.btn-small { min-height: 38px; padding-inline: 18px; font-size: 12px; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-dark { background: #111; color: #fff; }
.btn:hover { filter: brightness(1.07); }
.kicker { color: var(--blue); margin: 0 0 12px; font-size: 13px; font-weight: 950; text-transform: uppercase; }

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: #000;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .95; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.36), rgba(0,0,0,.08)), linear-gradient(0deg, rgba(0,0,0,.7), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin: 0 0 clamp(70px, 9vw, 118px) clamp(18px, 6vw, 92px);
  color: #fff;
}
.hero h1 {
  margin: 0;
  font-size: clamp(46px, 7.3vw, 86px);
  line-height: .92;
  font-weight: 950;
}
.hero p:not(.kicker) { max-width: 700px; font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.section { padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  font-weight: 950;
}
.section-head a,
.section-head span { color: var(--blue); font-weight: 900; text-transform: uppercase; }

.news-section { background: #fff; }
.news-grid,
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(0,0,0,.08);
}
.news-card a { display: grid; height: 100%; }
.news-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.news-card div { padding: 22px; }
.news-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.news-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(24px, 3.3vw, 40px);
  line-height: 1.05;
  font-weight: 950;
}
.news-card p { margin: 0; color: var(--muted); }
.news-card-big { grid-row: span 2; }
.news-card-big img { aspect-ratio: 16 / 11; }
.news-card-big h3 { font-size: clamp(34px, 4.8vw, 58px); }

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--soft);
}
.feature-split h2,
.cta h2,
.article-copy h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 74px);
  line-height: .95;
  font-weight: 950;
}
.feature-split p,
.cta p { max-width: 620px; color: var(--muted); font-size: 18px; }
.recent-list { display: grid; gap: 14px; }
.recent-list a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.recent-list b { color: var(--red); text-transform: uppercase; font-size: 12px; }
.recent-list span { font-size: 22px; font-weight: 950; line-height: 1.1; }

.games-band { padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px); background: #111; color: #fff; }
.games-band .news-card { background: #1a1b20; border-color: rgba(255,255,255,.12); color: #fff; }
.games-band .news-card p { color: rgba(255,255,255,.7); }

.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: #fff;
}
.cta img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.faq-section { background: var(--soft); }
.faq-list,
.inline-faq { max-width: 900px; }
details { padding: 20px 0; border-top: 1px solid #d6dce4; }
summary { cursor: pointer; font-size: 19px; font-weight: 950; }
details p { color: var(--muted); }

.article-hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #000;
}
.article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.article-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.26)), linear-gradient(0deg, rgba(0,0,0,.75), transparent 55%); }
.article-copy {
  position: relative;
  z-index: 1;
  color: #fff;
  width: min(980px, calc(100% - 36px));
  margin: 0 0 62px clamp(18px, 6vw, 92px);
}
.article-copy p { max-width: 780px; color: rgba(255,255,255,.84); font-size: 19px; }
.breadcrumb { color: rgba(255,255,255,.72); font-weight: 800; }
.meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.meta span,
.meta a { padding: 9px 13px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18); font-size: 13px; font-weight: 800; }

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) 330px;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(50px, 7vw, 92px) clamp(18px, 6vw, 92px);
}
.article-body p { font-size: 18px; color: #303946; }
.info-box {
  margin: 32px 0;
  padding: 24px;
  background: var(--soft);
  border-left: 6px solid var(--blue);
}
.info-box h2,
.side-panel h2,
.inline-faq h2 { margin-top: 0; font-size: 28px; line-height: 1.05; }
.side-panel {
  align-self: start;
  padding: 24px;
  background: #111;
  color: #fff;
  position: sticky;
  top: 96px;
}
.side-panel p { color: rgba(255,255,255,.72); }
.side-links { display: grid; margin-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.side-links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-weight: 800; }
.related { background: var(--soft); }

.site-footer {
  padding: 38px clamp(18px, 5vw, 72px);
  background: #050506;
  color: #fff;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding-bottom: 24px;
}
.footer-top img { width: 142px; height: auto; }
.footer-top nav { display: flex; flex-wrap: wrap; gap: 20px; font-weight: 800; text-transform: uppercase; font-size: 13px; }
.site-footer p { max-width: 760px; color: rgba(255,255,255,.7); }
.site-footer span { color: rgba(255,255,255,.5); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-toggle {
    display: inline-flex;
    min-height: 38px;
    padding: 0 14px;
    align-items: center;
    background: #fff;
    color: #111;
    border: 0;
    font-weight: 900;
  }
  .site-menu,
  .header-actions { display: none; }
  .site-header.is-open .site-menu,
  .site-header.is-open .header-actions { display: grid; grid-column: 1 / -1; justify-content: stretch; }
  .site-header.is-open .site-menu { gap: 0; }
  .site-header.is-open .site-menu a { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.16); }
  .site-header.is-open .header-actions { grid-template-columns: 1fr 1fr; }
  .feature-split,
  .cta,
  .article-shell { grid-template-columns: 1fr; }
  .side-panel { position: static; }
}

@media (max-width: 720px) {
  .hero-content,
  .article-copy { margin-left: 18px; margin-bottom: 52px; }
  .hero h1,
  .article-copy h1 { font-size: 42px; }
  .news-grid,
  .mini-grid { grid-template-columns: 1fr; }
  .news-card-big { grid-row: auto; }
  .section-head,
  .footer-top { align-items: flex-start; flex-direction: column; }
  .recent-list a { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
