:root {
  --ink: #151515;
  --black: #090b10;
  --navy: #071326;
  --navy-2: #102e62;
  --blue: #0c5fd7;
  --gold: #ffcf45;
  --gold-2: #f49b18;
  --red: #e9282b;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: rgba(10, 26, 52, .12);
  --muted: #627088;
  --max: 1160px;
}

* { box-sizing: border-box; }

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--soft);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.top {
  background: #17191d;
  color: #fff;
}

.top-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #111;
  background: linear-gradient(145deg, #ffe06a, #f29a14);
  border: 2px solid rgba(255, 255, 255, .18);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .35);
  font-size: 18px;
}

.brand-name {
  display: block;
  font-size: 40px;
  color: #f7f4ff;
}

.top-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.btn {
  min-width: 0;
  min-height: 40px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.btn.blue {
  color: #fff;
  background: linear-gradient(180deg, #4572a8, #24517e);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

.btn.gold {
  color: #201000;
  background: linear-gradient(180deg, #ffe66e, #f5a01b);
  box-shadow: 0 14px 26px rgba(244, 155, 24, .25);
}

.btn.red {
  color: #fff;
  background: linear-gradient(180deg, #ff4449, #c80910);
  box-shadow: 0 12px 24px rgba(233, 40, 43, .25);
}

.nav {
  background: #020304;
  color: #fff;
}

.nav-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar { display: none; }

.nav-inner a {
  flex: 0 0 auto;
  padding: 18px 13px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}

.nav-inner a:first-child {
  color: #f4ff19;
}

.nav-inner a:first-child::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 10px;
  height: 3px;
  background: #f4ff19;
}

.hero {
  min-height: 520px;
  color: #fff;
  background: #061225;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 4, 10, .92), rgba(2, 4, 10, .64) 38%, rgba(2, 4, 10, .04) 68%),
    url("/assets/go99-hero.png?v=202607021927");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  min-height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(600px, 100%);
  min-width: 0;
  padding: 46px 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .42);
}

.hero-copy h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 72px;
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hero-copy h1 span {
  color: var(--gold);
  display: block;
  font-size: 40px;
  line-height: 1.08;
  margin-top: 10px;
}

.hero-copy p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  width: min(var(--max), calc(100% - 36px));
  min-height: 46px;
  margin: -23px auto 0;
  padding: 0 22px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 8px;
  color: #08223f;
  background: #fff;
  border: 1px solid rgba(255, 207, 69, .7);
  box-shadow: 0 16px 34px rgba(2, 10, 24, .12);
  font-size: 14px;
  font-weight: 800;
}

.notice strong { color: #b96b00; }

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 46px auto 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.content-card,
.side-card,
.feature,
.article-card,
.detail-card,
.detail-side {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(8, 22, 48, .08);
}

.content-card { padding: 34px; }
.side-card { padding: 24px; }

.content-card h2,
.side-card h2,
.section-title {
  margin: 0;
  color: #2a3444;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.content-card h2 span,
.section-title span {
  color: #c08300;
}

.content-card p,
.side-card p,
.feature p,
.article-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.quote-band {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #f9fbff;
  color: #33445c;
  font-weight: 800;
  line-height: 1.55;
}

.side-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.side-item {
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: #fff;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.side-item b {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #170e00;
  background: linear-gradient(180deg, #ffe46a, #f4a11b);
  font-size: 18px;
}

.side-item span {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  overflow: hidden;
}

.feature-media,
.article-thumb,
.detail-media {
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 207, 69, .95), transparent 18%),
    radial-gradient(circle at 22% 38%, rgba(12, 95, 215, .75), transparent 22%),
    linear-gradient(135deg, var(--navy), #11171f);
  position: relative;
}

.feature-media {
  min-height: 150px;
}

.feature-media::before,
.feature-media::after,
.article-thumb::before,
.article-thumb::after,
.detail-media::before,
.detail-media::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 8px solid rgba(255, 255, 255, .18);
}

.feature-media::before,
.article-thumb::before,
.detail-media::before {
  width: 110px;
  height: 110px;
  right: 22px;
  bottom: -34px;
}

.feature-media::after,
.article-thumb::after,
.detail-media::after {
  width: 76px;
  height: 76px;
  left: 28px;
  top: 32px;
  border-color: rgba(255, 207, 69, .44);
}

.feature-body { padding: 20px; }

.feature h3 {
  margin: 0 0 8px;
  color: #1d2b3d;
  font-size: 19px;
  line-height: 1.25;
}

.feature p {
  margin: 0;
  font-size: 15px;
}

.promo {
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 42px rgba(7, 19, 38, .18);
}

.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 19, 38, .96), rgba(7, 19, 38, .72) 42%, rgba(7, 19, 38, .12)),
    url("/assets/go99-hero.png?v=202607021927");
  background-size: cover;
  background-position: center;
}

.promo-copy {
  position: relative;
  max-width: 560px;
  padding: 34px;
}

.promo-copy h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 34px;
  line-height: 1.08;
  text-transform: uppercase;
}

.promo-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.7;
  font-size: 16px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  overflow: hidden;
}

.article-thumb {
  height: 142px;
  display: block;
}

.article-body {
  padding: 18px;
}

.date {
  width: 54px;
  min-height: 56px;
  margin-top: -48px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #0b2440;
  background: #fff;
  border: 2px solid var(--gold);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.date small {
  display: block;
  color: #7b8797;
  font-size: 11px;
  margin-top: 4px;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0 0 8px;
  color: #172033;
  font-size: 17px;
  line-height: 1.35;
}

.article-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.detail-hero {
  min-height: 300px;
  color: #fff;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 4, 10, .92), rgba(2, 4, 10, .54) 52%, rgba(2, 4, 10, .12)),
    url("/assets/go99-hero.png?v=202607021927");
  background-size: cover;
  background-position: center;
}

.detail-hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  min-height: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 36px 0;
}

.detail-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
}

.detail-meta span {
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
}

.detail-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.detail-card {
  padding: 34px;
}

.detail-label {
  display: inline-flex;
  min-height: 32px;
  padding: 0 12px;
  align-items: center;
  border-radius: 6px;
  color: #160e00;
  background: linear-gradient(180deg, #ffe46a, #f4a11b);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-media {
  height: 210px;
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
}

.detail-body {
  color: #33445c;
  font-size: 17px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.detail-body h2,
.detail-body h3 {
  color: #1d2b3d;
  line-height: 1.25;
  margin: 26px 0 10px;
}

.detail-body p,
.detail-body li {
  margin: 0 0 15px;
}

.detail-body a {
  color: #b96b00;
  text-decoration: underline;
}

.detail-nextprev {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-actions a,
.detail-side a {
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  font-weight: 800;
}

.detail-actions a {
  padding: 9px 12px;
}

.detail-side {
  padding: 22px;
}

.detail-side h2 {
  margin: 0 0 14px;
  color: #2a3444;
  font-size: 24px;
  line-height: 1.18;
  text-transform: uppercase;
}

.detail-side p {
  color: var(--muted);
  line-height: 1.7;
}

.detail-side nav,
.detail-side-links {
  display: grid;
  gap: 10px;
}

.detail-side a {
  padding: 12px 14px;
}

footer {
  margin-top: 48px;
  background: #08090b;
  color: #dbe6f4;
  padding: 28px 0;
}

.footer-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

@media (max-width: 980px) {
  .top-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero::before {
    background-position: 64% center;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-copy h1 span {
    font-size: 34px;
  }

  .intro,
  .detail-shell {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .top-inner,
  .nav-inner,
  .notice,
  .section,
  .detail-hero-inner,
  .detail-shell,
  .footer-inner {
    width: calc(100% - 28px);
  }

  .brand-name {
    font-size: 32px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .top-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-actions .btn {
    padding: 0 10px;
    font-size: 13px;
  }

  .nav-inner {
    padding: 0;
  }

  .nav-inner a {
    padding: 14px 12px;
    font-size: 13px;
  }

  .nav-inner a:first-child::after {
    bottom: 7px;
    left: 12px;
    right: 12px;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero::before {
    background-position: 70% center;
  }

  .hero-copy {
    padding: 22px;
    border-radius: 8px;
    border: 1px solid rgba(255, 207, 69, .28);
    background: rgba(1, 8, 18, .68);
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: .98;
  }

  .hero-copy h1 span {
    font-size: 24px;
    line-height: 1.15;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .notice {
    margin-top: 14px;
    min-height: 0;
    padding: 14px;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 8px;
  }

  .content-card,
  .side-card,
  .promo-copy,
  .detail-card,
  .detail-side {
    padding: 22px;
  }

  .content-card h2,
  .side-card h2,
  .section-title {
    font-size: 24px;
  }

  .section-head {
    display: block;
  }

  .feature-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .promo-copy h2 {
    font-size: 28px;
  }

  .side-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .side-item b {
    width: 42px;
    height: 42px;
  }

  .detail-hero,
  .detail-hero-inner {
    min-height: 330px;
  }

  .detail-body {
    font-size: 15px;
    line-height: 1.75;
  }
}

.detail-body ul {
  margin: 16px 0 20px;
  padding-left: 22px;
}

.feature h3 a,
.article-card h3 a {
  color: inherit;
}
