:root {
  --rk-green-950: #041a10;
  --rk-green-900: #072719;
  --rk-green-800: #0d3d25;
  --rk-green-700: #12673d;
  --rk-green-600: #17a05d;
  --rk-gold-600: #c8942d;
  --rk-gold-500: #e0b24a;
  --rk-gold-300: #f7d77d;
  --rk-ink: #152016;
  --rk-muted: #627061;
  --rk-line: #e5e7dc;
  --rk-paper: #fffdf6;
  --rk-soft: #f4f1e6;
  --rk-white: #fff;
  --rk-shadow: 0 18px 48px rgba(9, 41, 25, .14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; }
body.rk-page {
  margin: 0;
  overflow-x: hidden;
  background: #fffdf8;
  color: var(--rk-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

.rk-page img { display: block; max-width: 100%; }
.rk-page a { color: inherit; text-decoration: none; }
.rk-page h1,
.rk-page h2,
.rk-page h3,
.rk-page p { margin-top: 0; }

.rk-wrap {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 239, 223, .62), rgba(255, 253, 248, 0) 320px),
    #fffdf8;
}

.rk-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.rk-topline {
  background: var(--rk-green-950);
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.rk-topline .rk-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 18px;
}

.rk-topline strong { color: var(--rk-gold-300); font-weight: 800; }

.rk-status {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.rk-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.rk-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #35e287;
  box-shadow: 0 0 0 4px rgba(53, 226, 135, .15);
}

.rk-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid rgba(229, 231, 220, .85);
  backdrop-filter: blur(16px);
}

.rk-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.rk-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 172px;
}

.rk-brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(224, 178, 74, .46);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rk-green-700), var(--rk-green-950));
  color: var(--rk-gold-300);
  box-shadow: 0 10px 24px rgba(12, 68, 41, .2);
  font-weight: 900;
}

.rk-brand-text { display: grid; gap: 1px; }
.rk-brand-text b { font-size: 22px; line-height: 1; }
.rk-brand-text span {
  color: var(--rk-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.rk-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #364238;
  font-size: 14px;
  font-weight: 800;
}

.rk-menu a {
  position: relative;
  padding: 28px 0;
}

.rk-menu a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--rk-gold-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.rk-menu a:first-child::after,
.rk-menu a:hover::after { transform: scaleX(1); }

.rk-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.rk-page .rk-btn-outline {
  border-color: #d8decf;
  background: #fff;
  color: var(--rk-green-800);
}

.rk-page .rk-btn-primary {
  background: linear-gradient(180deg, #ffe49a, #e0a82f);
  box-shadow: 0 14px 26px rgba(200, 148, 45, .24);
  color: #1b1303;
}

.rk-hero {
  position: relative;
  min-height: 520px;
  margin: 28px auto 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  background: var(--rk-green-950);
  box-shadow: var(--rk-shadow);
}

.rk-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 18, 11, .95) 0%, rgba(4, 20, 12, .84) 38%, rgba(4, 20, 12, .18) 71%),
    url("/assets/rikbet-hero.png") center / cover no-repeat;
}

.rk-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 14% 18%, rgba(247, 215, 125, .2), transparent 26%),
    linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, .38));
}

.rk-hero-content {
  width: min(610px, 100%);
  padding: 70px 54px 48px;
  color: var(--rk-white);
}

.rk-eyebrow,
.rk-kicker {
  color: var(--rk-gold-600);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

.rk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rk-gold-300);
}

.rk-eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: var(--rk-gold-300);
}

.rk-hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(40px, 5vw, 74px);
  line-height: .95;
  font-weight: 900;
}

.rk-hero p {
  width: min(530px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.rk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.rk-hero-stats {
  display: grid;
  width: min(560px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rk-hero-stat {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(247, 215, 125, .22);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.rk-hero-stat b {
  display: block;
  margin-bottom: 8px;
  color: var(--rk-gold-300);
  font-size: 24px;
  line-height: 1;
}

.rk-hero-stat span {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.rk-trust {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -34px auto 74px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 220, .8);
  border-radius: 22px;
  background: var(--rk-white);
  box-shadow: 0 20px 48px rgba(9, 41, 25, .12);
}

.rk-trust-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--rk-line);
}

.rk-trust-item:last-child { border-right: 0; }

.rk-trust-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffeaa9, #dca33a);
  color: var(--rk-green-950);
  font-size: 18px;
  font-weight: 1000;
}

.rk-trust-item b {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.25;
}

.rk-trust-item span {
  color: var(--rk-muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.rk-section { padding: 0 0 74px; }

.rk-section-alt {
  padding: 76px 0;
  border-top: 1px solid #ece6d7;
  border-bottom: 1px solid #ece6d7;
  background: linear-gradient(180deg, #f6f2e9, #fffdf8);
}

.rk-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.rk-section-title { max-width: 700px; }
.rk-kicker { margin-bottom: 8px; }

.rk-section h2,
.rk-article h1,
.rk-article h2 {
  margin-bottom: 12px;
  color: var(--rk-green-950);
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.05;
  font-weight: 900;
}

.rk-section-title p {
  margin: 0;
  color: var(--rk-muted);
  font-size: 16px;
}

.rk-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 34px;
}

.rk-media-panel {
  min-height: 470px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--rk-green-950);
  box-shadow: var(--rk-shadow);
}

.rk-media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rk-panel,
.rk-feature-card,
.rk-game-card,
.rk-promo-card,
.rk-news-card,
.rk-faq-card,
.rk-step,
.rk-article-card,
.rk-article-aside {
  border: 1px solid var(--rk-line);
  background: var(--rk-white);
  box-shadow: 0 10px 28px rgba(21, 32, 22, .06);
}

.rk-panel {
  padding: 34px;
  border-radius: 24px;
}

.rk-panel h3 {
  margin-bottom: 16px;
  color: var(--rk-green-950);
  font-size: 30px;
  line-height: 1.18;
}

.rk-panel p {
  margin-bottom: 16px;
  color: #4d5b50;
}

.rk-checks {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
}

.rk-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  color: #36443a;
  font-weight: 700;
}

.rk-checks li::before {
  display: grid;
  place-items: center;
  width: 28px;
  flex: 0 0 28px;
  height: 28px;
  border-radius: 999px;
  content: "鉁?;
  background: #f4d77c;
  color: var(--rk-green-950);
  font-weight: 1000;
  line-height: 1;
}

.rk-checks li span {
  flex: 1 1 auto;
  min-width: 0;
}

.rk-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.rk-feature-card,
.rk-faq-card {
  padding: 24px;
  border-radius: 18px;
}

.rk-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: linear-gradient(180deg, #ffe9a3, #d89b2c);
  color: #201700;
  font-weight: 1000;
}

.rk-feature-card h3,
.rk-game-card h3,
.rk-promo-card h3,
.rk-news-card h3,
.rk-faq-card h3 {
  margin-bottom: 8px;
  color: var(--rk-green-950);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.rk-feature-card p,
.rk-game-card p,
.rk-promo-card p,
.rk-news-card p,
.rk-faq-card p {
  margin: 0;
  color: var(--rk-muted);
  font-size: 14px;
}

.rk-games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.rk-game-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  isolation: isolate;
  padding: 24px;
  border-radius: 18px;
  background: var(--rk-green-950);
  color: #fff;
}

.rk-game-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(4, 26, 16, .24), rgba(4, 26, 16, .94)),
    var(--rk-game-bg);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.rk-game-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: -1;
  height: 1px;
  content: "";
  background: rgba(247, 215, 125, .5);
}

.rk-game-card h3 {
  margin-top: 114px;
  color: #fff;
  font-size: 24px;
}

.rk-game-card p {
  min-height: 48px;
  color: rgba(255, 255, 255, .78);
}

.rk-game-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 11px;
  border: 1px solid rgba(247, 215, 125, .42);
  border-radius: 999px;
  background: rgba(3, 18, 11, .48);
  color: var(--rk-gold-300);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.rk-sports {
  --rk-game-bg: linear-gradient(135deg, rgba(23, 160, 93, .7), rgba(9, 35, 22, .4)), url("/assets/rikbet-realistic-content.png");
}
.rk-casino {
  --rk-game-bg: linear-gradient(135deg, rgba(199, 143, 40, .48), rgba(5, 29, 18, .5)), url("/assets/rikbet-hero.png");
}
.rk-cards {
  --rk-game-bg: linear-gradient(135deg, rgba(13, 61, 37, .68), rgba(9, 35, 22, .46)), url("/assets/rikbet-realistic-content.png");
}
.rk-lottery {
  --rk-game-bg: linear-gradient(135deg, rgba(206, 169, 71, .42), rgba(4, 26, 16, .66)), url("/assets/rikbet-hero.png");
}

.rk-promo-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: stretch;
  gap: 22px;
}

.rk-promo-banner {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  isolation: isolate;
  padding: 38px;
  border-radius: 24px;
  background: var(--rk-green-950);
  color: #fff;
  box-shadow: var(--rk-shadow);
}

.rk-promo-banner::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 26, 16, .93), rgba(4, 26, 16, .2)),
    url("/assets/rikbet-realistic-content.png") center / cover no-repeat;
}

.rk-promo-banner h2 {
  width: min(540px, 100%);
  color: #fff;
}

.rk-promo-banner p {
  width: min(520px, 100%);
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .78);
}

.rk-promo-list {
  display: grid;
  gap: 16px;
}

.rk-promo-card {
  padding: 22px;
  border-radius: 18px;
}

.rk-promo-value {
  margin-bottom: 10px;
  color: var(--rk-gold-600);
  font-size: 34px;
  font-weight: 1000;
  line-height: 1;
}

.rk-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  counter-reset: rk-step;
}

.rk-step {
  position: relative;
  min-height: 220px;
  padding: 24px 20px;
  border-radius: 18px;
}

.rk-step::before {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 44px;
  border-radius: 14px;
  counter-increment: rk-step;
  content: counter(rk-step);
  background: linear-gradient(180deg, #ffe9a3, #d89b2c);
  color: #17200b;
  font-size: 19px;
  font-weight: 1000;
}

.rk-step::after {
  position: absolute;
  top: 94px;
  left: 22px;
  width: calc(100% - 44px);
  height: 3px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(90deg, var(--rk-green-600), rgba(23, 160, 93, .12));
}

.rk-step h3 {
  margin-bottom: 8px;
  color: var(--rk-green-950);
  font-size: 17px;
  font-weight: 900;
}

.rk-step p {
  margin: 0;
  color: var(--rk-muted);
  font-size: 13px;
}

.rk-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.rk-news-card {
  overflow: hidden;
  border-radius: 18px;
}

.rk-news-thumb {
  height: 148px;
  padding: 18px;
  background: linear-gradient(135deg, #0d3d25, #061b11);
  color: rgba(255, 255, 255, .9);
}

.rk-news-thumb span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(247, 215, 125, .34);
  border-radius: 999px;
  background: rgba(247, 215, 125, .14);
  color: var(--rk-gold-300);
  font-size: 12px;
  font-weight: 900;
}

.rk-news-card:nth-child(2n) .rk-news-thumb { background: linear-gradient(135deg, #c8942d, #082418); }
.rk-news-card:nth-child(3n) .rk-news-thumb { background: linear-gradient(135deg, #0b5130, #14100a); }

.rk-news-body { padding: 22px; }

.rk-news-meta {
  margin-bottom: 10px;
  color: var(--rk-gold-600);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rk-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.rk-footer {
  padding: 54px 0 28px;
  background: var(--rk-green-950);
  color: rgba(255, 255, 255, .74);
}

.rk-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.rk-footer .rk-brand-mark {
  background: linear-gradient(135deg, var(--rk-gold-500), #755111);
  color: var(--rk-green-950);
}

.rk-footer h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
}

.rk-footer p,
.rk-footer a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.rk-copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  font-size: 13px;
}

.rk-article-hero {
  position: relative;
  margin: 28px auto 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--rk-green-950);
  color: #fff;
  box-shadow: var(--rk-shadow);
}

.rk-article-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 18, 11, .96), rgba(3, 18, 11, .65), rgba(3, 18, 11, .15)),
    url("/assets/rikbet-hero.png") center / cover no-repeat;
}

.rk-article-hero-inner {
  position: relative;
  width: min(760px, 100%);
  padding: 58px 48px;
}

.rk-article-hero h1 {
  margin: 12px 0 16px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  font-weight: 900;
}

.rk-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}

.rk-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  padding: 42px 0 74px;
}

.rk-article-card {
  padding: 34px;
  border-radius: 22px;
}

.rk-article-card .body {
  color: #303a31;
  font-size: 17px;
  line-height: 1.9;
}

.rk-article-card .body img {
  height: auto;
  margin: 18px auto;
  border-radius: 18px;
}

.rk-article-card .column,
.rk-article-card .edit,
.rk-article-card .page {
  color: var(--rk-muted);
  font-size: 14px;
}

.rk-article-aside {
  align-self: start;
  overflow: hidden;
  border-radius: 22px;
}

.rk-aside-media {
  height: 220px;
  background: url("/assets/rikbet-realistic-content.png") center / cover no-repeat;
}

.rk-aside-body { padding: 22px; }
.rk-aside-body h3 { color: var(--rk-green-950); font-size: 20px; font-weight: 900; }
.rk-aside-body p { color: var(--rk-muted); font-size: 14px; }

.rk-action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rk-action-list li {
  padding: 8px 13px;
  border-radius: 999px;
  background: #f4e7bf;
  color: var(--rk-green-950);
  font-weight: 800;
}

@media (max-width: 980px) {
  .rk-topline { display: none; }
  .rk-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }
  .rk-menu {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .rk-menu a { padding: 4px 0 10px; }
  .rk-menu a::after { bottom: 4px; }
  .rk-actions { width: 100%; }
  .rk-actions .rk-btn { flex: 1; }
  .rk-hero { min-height: auto; }
  .rk-hero-content { padding: 52px 26px 34px; }
  .rk-trust,
  .rk-intro-grid,
  .rk-promo-wrap,
  .rk-footer-grid,
  .rk-article-layout {
    grid-template-columns: 1fr;
  }
  .rk-trust { margin-top: 18px; }
  .rk-trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--rk-line);
  }
  .rk-trust-item:last-child { border-bottom: 0; }
  .rk-feature-row,
  .rk-games-grid,
  .rk-news-grid,
  .rk-faq-grid,
  .rk-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .rk-shell { width: min(100% - 28px, 1180px); }
  .rk-header { position: static; }
  .rk-brand { width: 100%; }
  .rk-menu {
    gap: 18px;
    font-size: 13px;
  }
  .rk-hero {
    margin-top: 16px;
    border-radius: 18px;
  }
  .rk-hero::before {
    background:
      linear-gradient(180deg, rgba(3, 18, 11, .95), rgba(3, 18, 11, .76)),
      url("/assets/rikbet-hero.png") center / cover no-repeat;
  }
  .rk-hero h1 { font-size: 43px; }
  .rk-section h2,
  .rk-article h1,
  .rk-article h2 { font-size: 31px; }
  .rk-hero p { font-size: 16px; }
  .rk-hero-stats,
  .rk-feature-row,
  .rk-games-grid,
  .rk-steps,
  .rk-news-grid,
  .rk-faq-grid { grid-template-columns: 1fr; }
  .rk-section { padding-bottom: 54px; }
  .rk-section-alt { padding: 54px 0; }
  .rk-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .rk-media-panel { min-height: 330px; }
  .rk-panel,
  .rk-promo-banner,
  .rk-article-card,
  .rk-article-hero-inner { padding: 24px; }
  .rk-game-card h3 { margin-top: 96px; }
  .rk-copyright { flex-direction: column; }
}

/* layout repair: current generated HTML compatibility */
.rk-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.rk-logo,
.rk-brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(224, 178, 74, .46);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rk-green-700), var(--rk-green-950));
  color: var(--rk-gold-300);
  box-shadow: 0 10px 24px rgba(12, 68, 41, .2);
  font-weight: 1000;
  line-height: 1;
}

.rk-brand > span:last-child {
  display: grid;
  gap: 2px;
}

.rk-brand strong {
  display: block;
  color: var(--rk-green-950);
  font-size: 22px;
  line-height: 1;
  font-weight: 1000;
}

.rk-brand small {
  display: block;
  color: var(--rk-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.rk-footer .rk-logo,
.rk-footer .rk-brand-mark {
  background: linear-gradient(135deg, var(--rk-gold-500), #755111);
  color: var(--rk-green-950);
}

.rk-footer .rk-brand strong { color: #fff; }
.rk-footer .rk-brand small { color: rgba(255, 255, 255, .62); }

.rk-header .rk-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 24px;
  color: #364238;
  font-size: 14px;
  font-weight: 900;
  overflow-x: auto;
  scrollbar-width: none;
}

.rk-header .rk-nav::-webkit-scrollbar { display: none; }

.rk-header .rk-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  white-space: nowrap;
}

.rk-header .rk-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--rk-gold-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.rk-header .rk-nav a:first-child::after,
.rk-header .rk-nav a:hover::after {
  transform: scaleX(1);
}

.rk-hero {
  width: min(1180px, calc(100% - 40px));
}

.rk-hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(320px, .82fr);
  align-items: center;
  gap: 30px;
}

.rk-hero-copy,
.rk-hero-content {
  width: min(610px, 100%);
  padding: 70px 0 54px;
  color: var(--rk-white);
}

.rk-hero-copy h1,
.rk-hero-content h1 {
  margin: 18px 0 20px;
  font-size: clamp(40px, 5vw, 74px);
  line-height: .95;
  font-weight: 900;
}

.rk-hero-copy p,
.rk-hero-content p {
  width: min(530px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.rk-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.rk-hero-visual img {
  width: min(100%, 500px);
  max-height: 430px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}

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

.rk-news-wrap .rk-news-grid:empty {
  display: none;
}

.rk-news-card {
  display: block;
  min-height: 190px;
  padding: 22px;
}

.rk-news-card > .rk-news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 0 11px;
  border: 1px solid rgba(247, 215, 125, .34);
  border-radius: 999px;
  background: rgba(247, 215, 125, .16);
  color: var(--rk-gold-600);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.rk-news-card > h3 a {
  color: inherit;
}

.rk-article-side {
  align-self: start;
  display: grid;
  gap: 18px;
}

.rk-side-card {
  overflow: hidden;
  border: 1px solid var(--rk-line);
  border-radius: 22px;
  background: var(--rk-white);
  box-shadow: 0 10px 28px rgba(21, 32, 22, .06);
}

.rk-side-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rk-side-card > div {
  padding: 22px;
}

.rk-side-card h3 {
  color: var(--rk-green-950);
  font-size: 20px;
  font-weight: 900;
}

.rk-side-card p,
.rk-side-card li {
  color: var(--rk-muted);
  font-size: 14px;
}

.rk-side-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.rk-side-card a {
  color: var(--rk-green-800);
  font-weight: 800;
}

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

  .rk-header .rk-nav {
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .rk-header .rk-nav a {
    min-height: 34px;
  }

  .rk-header .rk-nav a::after {
    bottom: 0;
  }

  .rk-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .rk-hero-copy,
  .rk-hero-content {
    padding: 52px 0 0;
  }

  .rk-hero-visual {
    min-height: auto;
    padding-bottom: 34px;
  }

  .rk-game-grid,
  .rk-games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .rk-hero {
    width: min(100% - 28px, 1180px);
  }

  .rk-hero-copy h1,
  .rk-hero-content h1 {
    font-size: 43px;
  }

  .rk-hero-copy p,
  .rk-hero-content p {
    font-size: 16px;
  }

  .rk-game-grid,
  .rk-games-grid {
    grid-template-columns: 1fr;
  }

  .rk-hero-visual img {
    width: 100%;
    max-height: none;
  }
}

