:root {
  --gk-black: #08020f;
  --gk-plum: #170326;
  --gk-purple: #5b0a8e;
  --gk-violet: #8e17d8;
  --gk-gold: #ffd451;
  --gk-gold-2: #c98118;
  --gk-cream: #fff7dc;
  --gk-white: #fffdf7;
  --gk-ink: #171127;
  --gk-muted: #766b89;
  --gk-line: rgba(255, 212, 81, .25);
  --gk-max: 1180px;
  font-family: Inter, Arial, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  letter-spacing: 0;
}

body {
  min-width: 320px;
  color: var(--gk-white);
  background:
    radial-gradient(circle at 12% 0%, rgba(142, 23, 216, .38), transparent 30%),
    linear-gradient(180deg, #08020f 0%, #19032a 54%, #fff7dc 54%, #fff7dc 100%);
}

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

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

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

h1,
h2,
h3,
p,
li,
a,
span,
strong {
  min-width: 0;
}

p,
li {
  line-height: 1.72;
}

.gk-wrap {
  width: min(var(--gk-max), calc(100% - 44px));
  margin: 0 auto;
}

.gk-top {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #4b066e, #9818d9);
  box-shadow: 0 12px 34px rgba(8, 2, 15, .25);
}

.gk-top-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gk-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 950;
}

.gk-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #351600;
  background:
    radial-gradient(circle at 34% 24%, #fff9bd 0 15%, transparent 16%),
    linear-gradient(135deg, #ffe783, #ffbd28 50%, #8d16d2);
  border: 2px solid rgba(255, 240, 150, .72);
  box-shadow: 0 0 28px rgba(255, 212, 81, .36);
  font-size: 24px;
}

.gk-word {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.gk-word strong {
  color: var(--gk-gold);
  font-size: 28px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .28);
}

.gk-word span {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gk-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.gk-nav a {
  padding: 11px 12px;
  border-radius: 999px;
}

.gk-nav a:hover,
.gk-nav .is-active {
  color: #2c1000;
  background: var(--gk-gold);
}

.gk-actions,
.gk-hero-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.gk-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .34);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.gk-btn.gold {
  border-color: transparent;
  color: #2a1100;
  background: linear-gradient(135deg, #fff2a5, #ffc835 56%, #bd7411);
  box-shadow: 0 14px 30px rgba(255, 200, 53, .3);
}

.gk-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  isolation: isolate;
  background: #100018;
}

.gk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, #08020f 0%, rgba(8, 2, 15, .96) 26%, rgba(8, 2, 15, .42) 58%, rgba(8, 2, 15, .14));
}

.gk-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 156px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, #100018 68%, #100018);
}

.gk-hero img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .92;
}

.gk-hero-inner {
  min-height: 660px;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 600px) minmax(320px, 1fr);
  gap: 56px;
  padding: 70px 0 52px;
}

.gk-title {
  max-width: 680px;
  color: #fff;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .96;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .48);
}

.gk-title span {
  display: block;
  color: var(--gk-gold);
}

.gk-copy {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.gk-hero-buttons {
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 14px;
}

.gk-hero-panel {
  align-self: end;
  justify-self: end;
  width: min(100%, 420px);
  margin-bottom: 28px;
  border: 1px solid rgba(255, 212, 81, .35);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(22, 3, 38, .78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
  backdrop-filter: blur(14px);
}

.gk-panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 212, 81, .2);
  gap: 1px;
}

.gk-stat {
  padding: 20px;
  background: rgba(10, 2, 19, .82);
}

.gk-stat strong {
  display: block;
  color: var(--gk-gold);
  font-size: 30px;
  line-height: 1;
}

.gk-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gk-panel-body {
  padding: 22px;
}

.gk-panel-body h2 {
  font-size: 22px;
  line-height: 1.18;
  color: #fff;
}

.gk-panel-body p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.gk-gold-nav {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.gk-gold-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 14px;
  padding: 8px;
  color: #311500;
  background: linear-gradient(135deg, #fff1a0, #ffc42d 52%, #b86e0c);
  box-shadow: 0 22px 44px rgba(255, 196, 45, .2);
}

.gk-gold-row a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.gk-gold-row a:hover,
.gk-gold-row .is-active {
  color: #fff;
  background: #3b0757;
}

.gk-section {
  padding: 82px 0;
}

.gk-dark {
  background:
    radial-gradient(circle at 88% 10%, rgba(142, 23, 216, .22), transparent 28%),
    linear-gradient(180deg, #100018, #08020f);
}

.gk-paper {
  color: var(--gk-ink);
  background: var(--gk-cream);
}

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

.gk-section-head h2 {
  max-width: 720px;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
}

.gk-dark .gk-section-head h2 {
  color: var(--gk-gold);
}

.gk-section-head p {
  max-width: 420px;
  color: var(--gk-muted);
  font-size: 16px;
}

.gk-dark .gk-section-head p {
  color: rgba(255, 255, 255, .72);
}

.gk-intro {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
  align-items: start;
}

.gk-copy-card {
  padding: 34px;
  border: 1px solid rgba(255, 212, 81, .24);
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .24);
}

.gk-copy-card p {
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

.gk-copy-card strong {
  color: var(--gk-gold);
}

.gk-link-callout {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--gk-gold);
  border-radius: 12px;
  background: rgba(255, 212, 81, .1);
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.gk-table {
  overflow: hidden;
  border: 1px solid rgba(255, 212, 81, .38);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(142, 23, 216, .22), rgba(255, 212, 81, .08)),
    rgba(255, 255, 255, .06);
}

.gk-table-row {
  display: grid;
  grid-template-columns: .8fr 1fr .55fr;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 212, 81, .18);
  align-items: center;
}

.gk-table-row:last-child {
  border-bottom: 0;
}

.gk-table-row.head {
  color: #351600;
  background: linear-gradient(135deg, #fff0a0, #ffc429);
  font-weight: 950;
  text-transform: uppercase;
}

.gk-table-row:not(.head) {
  color: rgba(255, 255, 255, .83);
  font-weight: 800;
}

.gk-table-row span:last-child {
  text-align: right;
  color: var(--gk-gold);
}

.gk-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gk-game-card {
  min-height: 248px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 212, 81, .22);
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 212, 81, .2), transparent 36%),
    linear-gradient(135deg, #351056, #12031d);
  box-shadow: 0 18px 40px rgba(58, 7, 86, .22);
}

.gk-game-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border: 20px solid rgba(255, 212, 81, .13);
  border-radius: 999px;
}

.gk-game-card b {
  color: var(--gk-gold);
  font-size: 42px;
  line-height: 1;
}

.gk-game-card h3 {
  margin-top: 54px;
  font-size: 22px;
  line-height: 1.18;
}

.gk-game-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.gk-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gk-step {
  padding: 28px;
  border-radius: 20px;
  background: #fffdf7;
  border: 1px solid rgba(23, 17, 39, .08);
  box-shadow: 0 16px 38px rgba(64, 20, 82, .08);
}

.gk-step b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #5b0a8e, #b119e8);
  font-size: 22px;
  box-shadow: 0 16px 30px rgba(91, 10, 142, .2);
}

.gk-step h3 {
  margin-top: 22px;
  font-size: 24px;
  line-height: 1.18;
}

.gk-step p {
  margin-top: 10px;
  color: var(--gk-muted);
  font-size: 15px;
}

.gk-news-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start;
}

.gk-news-intro {
  position: sticky;
  top: 106px;
  padding: 28px;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 212, 81, .22), transparent 35%),
    linear-gradient(135deg, #4c0876, #170326);
  box-shadow: 0 18px 44px rgba(64, 20, 82, .14);
}

.gk-news-intro h2 {
  color: var(--gk-gold);
  font-size: 34px;
  line-height: 1.08;
  text-transform: uppercase;
}

.gk-news-intro p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .76);
}

.gk-news-list {
  display: grid;
  gap: 14px;
}

.gk-news-card {
  display: grid;
  grid-template-columns: 106px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(23, 17, 39, .08);
  border-radius: 18px;
  background: #fffdf7;
  box-shadow: 0 12px 28px rgba(64, 20, 82, .07);
}

.gk-news-thumb {
  aspect-ratio: 1.35;
  border-radius: 14px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 212, 81, .9), transparent 21%),
    linear-gradient(135deg, #4b066e, #9516d8 58%, #ffc52d);
}

.gk-news-card h3 {
  color: var(--gk-ink);
  font-size: 19px;
  line-height: 1.24;
}

.gk-news-card p {
  margin-top: 6px;
  color: var(--gk-muted);
  font-size: 14px;
  line-height: 1.58;
}

.gk-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #351600;
  background: linear-gradient(135deg, #fff0a0, #ffc42d);
  font-weight: 950;
}

.gk-footer {
  padding: 42px 0 54px;
  color: rgba(255, 255, 255, .72);
  background: #08020f;
}

.gk-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 212, 81, .18);
  padding-top: 28px;
  font-size: 14px;
}

.gk-article-hero {
  position: relative;
  isolation: isolate;
  padding: 94px 0 76px;
  overflow: hidden;
  background: #100018;
}

.gk-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 2, 15, .97), rgba(8, 2, 15, .72), rgba(8, 2, 15, .22)),
    url("gk88-hero.png") center / cover no-repeat;
}

.gk-article-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, #fff7dc);
}

.gk-article-hero h1 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 950;
  text-transform: uppercase;
}

.gk-article-hero p {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.gk-article-shell {
  color: var(--gk-ink);
  background: var(--gk-cream);
  padding: 70px 0 92px;
}

.gk-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.gk-article-main,
.gk-side-card {
  border: 1px solid rgba(23, 17, 39, .08);
  border-radius: 22px;
  background: #fffdf7;
  box-shadow: 0 18px 44px rgba(64, 20, 82, .08);
}

.gk-article-main {
  padding: clamp(24px, 4vw, 48px);
}

.gk-article-main h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 950;
}

.gk-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 30px;
  color: #4c0876;
  font-size: 13px;
  font-weight: 900;
}

.gk-article-meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  background: #f3e4ff;
}

.gk-article-visual {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 30px;
  background: #170326;
}

.gk-article-visual img {
  width: 100%;
  aspect-ratio: 1.9;
  object-fit: cover;
}

.gk-article-body {
  color: #2b2438;
  font-size: 17px;
}

.gk-article-body h2,
.gk-article-body h3 {
  margin: 34px 0 12px;
  color: var(--gk-ink);
  line-height: 1.18;
}

.gk-article-body h2 {
  font-size: 30px;
}

.gk-article-body h3 {
  font-size: 23px;
}

.gk-article-body p,
.gk-article-body ul,
.gk-article-body ol {
  margin-top: 16px;
}

.gk-article-body a {
  color: #5b0a8e;
  font-weight: 900;
}

.gk-updated {
  padding: 16px 18px;
  border-radius: 14px;
  color: #4c0876;
  background: #f3e4ff;
  font-weight: 900;
}

.gk-article-actions {
  display: grid;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.gk-article-actions a,
.gk-article-actions li {
  color: #4c0876;
  font-weight: 900;
}

.gk-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 106px;
}

.gk-side-card {
  overflow: hidden;
}

.gk-side-visual {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(8, 2, 15, .05), rgba(8, 2, 15, .66)),
    url("gk88-hero.png") center / cover no-repeat;
}

.gk-side-body {
  padding: 24px;
}

.gk-side-body h2,
.gk-side-body h3 {
  font-size: 23px;
  line-height: 1.18;
}

.gk-side-body p,
.gk-side-body li {
  color: var(--gk-muted);
  font-size: 15px;
}

.gk-side-body p,
.gk-side-body ul {
  margin-top: 12px;
}

.gk-side-body ul {
  padding-left: 20px;
}

@media (max-width: 1040px) {
  .gk-nav {
    display: none;
  }

  .gk-hero-inner,
  .gk-intro,
  .gk-news-layout,
  .gk-article-layout {
    grid-template-columns: 1fr;
  }

  .gk-hero-panel {
    justify-self: start;
  }

  .gk-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gk-side,
  .gk-news-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .gk-wrap {
    width: min(100% - 28px, var(--gk-max));
  }

  .gk-top-inner {
    min-height: 70px;
  }

  .gk-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 20px;
  }

  .gk-word strong {
    font-size: 22px;
  }

  .gk-word span,
  .gk-actions .gk-btn:first-child {
    display: none;
  }

  .gk-btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
    border-radius: 8px;
  }

  .gk-hero {
    min-height: 650px;
  }

  .gk-hero::before {
    background: linear-gradient(180deg, rgba(8, 2, 15, .9), rgba(8, 2, 15, .7) 56%, rgba(8, 2, 15, .24));
  }

  .gk-hero img {
    object-position: 58% center;
  }

  .gk-hero-inner {
    min-height: 650px;
    padding: 44px 0 34px;
  }

  .gk-title {
    font-size: clamp(40px, 15vw, 60px);
  }

  .gk-copy,
  .gk-article-hero p {
    font-size: 16px;
  }

  .gk-hero-panel {
    display: none;
  }

  .gk-gold-nav {
    margin-top: -18px;
  }

  .gk-gold-row {
    justify-content: flex-start;
    overflow-x: auto;
    min-height: 62px;
  }

  .gk-gold-row a {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 13px;
    font-size: 12px;
  }

  .gk-section {
    padding: 58px 0;
  }

  .gk-section-head {
    display: grid;
  }

  .gk-copy-card {
    padding: 24px;
    border-radius: 16px;
  }

  .gk-table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .gk-table-row span:last-child {
    text-align: left;
  }

  .gk-game-grid,
  .gk-steps {
    grid-template-columns: 1fr;
  }

  .gk-news-intro,
  .gk-article-main,
  .gk-side-card {
    border-radius: 16px;
  }

  .gk-news-card {
    grid-template-columns: 82px 1fr;
    gap: 12px;
  }

  .gk-arrow {
    display: none;
  }

  .gk-article-hero {
    padding: 64px 0 52px;
  }

  .gk-article-shell {
    padding: 46px 0 64px;
  }

  .gk-article-visual img {
    aspect-ratio: 1.25;
  }

  .gk-footer-inner {
    display: grid;
  }
}
