:root {
  color-scheme: dark;
  --ink: #f7f2e8;
  --muted: #b7c0bd;
  --bg: #111614;
  --panel: #17201d;
  --line: rgba(247, 242, 232, 0.16);
  --teal: #38c7b4;
  --amber: #f0b64f;
  --gold: #f7d94d;
  --gold-soft: #fff6ba;
  --gold-deep: #d79510;
  --red: #e26363;
  --green: #8fd67d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(247, 242, 232, 0.12);
  background: rgba(17, 22, 20, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(56, 199, 180, 0.48);
  border-radius: 8px;
  color: var(--bg);
  background: var(--teal);
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: 120px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(247, 242, 232, 0.78);
  font-size: 14px;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: 8px;
  background: rgba(17, 22, 20, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-submenu a {
  padding: 9px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-submenu a:hover {
  background: rgba(56, 199, 180, 0.1);
}

.header-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(240, 182, 79, 0.44);
  border-radius: 999px;
  color: #ffe2a4;
  background: rgba(240, 182, 79, 0.11);
  font-size: 13px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid rgba(247, 242, 232, 0.09);
  background:
    radial-gradient(circle at 84% 42%, rgba(56, 199, 180, 0.14), transparent 30%),
    linear-gradient(90deg, #070a09 0%, #090f0c 55%, #060807 100%);
}

.hero-slider {
  position: relative;
  min-height: 720px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 720px;
  padding: 118px clamp(18px, 5vw, 64px) 64px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slide-bg,
.hero-slide-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide-bg {
  background:
    radial-gradient(circle at 82% 46%, rgba(240, 182, 79, 0.12), transparent 28%),
    radial-gradient(circle at 58% 28%, rgba(56, 199, 180, 0.1), transparent 30%);
  opacity: 0.9;
}

.hero-slide-overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 9, 1) 0%, rgba(7, 10, 9, 0.98) 44%, rgba(7, 10, 9, 0.58) 70%, rgba(7, 10, 9, 0.96) 100%),
    linear-gradient(0deg, rgba(7, 10, 9, 0.92), transparent 46%),
    linear-gradient(180deg, rgba(7, 10, 9, 0.92), transparent 32%);
}

.hero-slide-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.86fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}

.hero-slide-copy {
  max-width: 560px;
}

.hero-slide-title {
  margin: 0;
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-slide-image {
  position: relative;
  display: block;
  justify-self: end;
  width: min(875px, 100%);
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 6px;
  background: #070a09;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.hero-slide-image::before,
.hero-slide-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-slide-image::before {
  background:
    linear-gradient(90deg, rgba(7, 10, 9, 0.98) 0%, rgba(7, 10, 9, 0.72) 14%, transparent 38%),
    linear-gradient(270deg, rgba(7, 10, 9, 0.72), transparent 28%),
    linear-gradient(0deg, rgba(7, 10, 9, 0.74), transparent 24%),
    linear-gradient(180deg, rgba(7, 10, 9, 0.66), transparent 22%);
}

.hero-slide-image::after {
  box-shadow: inset 0 0 54px 58px rgba(7, 10, 9, 1);
}

.hero-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-dots {
  position: absolute;
  left: clamp(20px, 6vw, 72px);
  bottom: 30px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.3);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--teal);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy,
.home-intro {
  max-width: 1200px;
  margin: 18px 0 0;
  color: rgba(247, 242, 232, 0.82);
  font-size: clamp(14px, 1.45vw, 17px);
  font-style: italic;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  color: #08100e;
  background: var(--teal);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(247, 242, 232, 0.08);
}

.button.ghost {
  color: var(--ink);
  border-color: rgba(247, 242, 232, 0.32);
  background: rgba(17, 22, 20, 0.42);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-slide-copy .button {
  margin-top: 18px;
}

.section {
  padding: 84px clamp(20px, 6vw, 72px);
}

.band {
  background: #141c19;
  border-block: 1px solid rgba(247, 242, 232, 0.08);
}

.content-hero {
  padding: 150px clamp(20px, 6vw, 72px) 72px;
  border-bottom: 1px solid rgba(247, 242, 232, 0.08);
  background:
    linear-gradient(135deg, rgba(56, 199, 180, 0.16), transparent 42%),
    #101614;
}

.content-hero h1 {
  max-width: 1200px;
  font-size: clamp(40px, 3vw, 84px);
  line-height: 0.98;
}

.content-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.content-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.content-byline span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(247, 242, 232, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(247, 242, 232, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.content-byline strong {
  margin-left: 4px;
  color: var(--ink);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 22px;
  color: rgba(247, 242, 232, 0.58);
  font-size: 15px;
  font-weight: 800;
}

.breadcrumb a {
  color: #ffe2a4;
}

.breadcrumb a:hover {
  color: var(--teal);
}

.section-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.compact {
  max-width: 460px;
  margin: 0;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 2vw, 58px);
  line-height: 2;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.cluster-card p,
.timeline p,
.site-footer p {
  color: var(--muted);
}

.tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.tab {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(247, 242, 232, 0.04);
  cursor: pointer;
}

.tab.active {
  color: #09110f;
  border-color: var(--teal);
  background: var(--teal);
  font-weight: 800;
}

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

.cluster-card {
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.cluster-card.is-hidden {
  display: none;
}

.cluster-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #101614;
  background: var(--amber);
  font-weight: 900;
}

.cluster-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding-left: 18px;
  color: rgba(247, 242, 232, 0.78);
  font-size: 14px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
}

.popular-games-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(240, 182, 79, 0.14), transparent 24%),
    radial-gradient(circle at 88% 76%, rgba(56, 199, 180, 0.12), transparent 28%),
    #0d1210;
}

.popular-games-heading {
  margin-bottom: 24px;
}

.popular-games-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.popular-games-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 160px;
  gap: 18px;
}

.popular-game-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(247, 242, 232, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(56, 199, 180, 0.16), rgba(240, 182, 79, 0.18)),
    #111614;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.popular-game-card:nth-child(1),
.popular-game-card:nth-child(9) {
  grid-column: span 2;
}

.popular-game-card:hover {
  border-color: rgba(240, 182, 79, 0.66);
  transform: translateY(-2px);
}

.popular-game-media,
.popular-game-media img {
  width: 100%;
  height: 100%;
}

.popular-game-media img {
  display: block;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.popular-game-card:hover .popular-game-media img {
  transform: scale(1.04);
}

.popular-game-media span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(247, 242, 232, 0.5);
  font-weight: 900;
  text-transform: uppercase;
}

.partner-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(240, 182, 79, 0.14), transparent 28%),
    #101614;
}

.partner-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.partner-heading h2 {
  max-width: none;
}

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

.featured-partner-card {
  position: relative;
  display: block;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.08);
  border-radius: 18px;
  background: rgba(15, 22, 19, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.featured-partner-card:hover {
  border-color: rgba(240, 182, 79, 0.66);
  transform: translateY(-2px);
}

.featured-partner-media,
.featured-partner-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
}

.featured-partner-media img {
  display: block;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.22s ease;
}

.featured-partner-card:hover .featured-partner-media img {
  transform: scale(1.035);
}

.featured-partner-media span {
  display: grid;
  place-items: center;
  min-height: 190px;
  color: rgba(247, 242, 232, 0.52);
  font-weight: 900;
  text-transform: uppercase;
}

.featured-partner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 9, 0.02), rgba(7, 10, 9, 0.14)),
    linear-gradient(90deg, rgba(7, 10, 9, 0.12), transparent 52%);
  pointer-events: none;
}

.featured-partner-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(7, 10, 9, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.featured-partner-badge i {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(226, 99, 99, 0.74);
}

.featured-partner-badge i::before,
.featured-partner-badge i::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(226, 99, 99, 0.58);
  border-radius: inherit;
  animation: live-pulse 1.65s ease-out infinite;
}

.featured-partner-badge i::after {
  inset: -13px;
  border-color: rgba(226, 99, 99, 0.32);
  animation-delay: 0.55s;
}

@keyframes live-pulse {
  0% {
    opacity: 0.86;
    transform: scale(0.72);
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.partner-logo-marquee {
  overflow: hidden;
  margin-top: 24px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: partner-marquee 28s linear infinite;
}

.partner-logo-marquee:hover .partner-logo-track {
  animation-play-state: paused;
}

.partner-logo-item {
  display: grid;
  place-items: center;
  min-width: 150px;
  height: 58px;
  padding: 10px 18px;
  border: 1px solid rgba(247, 242, 232, 0.08);
  border-radius: 10px;
  background: rgba(15, 22, 19, 0.82);
}

.partner-logo-item:hover {
  border-color: rgba(240, 182, 79, 0.58);
  transform: translateY(-1px);
}

.partner-logo-item img {
  max-width: 128px;
  max-height: 38px;
  object-fit: contain;
}

.partner-logo-item span {
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.play-notice-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 199, 180, 0.1), transparent 30%),
    #111614;
}

.play-notice-heading {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.play-notice-heading h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 950;
  line-height: 0.98;
}

.play-notice-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px auto 0;
  color: rgba(247, 242, 232, 0.74);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.7;
}

.play-notice-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 70px);
}

.play-notice-steps::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240, 182, 79, 0.28), rgba(56, 199, 180, 0.5), rgba(240, 182, 79, 0.28), transparent);
}

.play-notice-steps article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.play-notice-steps span {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  margin-bottom: 34px;
  border-radius: 999px;
  color: #08100e;
  background: linear-gradient(135deg, var(--amber), var(--teal));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  font-size: 30px;
  font-weight: 950;
}

.play-notice-steps h3 {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 950;
}

.play-notice-steps p {
  max-width: 420px;
  margin: 16px 0 0;
  color: rgba(247, 242, 232, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

@keyframes partner-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.review-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.review-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.review-table th,
.review-table td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(247, 242, 232, 0.1);
  text-align: left;
}

.review-table th {
  color: var(--amber);
  font-size: 13px;
  text-transform: uppercase;
}

.review-table tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.status.ok {
  color: #10210d;
  background: var(--green);
}

.status.warn {
  color: #2b1c02;
  background: var(--amber);
}

.status.neutral {
  color: var(--ink);
  background: rgba(247, 242, 232, 0.14);
}

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

.timeline article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101614;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #08100e;
  background: var(--teal);
  font-weight: 900;
}

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

.article-card {
  display: block;
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.article-card:hover {
  border-color: rgba(56, 199, 180, 0.5);
}

.article-card > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 20px;
  padding: 0 10px;
  border-radius: 999px;
  color: #08100e;
  background: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.article-card p,
.article-card small {
  color: var(--muted);
}

.article-card small {
  display: block;
  margin-top: 22px;
}

.category-archive {
  background: #111614;
}

.archive-panel {
  padding: clamp(18px, 4vw, 32px);
  border: 1px solid rgba(56, 199, 180, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(56, 199, 180, 0.12), transparent 42%),
    rgba(247, 242, 232, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.archive-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(247, 242, 232, 0.1);
}

.archive-head h2 {
  font-size: clamp(24px, 3.2vw, 38px);
}

.archive-head span {
  color: var(--amber);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

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

.archive-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.80fr) minmax(0, 1fr);
  gap: 20px;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.08);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(15, 22, 19, 0.58);
}

.archive-item:hover {
  border-color: rgba(240, 182, 79, 0.58);
  transform: translateY(-1px);
}

.archive-thumb {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(56, 199, 180, 0.18), rgba(240, 182, 79, 0.18)),
    #111614;
}

.archive-thumb img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.archive-content {
  display: grid;
  align-content: center;
  padding: 22px 22px 22px 0;
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: rgba(247, 242, 232, 0.58);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-meta span {
  color: #d97904;
}

.archive-content h3 {
  margin-top: 10px;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.18;
}

.archive-content p {
  margin: 14px 0 0;
  color: rgba(247, 242, 232, 0.74);
  font-size: 16px;
  line-height: 1.65;
}

.archive-content strong {
  display: inline-flex;
  margin-top: 14px;
  color: #d97904;
  font-size: 16px;
  font-weight: 900;
}

.archive-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 242, 232, 0.1);
}

.archive-pagination a,
.archive-pagination span,
.archive-pagination strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 78px;
  padding: 0 16px;
  border: 1px solid rgba(247, 242, 232, 0.08);
  border-radius: 999px;
  background: rgba(15, 22, 19, 0.58);
  font-size: 14px;
  font-weight: 900;
}

.archive-pagination a {
  color: var(--ink);
}

.archive-pagination a:hover {
  color: #08100e;
  border-color: var(--amber);
  background: var(--amber);
}

.archive-pagination span {
  color: rgba(247, 242, 232, 0.42);
}

.archive-pagination strong {
  min-width: 92px;
  color: var(--teal);
}

.archive-pagination i {
  color: rgba(247, 242, 232, 0.34);
  font-style: normal;
  font-weight: 900;
}

.sitemap-section {
  background: #111614;
}

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

.sitemap-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 210px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(240, 182, 79, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(56, 199, 180, 0.1), transparent 42%),
    rgba(247, 242, 232, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.sitemap-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 30px);
}

.sitemap-card div {
  display: grid;
  gap: 12px;
}

.sitemap-card a,
.sitemap-card span {
  color: rgba(247, 242, 232, 0.78);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.sitemap-card a:hover {
  color: var(--amber);
}

.content-body {
  width: min(1200px, 100%);
}

.home-content h1 {
  max-width: 1200px;
  font-size: clamp(40px, 2vw, 76px);
  line-height: 1;
}

.home-content .content-featured {
  margin-top: 28px;
}

.content-featured {
  display: block;
  width: 100%;
  max-height: 720px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: rgba(247, 242, 232, 0.06);
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.content-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(247, 242, 232, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.content-toc {
  margin: 28px 0;
  padding: 18px;
  border: 1px solid rgba(56, 199, 180, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(56, 199, 180, 0.12), transparent 42%),
    rgba(247, 242, 232, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.content-toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(247, 242, 232, 0.1);
}

.content-toc-head span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.content-toc-head strong {
  color: var(--teal);
  font-size: 13px;
  white-space: nowrap;
}

.content-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.content-toc li {
  counter-increment: toc;
}

.content-toc a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(247, 242, 232, 0.08);
  border-radius: 8px;
  color: rgba(247, 242, 232, 0.86);
  background: rgba(15, 22, 19, 0.58);
}

.content-toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.content-toc a:hover {
  color: var(--ink);
  border-color: rgba(56, 199, 180, 0.38);
  background: rgba(56, 199, 180, 0.09);
}

.content-toc .toc-level-3 a {
  margin-left: 22px;
}

.content-toc .toc-level-4 a {
  margin-left: 44px;
}

.contact-form-panel {
  display: grid;
  gap: 16px;
  margin: 32px 0;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(56, 199, 180, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(56, 199, 180, 0.12), transparent 42%),
    rgba(247, 242, 232, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form-panel label {
  display: grid;
  gap: 8px;
}

.contact-form-panel label span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(15, 22, 19, 0.82);
  outline: none;
}

.contact-form-panel input {
  min-height: 46px;
  padding: 0 14px;
}

.contact-form-panel textarea {
  resize: vertical;
  padding: 14px;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  border-color: rgba(56, 199, 180, 0.78);
  box-shadow: 0 0 0 3px rgba(56, 199, 180, 0.1);
}

.contact-form-note {
  margin: 0;
  color: rgba(247, 242, 232, 0.66);
  font-size: 14px;
  font-weight: 800;
}

.contact-form-notice {
  display: grid;
  gap: 6px;
  padding: 13px 14px;
  border: 1px solid rgba(143, 214, 125, 0.35);
  border-radius: 8px;
  color: #dff7d9;
  background: rgba(143, 214, 125, 0.1);
}

.contact-form-notice.error {
  border-color: rgba(226, 99, 99, 0.44);
  color: #ffd0d0;
  background: rgba(226, 99, 99, 0.11);
}

.contact-form-notice p {
  margin: 0;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.author-box {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  width: min(1200px, 100%);
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(56, 199, 180, 0.24);
  border-radius: 28px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(56, 199, 180, 0.12), transparent 42%),
    rgba(247, 242, 232, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  margin-top: 2em;
}

.author-box img,
.author-avatar {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  object-fit: cover;
  background: rgba(15, 22, 19, 0.58);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.author-avatar {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), #d97904);
  font-size: clamp(72px, 10vw, 132px);
  font-weight: 900;
}

.author-box h2,
.author-box p {
  margin: 0;
}

.author-box h2 {
  color: transparent;
  background: linear-gradient(90deg, #f4c84f, #e98c10, #74400a);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 950;
  line-height: 1;
}

.author-box p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(247, 242, 232, 0.78);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.75;
}

.author-box .eyebrow {
  color: #d97904;
  font-size: 16px;
  text-transform: none;
}

.author-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.author-stats div {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(247, 242, 232, 0.08);
  border-radius: 12px;
  background: rgba(15, 22, 19, 0.58);
  text-align: center;
}

.author-stats strong,
.author-stats span {
  display: block;
}

.author-stats strong {
  color: #d97904;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.author-stats span {
  margin-top: 8px;
  color: rgba(247, 242, 232, 0.78);
  font-size: 15px;
  font-weight: 900;
}

.author-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.author-box .button {
  min-height: 48px;
  color: #ffffff;
  border-color: #d97904;
  background: linear-gradient(135deg, #f0b64f, #d97904);
  box-shadow: 0 12px 28px rgba(217, 121, 4, 0.22);
}

.author-box .button.outline {
  color: #d97904;
  border-color: rgba(240, 182, 79, 0.58);
  background: rgba(15, 22, 19, 0.58);
  box-shadow: none;
}

.latest-section {
  position: relative;
  padding-block: 74px;
  background: #111614;
}

.latest-section .section-inner {
  width: min(1200px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(56, 199, 180, 0.24);
  border-radius: 28px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(56, 199, 180, 0.12), transparent 42%),
    rgba(247, 242, 232, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.latest-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.latest-heading h2 {
  color: var(--ink);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.latest-heading h2::after {
  content: " SEO";
  color: transparent;
  background: linear-gradient(90deg, #f4c84f, #e98c10, #74400a);
  background-clip: text;
  -webkit-background-clip: text;
}

.latest-heading p {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(247, 242, 232, 0.78);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}

.latest-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.latest-card {
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border-color: rgba(247, 242, 232, 0.08);
  color: var(--ink);
  background: rgba(15, 22, 19, 0.58);
  box-shadow: none;
}

.latest-card:hover {
  border-color: rgba(240, 182, 79, 0.65);
  transform: translateY(-2px);
}

.latest-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(56, 199, 180, 0.18), rgba(240, 182, 79, 0.18)),
    #111614;
}

.latest-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.latest-card:hover .latest-card-media img {
  transform: scale(1.035);
}

.latest-card-media span {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f0b64f, #d97904);
  box-shadow: 0 12px 28px rgba(217, 121, 4, 0.32);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.latest-card-body {
  padding: 22px;
}

.latest-card h3 {
  color: var(--ink);
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.16;
}

.latest-card p {
  margin: 16px 0 0;
  color: rgba(247, 242, 232, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.latest-card strong {
  display: inline-flex;
  margin-top: 22px;
  color: #d97904;
  font-size: 17px;
  font-weight: 900;
}

.latest-more {
  margin: 32px auto 0;
  color: var(--ink);
  border-color: rgba(247, 242, 232, 0.08);
  background: rgba(15, 22, 19, 0.58);
}

.rich-content {
  color: rgba(247, 242, 232, 0.9);
  font-size: 18px;
}

.content-body > h1,
.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
  color: transparent;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 48%, var(--gold-deep) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 2px 18px rgba(240, 182, 79, 0.22);
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
  scroll-margin-top: 96px;
}

.rich-content h5,
.rich-content h6 {
  scroll-margin-top: 96px;
}

.rich-content a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(247, 217, 77, 0.45);
  text-underline-offset: 4px;
  transition: color 0.16s ease, text-decoration-color 0.16s ease;
}

.rich-content a:hover,
.rich-content a:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.78);
}

.rich-content :first-child {
  margin-top: 0;
}

.rich-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.rich-content img.align-left {
  float: left;
  width: min(360px, 48%);
  margin: 6px 22px 16px 0;
}

.rich-content img.align-center {
  display: block;
  margin: 22px auto;
}

.rich-content img.align-right {
  float: right;
  width: min(360px, 48%);
  margin: 6px 0 16px 22px;
}

.rich-content img.align-full {
  display: block;
  width: 100%;
  margin: 22px 0;
}

.rich-content figure.image {
  margin: 24px 0;
}

.rich-content figure.image img {
  display: block;
}

.rich-content figure.image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.empty-public {
  min-height: 160px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(247, 242, 232, 0.18);
  border-radius: 8px;
  color: var(--muted);
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist label {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 14px;
  min-height: 64px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.checklist input {
  width: 20px;
  height: 20px;
  accent-color: var(--teal);
}

.site-footer {
  padding: 46px clamp(20px, 6vw, 72px) 28px;
  border-top: 1px solid rgba(247, 242, 232, 0.1);
  color: var(--muted);
  background: #0d1210;
}

.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.footer-brand-box {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(56, 199, 180, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(56, 199, 180, 0.12), transparent 42%),
    rgba(247, 242, 232, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.footer-brand img,
.footer-brand span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(247, 242, 232, 0.06);
}

.footer-brand span {
  color: #08100e;
  background: var(--teal);
  font-weight: 900;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.footer-brand-box p {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 242, 232, 0.72);
}

.footer-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 50px);
  padding: 34px 0;
  border-bottom: 1px solid rgba(247, 242, 232, 0.1);
}

.footer-menu-column h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(18px, 1vw, 25px);
  font-weight: 950;
  text-transform: uppercase;
}

.footer-menu-column h3 a {
  color: inherit;
}

.footer-menu-column div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  text-transform: capitalize;
}

.footer-menu-column a {
  color: rgba(247, 242, 232, 0.72);
  font-size: 16px;
  font-weight: 800;
  text-transform: capitalize;
}

.footer-menu-column a:hover {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(247, 242, 232, 0.7);
  font-weight: 800;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.footer-legal-links > a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: 999px;
  color: rgba(247, 242, 232, 0.78);
  background: rgba(247, 242, 232, 0.05);
  font-size: 13px;
  font-weight: 900;
}

.footer-legal-links > a:hover {
  color: var(--amber);
  border-color: rgba(240, 182, 79, 0.45);
}

.dmca-badge {
  display: inline-grid;
  grid-template-columns: 22px auto;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  background: #64c832;
  box-shadow: 0 10px 24px rgba(100, 200, 50, 0.18);
}

.dmca-badge::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  box-shadow: inset 0 0 0 3px #64c832;
}

.dmca-badge b,
.dmca-badge small {
  display: block;
  line-height: 1;
}

.dmca-badge b {
  font-size: 11px;
  font-weight: 950;
}

.dmca-badge small {
  margin-top: 2px;
  font-size: 8px;
  font-weight: 900;
}

.dmca-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.dmca-link img {
  display: block;
  width: auto;
  max-width: 132px;
  max-height: 38px;
  object-fit: contain;
}

#gotop {
  position: fixed;
  right: 2em;
  bottom: 2em;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(56, 199, 180, 0.45);
  border-radius: 999px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(56, 199, 180, 0.18), transparent 42%),
    rgba(247, 242, 232, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  isolation: isolate;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

#gotop::before,
#gotop::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border: 1px solid rgba(56, 199, 180, 0.58);
  border-radius: inherit;
  animation: gotop-pulse 2.4s ease-out infinite;
}

#gotop::after {
  border-color: rgba(240, 182, 79, 0.42);
  animation-delay: 1.2s;
}

#gotop:hover {
  color: #07100e;
  background: var(--teal);
  transform: translateY(-2px);
}

#gotop span {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}

@keyframes gotop-pulse {
  0% {
    opacity: 0.72;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

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

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 640px;
  }

  .hero-slide {
    padding-top: 106px;
  }

  .hero-slide-inner {
    grid-template-columns: 1fr;
  }

  .hero-slide-image {
    justify-self: start;
    width: min(520px, 86vw);
    order: -1;
  }

  .latest-grid {
    grid-template-columns: 1fr;
  }

  .popular-games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .popular-game-card:nth-child(1),
  .popular-game-card:nth-child(9) {
    grid-column: span 1;
  }

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

  .play-notice-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .play-notice-steps::before {
    top: 0;
    bottom: 0;
    left: 55px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(240, 182, 79, 0.28), rgba(56, 199, 180, 0.5), rgba(240, 182, 79, 0.28), transparent);
  }

  .play-notice-steps article {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
    justify-items: start;
    text-align: left;
  }

  .play-notice-steps span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .play-notice-steps p {
    max-width: none;
  }

  .archive-item {
    grid-template-columns: 1fr;
  }

  .archive-content {
    padding: 0 18px 20px;
  }

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

  .cluster-grid,
  .article-grid,
  .timeline,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .section-heading.compact {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .rich-content img.align-left,
  .rich-content img.align-right {
    float: none;
    display: block;
    width: 100%;
    margin: 18px 0;
  }
  h1, h2, h3, h4, h5, h6 {
    line-height: 1;
  }
  .home-content h1 {
    font-size: clamp(30px, 2vw, 76px);
  }
  h2 {
      font-size: clamp(25px, 2vw, 76px);
  }
  h3, h4, h5, h6 {
      font-size: clamp(20px, 2vw, 76px);
  }
  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand {
    min-width: auto;
  }

  .hero-copy{
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;

    max-height: calc(1.6em * 2);
  }

  .brand small,
  .header-pill {
    display: none;
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 610px;
  }

  .hero-slide {
    padding: 96px 18px 48px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

  .hero-slide-title {
    font-size: 20px;
  }

  .hero-slide-image {
    width: min(420px, 92vw);
  }

  .latest-section {
    padding-block: 52px;
  }

  .popular-games-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 170px;
    gap: 14px;
  }

  .partner-heading {
    align-items: start;
    flex-direction: column;
  }

  .featured-partner-grid {
    grid-template-columns: 1fr;
  }

  .featured-partner-card,
  .featured-partner-media,
  .featured-partner-media img,
  .featured-partner-media span {
    min-height: 180px;
  }

  .partner-logo-item {
    min-width: 132px;
    height: 54px;
  }

  .play-notice-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .play-notice-heading h2,
  .play-notice-heading p:not(.eyebrow) {
    margin-inline: 0;
  }

  .play-notice-steps::before {
    display: none;
  }

  .play-notice-steps article {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px;
    border: 1px solid rgba(56, 199, 180, 0.24);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(56, 199, 180, 0.12), transparent 42%),
      rgba(247, 242, 232, 0.045);
    text-align: center;
  }

  .play-notice-steps span {
    grid-row: auto;
    width: 86px;
    height: 86px;
    border-width: 10px;
    font-size: 24px;
  }

  .latest-section .section-inner {
    padding: 24px 14px;
    border-radius: 18px;
  }

  .latest-card-body {
    padding: 18px;
  }

  .content-toc {
    padding: 14px;
  }

  .content-toc a {
    grid-template-columns: 26px minmax(0, 1fr);
    padding: 8px;
  }

  .content-toc .toc-level-3 a,
  .content-toc .toc-level-4 a {
    margin-left: 0;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .author-box {
    grid-template-columns: 1fr;
    padding: 22px 14px;
    border-radius: 18px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .author-box img,
  .author-avatar {
    width: 100%;
    border-radius: 14px;
  }

  .author-stats {
    grid-template-columns: 1fr;
  }

  .author-actions {
    display: grid;
  }

  .hero-dots {
    left: 18px;
    bottom: 20px;
  }

  .section {
    padding: 62px 18px;
  }

  .cluster-card,
  .timeline article {
    min-height: auto;
  }

  .site-footer {
    padding: 38px 18px 24px;
  }

  .footer-menu-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-menu-column div {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}
