:root {
  --ink: #f3f7f7;
  --muted: #96a6ae;
  --muted-2: #667983;
  --bg: #071018;
  --bg-deep: #050b11;
  --panel: #0c1720;
  --panel-2: #101e29;
  --line: rgba(159, 204, 213, .14);
  --line-bright: rgba(86, 231, 209, .32);
  --cyan: #52e8d0;
  --cyan-dark: #1cbda7;
  --blue: #2cb7f3;
  --amber: #ffc66b;
  --danger: #ff7285;
  --radius: 18px;
  --radius-sm: 11px;
  --shadow: 0 28px 70px rgba(0, 0, 0, .35);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

::selection { color: #04100f; background: var(--cyan); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; }
h1, h2 { letter-spacing: -.045em; }
h2 { margin-bottom: 18px; font-size: clamp(2.15rem, 4vw, 3.75rem); }
h3 { letter-spacing: -.025em; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -80px;
  padding: 10px 16px;
  border-radius: 8px;
  color: #06100f;
  background: var(--cyan);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(82,232,208,.1), 0 0 20px var(--cyan);
  animation: pulse 2.2s infinite;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 78px;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(5,11,17,.9), rgba(5,11,17,.3));
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5,11,17,.92);
  box-shadow: 0 12px 40px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { filter: drop-shadow(0 0 15px rgba(82,232,208,.18)); }
.brand-copy { display: grid; color: #dce6e7; font-size: 1.03rem; font-weight: 500; line-height: 1; letter-spacing: .1em; }
.brand-copy strong { color: var(--cyan); font-weight: 900; }
.brand-copy small { margin-top: 7px; color: #71838d; font-size: .49rem; font-weight: 800; letter-spacing: .16em; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav > a:not(.nav-cta) { position: relative; color: #b3c0c4; font-size: .85rem; font-weight: 700; }
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav > a:hover { color: var(--ink); }
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--line-bright);
  border-radius: 9px;
  color: var(--cyan);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .04em;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover { color: #04100f; background: var(--cyan); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 770px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-deep);
}
.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 230px;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
  pointer-events: none;
}
.hero-art {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(4,10,15,.97) 2%, rgba(4,10,15,.79) 35%, rgba(4,10,15,.17) 66%, rgba(4,10,15,.15)), url("../images/koru-forge-hero.webp");
  background-position: center;
  background-size: cover;
  animation: hero-in 1.15s cubic-bezier(.2,.8,.2,1) both;
}
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(106,243,220,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(106,243,220,.16) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, #000, transparent 66%);
}
.hero-content { padding-top: 95px; }
.hero-content > * { max-width: 680px; animation: rise-in .7s ease both; }
.hero-content > :nth-child(2) { animation-delay: .08s; }
.hero-content > :nth-child(3) { animation-delay: .16s; }
.hero-content > :nth-child(4) { animation-delay: .24s; }
.hero-content > :nth-child(5) { animation-delay: .32s; }
.hero h1 { margin-bottom: 26px; font-size: clamp(4rem, 7.5vw, 6.85rem); font-weight: 900; line-height: .9; letter-spacing: -.07em; text-transform: uppercase; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(102,243,221,.78); text-shadow: 0 0 36px rgba(82,232,208,.08); }
.hero-lead { max-width: 620px; margin-bottom: 34px; color: #abbac0; font-size: clamp(1.02rem, 1.5vw, 1.17rem); line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; align-items: center; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: .83rem;
  font-weight: 850;
  letter-spacing: .03em;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #04110f; background: linear-gradient(135deg, #69f5dd, #36d6c1); box-shadow: 0 12px 38px rgba(52,215,193,.2); }
.button-primary:hover { box-shadow: 0 15px 42px rgba(52,215,193,.32); }
.button-ghost { border-color: var(--line); color: #d5dfe1; background: rgba(14,28,38,.55); }
.button-ghost:hover { border-color: var(--line-bright); background: #122530; }
.play-icon { color: var(--amber); font-size: .62rem; transform: rotate(45deg); }
.hero-promise { display: flex; gap: 0; margin-top: 64px; }
.hero-promise > div { min-width: 150px; padding-right: 34px; }
.hero-promise > div + div { padding-left: 34px; border-left: 1px solid var(--line); }
.hero-promise strong { display: block; color: #fff; font-size: 1.48rem; line-height: 1.1; }
.hero-promise span { color: #6f838c; font-size: .7rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.scroll-cue {
  position: absolute;
  right: 30px;
  bottom: 90px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #687c84;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}
.scroll-cue span { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--cyan), transparent); }

.safety-strip { border-block: 1px solid var(--line); background: #09141c; }
.safety-inner { min-height: 74px; display: flex; align-items: center; gap: 14px; }
.safety-inner p { flex: 1; margin: 0; color: #94a6ad; font-size: .82rem; }
.safety-inner p strong { color: #dce6e7; }
.safety-inner > a { color: var(--cyan); font-size: .72rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.safety-inner > a:hover { text-decoration: underline; }
.shield-icon { width: 27px; height: 31px; display: grid; place-items: center; color: #06110f; background: var(--cyan); font-size: .8rem; font-weight: 950; clip-path: polygon(50% 0,100% 17%,91% 74%,50% 100%,9% 74%,0 17%); }

.section-heading { margin-bottom: 50px; }
.row-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.section-heading h2 { margin-bottom: 0; }
.section-intro { max-width: 450px; margin-bottom: 3px; color: var(--muted); }

.weekly { background: linear-gradient(to bottom, var(--bg-deep), var(--bg)); }
.spotlight-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 16px; }
.spotlight-card {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-image: linear-gradient(to top, rgba(3,8,12,.98) 4%, rgba(3,8,12,.45) 59%, rgba(3,8,12,.12)), var(--spotlight);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 -70px 100px rgba(0,0,0,.3);
  isolation: isolate;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.spotlight-card::after { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(120deg, transparent 70%, rgba(82,232,208,.09)); opacity: 0; transition: opacity .3s ease; }
.spotlight-card:hover { z-index: 2; border-color: rgba(82,232,208,.45); transform: translateY(-6px); box-shadow: var(--shadow); }
.spotlight-card:hover::after { opacity: 1; }
.spotlight-main { min-height: 490px; }
.spotlight-top { display: flex; align-items: center; justify-content: space-between; }
.rank-chip { padding: 7px 9px; border: 1px solid rgba(82,232,208,.34); border-radius: 6px; color: var(--cyan); background: rgba(3,12,15,.72); backdrop-filter: blur(10px); font-size: .57rem; font-weight: 900; letter-spacing: .1em; }
.score-ring { width: 49px; height: 49px; display: grid; place-items: center; border: 2px solid var(--cyan); border-radius: 50%; color: #fff; background: rgba(4,12,16,.75); box-shadow: 0 0 22px rgba(82,232,208,.2); font-size: .85rem; font-weight: 900; }
.spotlight-copy .card-kicker { color: var(--cyan); font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.spotlight-copy h3 { margin-bottom: 11px; font-size: clamp(1.75rem, 3vw, 2.6rem); }
.spotlight-copy > p:not(.card-kicker) { margin-bottom: 18px; color: #a5b3b8; font-size: .86rem; }
.spotlight-copy a { color: #fff; font-size: .72rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.spotlight-copy a span { color: var(--cyan); }

.catalogue-section { border-top: 1px solid rgba(255,255,255,.03); background: #09131b; }
.catalogue-toolbar { display: flex; gap: 12px; margin-bottom: 17px; }
.search-box { position: relative; flex: 1; }
.search-box input, .select-wrap select, .signup-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  color: #dfe7e9;
  background: #0d1922;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.search-box input { padding: 0 54px 0 47px; }
.search-box input:focus, .select-wrap select:focus, .signup-form input:focus { border-color: var(--cyan-dark); box-shadow: 0 0 0 4px rgba(82,232,208,.08); }
.search-box input::placeholder, .signup-form input::placeholder { color: #60737c; }
.search-icon { position: absolute; z-index: 2; top: 18px; left: 18px; width: 17px; height: 17px; border: 2px solid #6d818a; border-radius: 50%; pointer-events: none; }
.search-icon::after { position: absolute; right: -5px; bottom: -4px; width: 7px; height: 2px; content: ""; background: #6d818a; transform: rotate(46deg); }
.search-box kbd { position: absolute; top: 15px; right: 15px; min-width: 25px; padding: 2px 7px; border: 1px solid #30404a; border-radius: 5px; color: #71838c; background: #111f29; font-family: inherit; font-size: .7rem; text-align: center; }
.select-wrap { position: relative; min-width: 210px; }
.select-wrap label { position: absolute; z-index: 2; top: 8px; left: 15px; color: #677b84; font-size: .58rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; pointer-events: none; }
.select-wrap select { padding: 18px 38px 0 14px; cursor: pointer; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%); background-position: calc(100% - 17px) 26px, calc(100% - 12px) 26px; background-repeat: no-repeat; background-size: 5px 5px, 5px 5px; font-size: .82rem; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; padding: 13px 0 22px; border-bottom: 1px solid var(--line); }
.filter-chip { padding: 9px 14px; border: 1px solid var(--line); border-radius: 99px; color: #879aa2; background: transparent; cursor: pointer; font-size: .72rem; font-weight: 800; transition: all .2s ease; }
.filter-chip span { display: inline-grid; min-width: 20px; height: 20px; margin-left: 5px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.06); font-size: .6rem; }
.filter-chip:hover, .filter-chip.is-active { border-color: rgba(82,232,208,.45); color: var(--cyan); background: rgba(82,232,208,.07); }
.results-meta { min-height: 72px; display: flex; align-items: center; justify-content: space-between; color: #71848c; font-size: .75rem; }
.results-meta p { margin: 0; }
.results-meta strong { color: #cbd7da; }
.saved-count span { color: var(--amber); }
.game-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.game-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d1922;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  animation: card-in .45s ease both;
}
.game-card:hover { border-color: rgba(82,232,208,.28); transform: translateY(-5px); box-shadow: 0 22px 55px rgba(0,0,0,.24); }
.game-media { position: relative; height: 176px; overflow: hidden; background: radial-gradient(circle at 70% 30%, #183d49, #0b1720 65%); }
.game-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, #0d1922, transparent 55%); pointer-events: none; }
.game-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.game-card:hover .game-media img { transform: scale(1.04); }
.game-media.is-logo { display: grid; place-items: center; background-image: radial-gradient(circle at 60% 35%, var(--logo-glow, #213d48), #09121a 70%), linear-gradient(135deg, rgba(82,232,208,.08), transparent); }
.game-media.is-logo img { width: 65%; height: 50%; object-fit: contain; filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(0,0,0,.4)); }
.game-media.is-logo.valorant img { filter: none; }
.game-badges { position: absolute; z-index: 2; top: 12px; left: 12px; display: flex; gap: 6px; }
.media-badge { padding: 5px 7px; border: 1px solid rgba(255,255,255,.13); border-radius: 5px; color: #fff; background: rgba(4,11,16,.78); backdrop-filter: blur(8px); font-size: .54rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.media-badge.free { border-color: rgba(82,232,208,.35); color: var(--cyan); }
.save-button { position: absolute; z-index: 3; top: 11px; right: 11px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; color: #fff; background: rgba(4,11,16,.72); cursor: pointer; backdrop-filter: blur(8px); transition: color .2s ease, border-color .2s ease, background .2s ease; }
.save-button:hover, .save-button.is-saved { border-color: rgba(255,198,107,.5); color: var(--amber); background: rgba(33,25,14,.82); }
.game-score { position: absolute; z-index: 2; right: 14px; bottom: 3px; width: 48px; height: 48px; display: grid; place-items: center; border: 2px solid var(--cyan); border-radius: 50%; color: white; background: #0d1922; font-size: .85rem; font-weight: 900; box-shadow: 0 0 0 5px #0d1922; }
.game-body { padding: 18px 18px 17px; }
.game-title-row { min-height: 46px; display: flex; align-items: start; justify-content: space-between; gap: 10px; }
.game-title-row h3 { margin: 0; font-size: 1.25rem; }
.game-genre { color: var(--cyan); font-size: .58rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; text-align: right; }
.game-summary { min-height: 67px; margin-bottom: 17px; color: #8fa1a8; font-size: .78rem; line-height: 1.55; }
.game-meta { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 18px; padding: 12px 0; border-block: 1px solid var(--line); }
.game-meta div + div { padding-left: 12px; border-left: 1px solid var(--line); }
.game-meta span { display: block; color: #5d727b; font-size: .53rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.game-meta strong { color: #c6d2d5; font-size: .68rem; font-weight: 750; }
.game-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-date { color: #5d727b; font-size: .61rem; }
.official-link { color: #e7eff0; font-size: .67rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.official-link span { color: var(--cyan); }
.official-link:hover { color: var(--cyan); }
.empty-state { padding: 80px 20px; border: 1px dashed #28404b; border-radius: var(--radius); text-align: center; }
.empty-state > span { display: block; margin-bottom: 12px; color: var(--cyan); font-size: 3rem; }
.empty-state h3 { margin-bottom: 8px; font-size: 1.5rem; }
.empty-state p { color: var(--muted); }

.method-section { position: relative; overflow: hidden; background: #071018; }
.method-section::before { position: absolute; right: -240px; bottom: -280px; width: 720px; height: 720px; content: ""; border: 1px solid rgba(82,232,208,.1); border-radius: 50%; box-shadow: 0 0 0 85px rgba(82,232,208,.025), 0 0 0 170px rgba(82,232,208,.018); pointer-events: none; }
.method-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 90px; }
.method-copy > p:not(.eyebrow) { max-width: 610px; color: var(--muted); }
.method-steps { display: grid; gap: 0; padding: 0; margin: 38px 0 0; list-style: none; }
.method-steps li { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 23px 0; border-top: 1px solid var(--line); }
.method-steps li:last-child { border-bottom: 1px solid var(--line); }
.method-steps > li > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(82,232,208,.23); border-radius: 50%; color: var(--cyan); background: rgba(82,232,208,.035); font-size: .65rem; font-weight: 900; }
.method-steps h3 { margin: 1px 0 6px; font-size: 1rem; }
.method-steps p { margin: 0; color: #84979f; font-size: .79rem; }
.score-panel { position: relative; padding: 34px; border: 1px solid rgba(82,232,208,.25); border-radius: 26px; background: linear-gradient(145deg, rgba(17,35,45,.92), rgba(7,16,24,.96)); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.04); }
.score-panel::before { position: absolute; top: 0; left: 12%; width: 76%; height: 1px; content: ""; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.score-panel-head { display: flex; align-items: center; gap: 19px; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.score-big { color: var(--cyan); font-size: 4.5rem; font-weight: 900; line-height: .9; letter-spacing: -.08em; text-shadow: 0 0 35px rgba(82,232,208,.18); }
.score-panel-head p { margin: 0 0 4px; color: #61757d; font-size: .6rem; font-weight: 900; letter-spacing: .12em; }
.score-panel-head strong { font-size: 1.05rem; }
.score-bars { display: grid; gap: 22px; padding: 29px 0; }
.score-bars div > span { display: flex; justify-content: space-between; margin-bottom: 8px; color: #9badb3; font-size: .7rem; }
.score-bars b { color: #dce7e8; }
.score-bars i { position: relative; height: 5px; display: block; overflow: hidden; border-radius: 99px; background: #1a2a33; }
.score-bars i::after { position: absolute; inset: 0 auto 0 0; width: var(--value); content: ""; border-radius: inherit; background: linear-gradient(90deg, var(--cyan-dark), var(--cyan)); box-shadow: 0 0 13px rgba(82,232,208,.25); }
.score-key { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 18px 0; border-top: 1px solid var(--line); color: #7c9098; font-size: .58rem; }
.score-key i { width: 6px; height: 6px; display: inline-block; margin-right: 4px; border-radius: 50%; }
.key-great { background: var(--cyan); }.key-good { background: var(--blue); }.key-fair { background: var(--amber); }
.panel-note { margin: 0; color: #586c75; font-size: .63rem; line-height: 1.55; }

.free-standard { padding: 78px 0; border-block: 1px solid rgba(82,232,208,.16); background: linear-gradient(100deg, #0b1d24, #0a151e); }
.free-grid { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 60px; }
.free-standard h2 { max-width: 850px; font-size: clamp(2rem, 3.5vw, 3.25rem); }
.free-standard p:not(.eyebrow) { max-width: 880px; color: #94a6ad; }
.free-badge { width: 164px; height: 164px; display: grid; place-content: center; border: 1px solid rgba(82,232,208,.37); border-radius: 50%; background: radial-gradient(circle, rgba(82,232,208,.12), transparent 67%); box-shadow: 0 0 0 12px rgba(82,232,208,.025), 0 0 50px rgba(82,232,208,.08); text-align: center; }
.free-badge span { color: var(--cyan); font-size: 3.4rem; font-weight: 950; line-height: .95; letter-spacing: -.07em; }
.free-badge small { margin-top: 8px; color: #7c929a; font-size: .57rem; font-weight: 900; letter-spacing: .13em; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; margin-top: 25px; }
.check-grid span { color: #c1ced1; font-size: .75rem; font-weight: 700; }
.check-grid span::first-letter { color: var(--cyan); }

.voices { background: #08121a; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.quote-card { margin: 0; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #0d1922; }
.quote-featured { border-color: rgba(82,232,208,.27); background: linear-gradient(145deg, rgba(82,232,208,.065), #0d1922 55%); transform: translateY(-12px); }
.quote-stars { margin-bottom: 18px; color: var(--amber); font-size: .72rem; letter-spacing: .12em; }
.quote-card blockquote { min-height: 130px; margin: 0; color: #b5c2c6; font-size: .91rem; line-height: 1.75; }
.quote-card figcaption { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.quote-card figcaption > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #06100f; background: linear-gradient(135deg, var(--cyan), var(--blue)); font-size: .67rem; font-weight: 900; }
.quote-card figcaption div { display: grid; }
.quote-card figcaption strong { font-size: .76rem; }
.quote-card figcaption small { color: #647780; font-size: .61rem; }

.faq-section { background: #071018; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro p:not(.eyebrow) { color: var(--muted); }
.faq-intro a { color: var(--cyan); font-size: .8rem; font-weight: 800; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion details:first-child { border-top: 1px solid var(--line); }
.accordion summary { position: relative; padding: 24px 46px 24px 0; cursor: pointer; list-style: none; font-size: .95rem; font-weight: 750; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span, .accordion summary span::after { position: absolute; top: 50%; right: 4px; width: 17px; height: 1px; content: ""; background: var(--cyan); transition: transform .2s ease; }
.accordion summary span::after { top: 0; right: 0; transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 700px; padding: 0 46px 24px 0; margin: 0; color: #83969e; font-size: .82rem; }

.newsletter { position: relative; overflow: hidden; padding: 84px 0; border-block: 1px solid rgba(82,232,208,.2); background: #0b2026; }
.newsletter::after { position: absolute; right: 8%; top: -120px; width: 320px; height: 320px; content: ""; border: 45px solid rgba(82,232,208,.03); border-radius: 50%; box-shadow: 0 0 0 45px rgba(82,232,208,.02); }
.newsletter-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.newsletter h2 { margin-bottom: 12px; font-size: clamp(2.2rem, 4vw, 3.55rem); }
.newsletter p:not(.eyebrow) { margin: 0; color: #90a4ab; }
.signup-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.signup-form input { padding: 0 17px; }
.signup-form small { grid-column: 1 / -1; color: #62757e; font-size: .62rem; }
.signup-form small a { color: #a6b7bc; text-decoration: underline; }
.form-status { grid-column: 1 / -1; min-height: 18px; margin: 0 !important; color: var(--cyan) !important; font-size: .68rem; }

.site-footer { padding: 78px 0 24px; background: #050b10; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 55px; padding-bottom: 46px; }
.footer-brand > p { max-width: 330px; margin: 22px 0 0; color: #657780; font-size: .74rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid h3 { margin: 5px 0 11px; color: #d3dddf; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-grid a, .footer-grid span, .link-button { color: #697c84; font-size: .7rem; }
.footer-grid a:hover, .link-button:hover { color: var(--cyan); }
.link-button { width: max-content; padding: 0; border: 0; background: transparent; cursor: pointer; }
.footer-disclaimer { padding: 23px 0; border-block: 1px solid var(--line); }
.footer-disclaimer p { margin: 0; color: #50636c; font-size: .62rem; line-height: 1.7; }
.footer-disclaimer strong { color: #74868e; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 23px; color: #4d6068; font-size: .61rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: var(--cyan); }

.cookie-banner {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  left: 22px;
  max-width: 900px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin: auto;
  padding: 18px;
  border: 1px solid rgba(82,232,208,.29);
  border-radius: 16px;
  background: rgba(9,21,29,.96);
  box-shadow: 0 25px 80px rgba(0,0,0,.45);
  backdrop-filter: blur(18px);
  animation: cookie-in .5s ease both;
}
.cookie-banner[hidden] { display: none; }
.cookie-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(82,232,208,.27); border-radius: 50%; color: var(--cyan); font-size: 1.5rem; }
.cookie-banner h2 { margin: 0 0 3px; font-size: .9rem; letter-spacing: -.01em; }
.cookie-banner p { margin: 0; color: #7f929a; font-size: .67rem; }
.cookie-banner p a { color: #c4d0d3; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .button { min-height: 42px; padding: 9px 14px; font-size: .66rem; }

/* Legal pages */
.legal-hero { position: relative; padding: 162px 0 72px; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 20%, rgba(82,232,208,.1), transparent 32%), #071018; }
.legal-hero::before { position: absolute; right: 10%; top: 70px; width: 230px; height: 230px; content: ""; border: 1px solid rgba(82,232,208,.14); border-radius: 50%; box-shadow: 0 0 0 38px rgba(82,232,208,.025), 0 0 0 76px rgba(82,232,208,.018); }
.legal-hero h1 { max-width: 850px; margin-bottom: 15px; font-size: clamp(3rem, 6vw, 5.4rem); text-transform: uppercase; }
.legal-hero .legal-lead { max-width: 690px; margin: 0; color: var(--muted); }
.updated-chip { display: inline-flex; margin-top: 25px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 7px; color: #778b93; background: rgba(15,29,38,.65); font-size: .65rem; font-weight: 750; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 750px); align-items: start; gap: 75px; padding: 72px 0 110px; }
.legal-nav { position: sticky; top: 110px; padding: 19px; border: 1px solid var(--line); border-radius: 13px; background: #0b1720; }
.legal-nav p { margin: 0 0 12px; color: #5d727a; font-size: .58rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.legal-nav a { display: block; padding: 7px 8px; border-left: 1px solid #253943; color: #7f939a; font-size: .7rem; }
.legal-nav a:hover { border-color: var(--cyan); color: var(--cyan); }
.legal-content { color: #9aabb1; }
.legal-content section { scroll-margin-top: 115px; }
.legal-content section + section { padding-top: 34px; margin-top: 34px; border-top: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 18px; color: #e7eeee; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -.03em; }
.legal-content h3 { margin: 25px 0 10px; color: #d0dbde; font-size: 1rem; }
.legal-content p, .legal-content li { font-size: .84rem; line-height: 1.8; }
.legal-content ul { padding-left: 19px; }
.legal-content a { color: var(--cyan); text-decoration: underline; }
.legal-note { padding: 19px; border: 1px solid rgba(82,232,208,.19); border-radius: 10px; background: rgba(82,232,208,.045); }
.cookie-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .74rem; }
.cookie-table th, .cookie-table td { padding: 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.cookie-table th { color: #cbd7da; background: #0d1922; }

@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(82,232,208,0), 0 0 22px var(--cyan); } }
@keyframes hero-in { from { opacity: 0; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes card-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cookie-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .site-nav { gap: 20px; }
  .site-nav > a:not(.nav-cta) { font-size: .77rem; }
  .hero { min-height: 740px; }
  .hero-art { background-position: 61% center; }
  .spotlight-grid { grid-template-columns: 1fr 1fr; }
  .spotlight-main { grid-column: 1 / -1; }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-grid { gap: 50px; }
  .faq-grid { gap: 55px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --shell: min(620px, calc(100% - 28px)); }
  .section { padding: 74px 0; }
  .site-header { height: 68px; background: rgba(5,11,17,.88); }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: absolute; top: 67px; right: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 12px 14px 18px; border-bottom: 1px solid var(--line); background: rgba(5,11,17,.98); box-shadow: 0 24px 40px rgba(0,0,0,.34); }
  .site-nav.is-open { display: flex; flex-direction: column; }
  .site-nav a { padding: 13px 10px; }
  .nav-cta { margin-top: 7px; text-align: center; }
  .hero { min-height: 760px; align-items: end; padding-bottom: 65px; }
  .hero-art { background-image: linear-gradient(to top, rgba(4,10,15,.98) 7%, rgba(4,10,15,.72) 55%, rgba(4,10,15,.3)), url("../images/koru-forge-hero.webp"); background-position: 69% center; }
  .hero-content { padding-top: 130px; }
  .hero h1 { font-size: clamp(3.2rem, 14vw, 4.5rem); }
  .hero-lead { font-size: .95rem; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 370px; }
  .hero-promise { margin-top: 40px; }
  .hero-promise > div { min-width: 0; flex: 1; padding-right: 13px; }
  .hero-promise > div + div { padding-left: 13px; }
  .hero-promise strong { font-size: 1.16rem; }
  .hero-promise span { font-size: .55rem; line-height: 1.35; }
  .scroll-cue { display: none; }
  .safety-inner { align-items: flex-start; flex-wrap: wrap; padding: 17px 0; }
  .safety-inner p { flex: 1 1 calc(100% - 50px); }
  .safety-inner > a { margin-left: 41px; }
  .row-heading { align-items: flex-start; flex-direction: column; gap: 13px; }
  .section-heading { margin-bottom: 36px; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-main { grid-column: auto; }
  .spotlight-card, .spotlight-main { min-height: 430px; }
  .catalogue-toolbar { flex-direction: column; }
  .select-wrap { min-width: 100%; }
  .game-grid { grid-template-columns: 1fr; }
  .game-media { height: min(47vw, 240px); }
  .method-grid, .faq-grid, .newsletter-inner { grid-template-columns: 1fr; gap: 54px; }
  .free-grid { grid-template-columns: 1fr; gap: 35px; }
  .free-badge { width: 135px; height: 135px; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-featured { transform: none; }
  .quote-card blockquote { min-height: 0; margin-bottom: 26px; }
  .faq-intro { position: static; }
  .newsletter-inner { gap: 34px; }
  .signup-form { grid-template-columns: 1fr; }
  .signup-form small, .form-status { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .cookie-banner { grid-template-columns: auto 1fr; }
  .cookie-actions { grid-column: 1 / -1; }
  .cookie-actions .button { flex: 1; }
  .legal-layout { grid-template-columns: 1fr; gap: 35px; padding-top: 45px; }
  .legal-nav { position: static; display: none; }
}

@media (max-width: 430px) {
  .brand-copy { font-size: .91rem; }
  .brand img { width: 39px; height: 39px; }
  .hero h1 { font-size: 2.85rem; }
  .hero-promise span { letter-spacing: 0; text-transform: none; }
  .check-grid { grid-template-columns: 1fr; }
  .score-panel { padding: 25px 20px; }
  .score-big { font-size: 3.7rem; }
  .score-key { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; padding: 14px; }
  .cookie-icon { display: none; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { grid-column: auto; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
