/* ShardHop — custom toplist chrome + home. Self-contained; theme-token wiring to XF palette comes next. */

:root {
	--sh-bg: #0e1320;
	--sh-bg-2: #151c2c;
	--sh-panel: #1a2233;
	--sh-panel-2: #212c42;
	--sh-border: #2a3550;
	--sh-text: #e8edf7;
	--sh-muted: #93a0bd;
	--sh-accent: #35d0c4;
	--sh-accent-2: #4f9dff;
	--sh-gold: #f4c04a;
	--sh-radius: 12px;
	--sh-maxw: 1140px;
}

/* Take over the page background wherever the ShardHop shell is used */
body.shardhop-shell { background: var(--sh-bg); }
.p-pageWrapper { background: var(--sh-bg); color: var(--sh-text); min-height: 100vh; }

.sh-header,
.sh-footer,
.sh-main { font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif; }

/* ---- Header / nav ---- */
.sh-header {
	background: linear-gradient(180deg, var(--sh-bg-2), var(--sh-bg));
	border-bottom: 1px solid var(--sh-border);
	position: sticky; top: 0; z-index: 50;
}
.sh-header-inner {
	max-width: var(--sh-maxw); margin: 0 auto; padding: 0 20px;
	height: 64px; display: flex; align-items: center; gap: 24px;
}
.sh-brand { display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--sh-text); font-size: 21px; font-weight: 600; letter-spacing: .2px; }
.sh-brand:hover { text-decoration: none; }
.sh-brand-mark { color: var(--sh-accent); font-size: 18px; }
.sh-brand-text b { color: var(--sh-accent); font-weight: 800; }
.sh-nav { display: flex; align-items: center; gap: 6px; margin-left: 8px; }
.sh-nav-link {
	color: var(--sh-muted); text-decoration: none; font-size: 15px; font-weight: 500;
	padding: 8px 12px; border-radius: 8px; white-space: nowrap;
}
.sh-nav-link:hover { color: var(--sh-text); background: rgba(255,255,255,.05); text-decoration: none; }
.sh-nav-link.is-active { color: var(--sh-text); background: rgba(53,208,196,.12); }
.sh-account { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.sh-navToggle { display: none; }

.sh-btn {
	display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 8px;
	font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; border: 1px solid transparent;
}
.sh-btn:hover { text-decoration: none; }
.sh-btn--cta { background: var(--sh-accent); color: #06231f; }
.sh-btn--cta:hover { background: #45e2d5; color: #06231f; }
.sh-btn--ghost { border-color: var(--sh-border); color: var(--sh-muted); }
.sh-btn--ghost:hover { color: var(--sh-text); border-color: var(--sh-muted); }

/* ---- Main ---- */
.sh-main { max-width: var(--sh-maxw); margin: 0 auto; padding: 28px 20px 56px; }

/* ---- Hero ---- */
.sh-hero {
	background:
		radial-gradient(1200px 300px at 15% -30%, rgba(53,208,196,.18), transparent 60%),
		radial-gradient(1000px 300px at 95% -20%, rgba(79,157,255,.16), transparent 55%),
		var(--sh-panel);
	border: 1px solid var(--sh-border); border-radius: 16px;
	padding: 44px 40px; margin-bottom: 34px;
}
.sh-hero-title { font-size: 38px; line-height: 1.12; font-weight: 800; margin: 0 0 12px; color: var(--sh-text); }
.sh-hero-title span { color: var(--sh-accent); }
.sh-hero-sub { font-size: 17px; color: var(--sh-muted); max-width: 640px; margin: 0 0 22px; }
.sh-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sh-btn--lg { padding: 12px 22px; font-size: 15px; }

/* ---- Sections ---- */
.sh-section { margin-bottom: 40px; }
.sh-section-head { display: flex; align-items: baseline; justify-content: space-between; margin: 0 0 16px; }
.sh-section-title { font-size: 22px; font-weight: 700; margin: 0; color: var(--sh-text); }
.sh-section-link { color: var(--sh-accent); text-decoration: none; font-size: 14px; font-weight: 600; }

/* ---- Game grid ---- */
.sh-games { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.sh-game-card {
	display: block; background: var(--sh-panel); border: 1px solid var(--sh-border);
	border-radius: var(--sh-radius); padding: 22px; text-decoration: none; color: var(--sh-text);
	transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.sh-game-card:hover { transform: translateY(-3px); border-color: var(--sh-accent); background: var(--sh-panel-2); text-decoration: none; }
.sh-game-card-title { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.sh-game-card-blurb { font-size: 13.5px; color: var(--sh-muted); margin: 0 0 16px; line-height: 1.45; min-height: 40px; }
.sh-game-card-foot { display: flex; align-items: center; justify-content: space-between; }
.sh-pill { font-size: 12px; font-weight: 700; color: var(--sh-accent); background: rgba(53,208,196,.12); padding: 4px 10px; border-radius: 999px; }
.sh-game-card-go { color: var(--sh-muted); font-size: 13px; }

/* ---- Trust strip ---- */
.sh-trust {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px;
	background: var(--sh-bg-2); border: 1px solid var(--sh-border); border-radius: 16px; padding: 26px 30px;
}
.sh-trust-item-title { font-weight: 700; margin: 0 0 6px; color: var(--sh-text); }
.sh-trust-item-title .sh-ic { color: var(--sh-accent); margin-right: 8px; }
.sh-trust-item-text { font-size: 13.5px; color: var(--sh-muted); margin: 0; line-height: 1.5; }

/* ---- Empty state ---- */
.sh-empty { text-align: center; color: var(--sh-muted); background: var(--sh-panel); border: 1px dashed var(--sh-border); border-radius: var(--sh-radius); padding: 40px 20px; }

/* ---- Footer ---- */
.sh-footer { border-top: 1px solid var(--sh-border); background: var(--sh-bg-2); }
.sh-footer-inner { max-width: var(--sh-maxw); margin: 0 auto; padding: 26px 20px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.sh-footer-brand { font-size: 18px; font-weight: 700; }
.sh-footer-brand b { color: var(--sh-accent); }
.sh-footer-nav { display: flex; gap: 18px; }
.sh-footer-nav a { color: var(--sh-muted); text-decoration: none; font-size: 14px; }
.sh-footer-nav a:hover { color: var(--sh-text); }
.sh-footer-copy { margin-left: auto; color: var(--sh-muted); font-size: 13px; }

/* ---- Custom auth (login) layout ---- */
.sh-auth {
	display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0;
	max-width: 980px; margin: 24px auto; min-height: 520px;
	background: var(--sh-panel); border: 1px solid var(--sh-border); border-radius: 18px; overflow: hidden;
}
.sh-auth-brand {
	padding: 48px 44px;
	background:
		radial-gradient(700px 260px at 10% -10%, rgba(53,208,196,.22), transparent 60%),
		radial-gradient(600px 240px at 100% 110%, rgba(79,157,255,.18), transparent 55%),
		var(--sh-bg-2);
	border-right: 1px solid var(--sh-border);
	display: flex; flex-direction: column; justify-content: center;
}
.sh-auth-logo { font-size: 22px; font-weight: 700; margin-bottom: 26px; }
.sh-auth-logo b { color: var(--sh-accent); }
.sh-auth-logo .sh-brand-mark { color: var(--sh-accent); margin-right: 6px; }
.sh-auth-pitch { font-size: 30px; font-weight: 800; margin: 0 0 12px; line-height: 1.15; }
.sh-auth-lede { color: var(--sh-muted); font-size: 15px; line-height: 1.55; margin: 0 0 22px; max-width: 380px; }
.sh-auth-points { list-style: none; margin: 0; padding: 0; }
.sh-auth-points li { color: var(--sh-text); font-size: 14px; padding: 6px 0 6px 24px; position: relative; }
.sh-auth-points li:before { content: "◆"; color: var(--sh-accent); position: absolute; left: 0; font-size: 12px; top: 8px; }

.sh-auth-card { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.sh-auth-title { font-size: 24px; font-weight: 700; margin: 0 0 20px; }
.sh-auth-form { display: block; }
.sh-field { display: block; margin-bottom: 16px; }
.sh-field-label { display: block; font-size: 13px; color: var(--sh-muted); margin-bottom: 6px; font-weight: 600; }
.sh-input {
	width: 100%; box-sizing: border-box; padding: 11px 13px; font-size: 15px;
	background: var(--sh-bg); border: 1px solid var(--sh-border); border-radius: 9px; color: var(--sh-text);
}
.sh-input:focus { outline: none; border-color: var(--sh-accent); box-shadow: 0 0 0 3px rgba(53,208,196,.18); }
.sh-auth-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 4px 0 20px; }
.sh-check { display: inline-flex; align-items: center; gap: 8px; color: var(--sh-muted); font-size: 14px; cursor: pointer; }
.sh-check input { accent-color: var(--sh-accent); width: 16px; height: 16px; }
.sh-auth-link { color: var(--sh-accent); text-decoration: none; font-size: 14px; }
.sh-auth-link:hover { text-decoration: underline; }
.sh-btn--block { width: 100%; justify-content: center; }
.sh-auth-alt { text-align: center; color: var(--sh-muted); font-size: 14px; margin-top: 18px; }
.sh-auth-note { background: var(--sh-bg-2); border: 1px solid var(--sh-border); border-radius: 9px; padding: 12px 14px; color: var(--sh-muted); font-size: 13.5px; margin-bottom: 16px; }
.sh-auth-error { background: rgba(226,74,74,.12); border: 1px solid rgba(226,74,74,.4); color: #ffb4b4; border-radius: 9px; padding: 12px 14px; font-size: 14px; margin-bottom: 16px; }
.sh-auth-sep { display: flex; align-items: center; gap: 12px; margin: 22px 0 16px; color: var(--sh-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.sh-auth-sep span { flex: 1; height: 1px; background: var(--sh-border); }
.sh-auth-passkey { margin: 0; }

.sh-auth-switch { margin-top: 26px; color: var(--sh-muted); font-size: 14px; }

/* Wider variant for the register form, which has more fields */
.sh-auth--wide { max-width: 1080px; }
.sh-auth--wide .sh-auth-brand { justify-content: flex-start; padding-top: 56px; }

/* Dark skin for XenForo's own form rows, scoped to the auth card only
   (so the forum's forms are never affected). */
.sh-auth-card--form { padding: 40px 40px; }
.sh-auth-card--form .block,
.sh-auth-card--form .block-container,
.sh-auth-card--form .block-body {
	background: transparent; border: 0; box-shadow: none; padding: 0; margin: 0;
}
.sh-auth-card--form .formRow {
	display: block; padding: 0 0 16px; margin: 0; border: 0;
}
.sh-auth-card--form .formRow--input { display: block; }
.sh-auth-card--form .formRow-labelWrapper,
.sh-auth-card--form .formRow-label {
	display: block; width: auto; float: none; text-align: left; padding: 0 0 6px;
}
.sh-auth-card--form .formRow-label,
.sh-auth-card--form label { color: var(--sh-muted); font-size: 13px; font-weight: 600; }
.sh-auth-card--form .formRow-controls { display: block; width: auto; }
.sh-auth-card--form .input,
.sh-auth-card--form input[type="text"],
.sh-auth-card--form input[type="email"],
.sh-auth-card--form input[type="password"],
.sh-auth-card--form input[type="number"],
.sh-auth-card--form textarea,
.sh-auth-card--form select {
	width: 100%; box-sizing: border-box; padding: 10px 12px; font-size: 15px;
	background: var(--sh-bg); border: 1px solid var(--sh-border); border-radius: 9px; color: var(--sh-text);
}
.sh-auth-card--form .input:focus,
.sh-auth-card--form input:focus,
.sh-auth-card--form textarea:focus,
.sh-auth-card--form select:focus {
	outline: none; border-color: var(--sh-accent); box-shadow: 0 0 0 3px rgba(53,208,196,.18);
}
.sh-auth-card--form .inputGroup { width: 100%; }
.sh-auth-card--form .formRow-explain,
.sh-auth-card--form .u-hint,
.sh-auth-card--form .formRow-hint { color: var(--sh-muted); font-size: 12.5px; margin-top: 5px; }
.sh-auth-card--form .iconic:before,
.sh-auth-card--form .inputChoices-choice { color: var(--sh-muted); }
.sh-auth-card--form .button {
	background: var(--sh-panel-2); border: 1px solid var(--sh-border); color: var(--sh-text);
	border-radius: 9px; padding: 9px 16px;
}
.sh-auth-card--form .button--primary,
.sh-auth-card--form .formSubmitRow .button--icon,
.sh-auth-card--form button[type="submit"] {
	background: var(--sh-accent); border-color: var(--sh-accent); color: #06231f; font-weight: 700; width: 100%; justify-content: center;
}
.sh-auth-card--form .formSubmitRow { display: block; padding: 8px 0 0; margin: 0; border: 0; }
.sh-auth-card--form .formSubmitRow-controls { width: auto; display: block; }
.sh-auth-card--form a { color: var(--sh-accent); }

/* XenForo 2.3 renders rows as <dl class="formRow"><dt>label</dt><dd>controls</dd>.
   Stack them and kill the light label cell. */
.sh-auth-card--form dl.formRow,
.sh-auth-card--form .formRow { display: block; padding: 0 0 16px; margin: 0; border: 0; }
.sh-auth-card--form .formRow > dt,
.sh-auth-card--form dt {
	display: block; width: auto; float: none; text-align: left;
	background: transparent; padding: 0 0 6px; margin: 0;
	color: var(--sh-muted); font-weight: 600; font-size: 13px;
}
.sh-auth-card--form .formRow > dd,
.sh-auth-card--form dd { display: block; width: auto; margin: 0; padding: 0; }
.sh-auth-card--form .formRow-explain { color: var(--sh-muted); font-size: 12.5px; margin-top: 5px; }
.sh-auth-card--form .inputGroup-text {
	background: var(--sh-bg-2); border-color: var(--sh-border); color: var(--sh-muted);
}
.sh-auth-card--form .inputValidationError,
.sh-auth-card--form .js-validationError {
	background: rgba(226,74,74,.14); color: #ffb4b4; border-color: rgba(226,74,74,.4);
}
.sh-auth-card--form .formSubmitRow-bar,
.sh-auth-card--form .formSubmitRow-explain { color: var(--sh-muted); }
.sh-auth-card--form .blockMessage {
	background: var(--sh-bg-2); border-color: var(--sh-border); color: var(--sh-muted);
}

/* Spam honeypots: present in the DOM (bots fill them) but off-screen for humans. */
.sh-auth-card--form .sh-hp {
	position: absolute !important; left: -9999px !important; top: auto !important;
	width: 1px !important; height: 1px !important; overflow: hidden !important;
}

/* ---- Legal pages (terms / privacy) ---- */
.sh-legal {
	max-width: 780px; margin: 8px auto 0; background: var(--sh-panel);
	border: 1px solid var(--sh-border); border-radius: 16px; padding: 44px 48px;
}
.sh-legal-head { border-bottom: 1px solid var(--sh-border); padding-bottom: 18px; margin-bottom: 24px; }
.sh-legal-head h1 { font-size: 30px; font-weight: 800; margin: 0 0 6px; }
.sh-legal-meta { color: var(--sh-muted); font-size: 13px; margin: 0; }
.sh-legal h2 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; color: var(--sh-text); }
.sh-legal p { color: var(--sh-text); line-height: 1.65; margin: 0 0 14px; font-size: 15px; }
.sh-legal ul { margin: 0 0 14px; padding-left: 22px; }
.sh-legal li { color: var(--sh-text); line-height: 1.6; margin-bottom: 8px; font-size: 15px; }
.sh-legal b { color: var(--sh-text); }
.sh-legal a { color: var(--sh-accent); }

/* ---- Breadcrumbs ---- */
.sh-crumbs { color: var(--sh-muted); font-size: 13px; margin: 0 0 18px; }
.sh-crumbs a { color: var(--sh-muted); text-decoration: none; }
.sh-crumbs a:hover { color: var(--sh-accent); }
.sh-crumbs span { margin: 0 6px; }

/* ---- Per-game header ---- */
.sh-gameHead { margin-bottom: 22px; }
.sh-gameHead-title { font-size: 30px; font-weight: 800; margin: 0 0 8px; }
.sh-gameHead-blurb { color: var(--sh-muted); font-size: 15px; margin: 0 0 8px; max-width: 700px; }
.sh-gameHead-meta { color: var(--sh-accent); font-size: 13px; font-weight: 600; }

/* ---- Ranked list ---- */
.sh-rank { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.sh-rank-row {
	display: flex; align-items: center; gap: 18px;
	background: var(--sh-panel); border: 1px solid var(--sh-border); border-radius: var(--sh-radius); padding: 16px 20px;
}
.sh-rank-row.is-featured { border-color: rgba(244,192,74,.5); background: linear-gradient(90deg, rgba(244,192,74,.06), var(--sh-panel) 40%); }
.sh-rank-num { font-size: 20px; font-weight: 800; color: var(--sh-muted); width: 34px; text-align: center; flex: 0 0 auto; }
.sh-rank-main { flex: 1 1 auto; min-width: 0; }
.sh-rank-name { font-size: 17px; font-weight: 700; margin: 0 0 4px; }
.sh-rank-name a { color: var(--sh-text); text-decoration: none; }
.sh-rank-name a:hover { color: var(--sh-accent); }
.sh-rank-tag { color: var(--sh-muted); font-size: 13.5px; margin-bottom: 4px; }
.sh-rank-metaline { display: flex; gap: 14px; color: var(--sh-muted); font-size: 12.5px; flex-wrap: wrap; }
.sh-rank-votes { text-align: center; flex: 0 0 auto; }
.sh-rank-votes b { display: block; font-size: 20px; font-weight: 800; color: var(--sh-accent); }
.sh-rank-votes span { font-size: 11px; color: var(--sh-muted); text-transform: uppercase; letter-spacing: .05em; }
.sh-rank-actions { display: flex; flex-direction: column; gap: 8px; flex: 0 0 auto; }
.sh-tag-featured { font-size: 11px; font-weight: 700; color: var(--sh-gold); background: rgba(244,192,74,.14); padding: 2px 8px; border-radius: 999px; vertical-align: middle; margin-left: 8px; }

/* ---- Server detail ---- */
.sh-server { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.sh-server-title { font-size: 28px; font-weight: 800; margin: 0 0 8px; }
.sh-server-tag { color: var(--sh-muted); font-size: 16px; margin: 0 0 14px; }
.sh-server-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.sh-badge { font-size: 12.5px; font-weight: 600; color: var(--sh-text); background: var(--sh-panel-2); border: 1px solid var(--sh-border); padding: 4px 11px; border-radius: 999px; }
.sh-server-banner { border-radius: var(--sh-radius); overflow: hidden; margin-bottom: 22px; border: 1px solid var(--sh-border); }
.sh-server-banner img { width: 100%; display: block; }
.sh-server-desc h2 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.sh-server-desc p { color: var(--sh-text); line-height: 1.65; font-size: 15px; }
.sh-server-card { background: var(--sh-panel); border: 1px solid var(--sh-border); border-radius: var(--sh-radius); padding: 22px; position: sticky; top: 84px; }
.sh-server-stat { text-align: center; margin-bottom: 16px; }
.sh-server-stat b { display: block; font-size: 30px; font-weight: 800; color: var(--sh-accent); }
.sh-server-stat span { font-size: 12px; color: var(--sh-muted); text-transform: uppercase; letter-spacing: .05em; }
.sh-server-note { color: var(--sh-muted); font-size: 12px; text-align: center; margin: 10px 0 14px; }

/* ---- Responsive ---- */
@media (max-width: 800px) {
	.sh-legal { padding: 28px 22px; }
	.sh-rank-row { flex-wrap: wrap; }
	.sh-rank-actions { flex-direction: row; width: 100%; }
	.sh-rank-actions .sh-btn { flex: 1; justify-content: center; }
	.sh-server { grid-template-columns: 1fr; }
	.sh-server-card { position: static; }
	.sh-nav { display: none; }
	.sh-navToggle { display: inline-flex; margin-left: auto; }
	.sh-account { margin-left: 12px; }
	.sh-hero { padding: 32px 24px; }
	.sh-hero-title { font-size: 30px; }
	.sh-footer-copy { margin-left: 0; width: 100%; }
	.sh-auth { grid-template-columns: 1fr; min-height: 0; }
	.sh-auth-brand { display: none; }
	.sh-auth-card { padding: 32px 24px; }
}

/* ShardHop / Worldkeeper — shared toplist and XenForo design system. */
:root {
  --sh-bg:#090f1a; --sh-bg-2:#0d1622; --sh-panel:#111d2b; --sh-panel-2:#172536;
  --sh-border:#263646; --sh-text:#eff6fa; --sh-muted:#9daec1;
  --sh-accent:#54e1c0; --sh-accent-2:#6cc5f6; --sh-gold:#ebbc73;
  --sh-radius:14px; --sh-maxw:1240px;
  color-scheme:dark;
}
html { scroll-behavior:smooth; scroll-padding-top:100px; }
body { background:var(--sh-bg); color:var(--sh-text); font-family:"Segoe UI",Inter,system-ui,-apple-system,Arial,sans-serif; }
body .p-pageWrapper { background:var(--sh-bg); color:var(--sh-text); }
*, *:before, *:after { box-sizing:border-box; }
img { max-width:100%; }
a { text-underline-offset:4px; }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible, select:focus-visible, textarea:focus-visible { outline:2px solid var(--sh-accent); outline-offset:4px; }
.sh-skip { position:fixed; top:-100px; left:20px; z-index:1000; padding:12px 20px; background:var(--sh-accent); color:#07241e; border-radius:8px; }
.sh-skip:focus { top:12px; }
.sh-main { width:100%; max-width:var(--sh-maxw); padding:34px 28px 72px; margin:auto; flex:1; }
.sh-site-header { position:relative; z-index:101; background:rgba(9,15,26,.98); border-bottom:1px solid #22313e; }
.sh-site-header-inner { max-width:var(--sh-maxw); min-height:86px; padding:15px 28px; margin:auto; display:flex; align-items:center; gap:42px; }
.sh-site-brand { color:var(--sh-text); font-size:25px; font-weight:800; letter-spacing:-1.1px; display:inline-flex; align-items:center; gap:10px; text-decoration:none; flex-shrink:0; line-height:1; }
.sh-site-brand:hover { color:var(--sh-text); text-decoration:none; }
.sh-site-brand > span > span { color:var(--sh-accent); }
.sh-site-brand img { object-fit:contain; flex-shrink:0; }
.sh-site-nav { display:flex; gap:27px; align-items:center; }
.sh-site-nav > a { position:relative; color:#a9b8c8; font-size:13px; font-weight:650; text-decoration:none; padding:18px 0; }
.sh-site-nav > a:hover, .sh-site-nav > a.is-active { color:var(--sh-text); }
.sh-site-nav > a.is-active:after { content:""; position:absolute; bottom:4px; height:3px; width:18px; left:0; border-radius:4px; background:var(--sh-accent); }
.sh-site-account { margin-left:auto; display:flex; align-items:center; gap:24px; min-width:0; }
.sh-site-login { color:#c3d0dd; font-size:13px; font-weight:600; max-width:140px; text-overflow:ellipsis; overflow:hidden; white-space:nowrap; }
.sh-site-login:hover { color:var(--sh-accent); }
.sh-btn { display:inline-flex; justify-content:center; align-items:center; gap:10px; min-height:42px; padding:11px 18px; font-family:inherit; font-size:13px; line-height:1.3; font-weight:750; border-radius:7px; border:1px solid transparent; cursor:pointer; transition:background .18s,border-color .18s,transform .18s; text-decoration:none; }
.sh-btn:hover { transform:translateY(-1px); text-decoration:none; }
.sh-btn--cta { background:var(--sh-accent); border-color:var(--sh-accent); color:#08271f; box-shadow:0 3px 15px #54e1c00c; }
.sh-btn--cta:hover { background:#8cf1d6; border-color:#8cf1d6; color:#08271f; }
.sh-btn--ghost { background:#14223080; border-color:#3a4c5c; color:#e0e9f0; }
.sh-btn--ghost:hover { background:#233445; border-color:#5c7b8e; color:#fff; }
.sh-btn--lg { min-height:48px; padding:14px 23px; font-size:14px; }
.sh-btn--block { width:100%; }
.sh-btn[aria-disabled=true] { opacity:.6; cursor:default; transform:none; }
.sh-site-submit { white-space:nowrap; font-size:12px; padding:10px 16px; }
.sh-site-submit span { font-size:18px; font-weight:400; line-height:1; }
.sh-mobile-menu { display:none; }
.sh-eyebrow { display:block; color:var(--sh-accent); font-size:10px; font-weight:800; letter-spacing:2.1px; line-height:1.5; }
.sh-site-footer { background:#0c1521; border-top:1px solid #233241; }
.sh-site-footer-inner { max-width:var(--sh-maxw); margin:auto; padding:48px 28px 38px; display:grid; grid-template-columns:1.5fr 1fr 1fr 1.15fr; gap:40px; }
.sh-site-footer .sh-site-brand { font-size:23px; }
.sh-site-footer p { color:var(--sh-muted); font-size:12px; line-height:1.9; margin:15px 0 0; }
.sh-site-footer nav { display:flex; flex-direction:column; gap:12px; }
.sh-site-footer h2 { color:#e3edf5; font-size:12px; font-weight:700; margin:4px 0 5px; }
.sh-site-footer nav a { font-size:12px; color:var(--sh-muted); width:fit-content; }
.sh-site-footer nav a:hover { color:var(--sh-accent); }
.sh-footer-note { padding-top:4px; }
.sh-footer-note .sh-eyebrow { font-size:9px; letter-spacing:1.5px; }
.sh-site-footer-bottom { max-width:calc(var(--sh-maxw) - 56px); margin:auto; border-top:1px solid #22313e; padding:19px 0 24px; display:flex; justify-content:space-between; gap:20px; color:#8c9fb2; font-size:10px; }
/* Form, account and server details share the same palette. */
.sh-auth { margin:26px auto; box-shadow:0 24px 80px #0003; }
.sh-auth-brand { background:linear-gradient(90deg,#0b1726e8,#0b172650),url('/styles/shardhop/shardhop-worlds-hero.webp') 65% center/cover; }
.sh-auth-logo .sh-brand-mark { display:inline-block; vertical-align:middle; width:30px; height:35px; font-size:0; background:url('/styles/shardhop/shardhop-mark.svg') center/contain no-repeat; }
.sh-auth-lede { color:#c0d0de; }
.sh-input, .sh-main .input { border-color:var(--sh-border); color:var(--sh-text); background:var(--sh-bg); }
.sh-legal { border-radius:14px; }
.sh-server-desc { padding:26px; border:1px solid var(--sh-border); border-radius:14px; background:var(--sh-panel); }
.sh-server-head { padding:18px 0 8px; }
.sh-server-card { box-shadow:0 14px 40px #0002; }
.sh-crumbs { display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
/* Keep XenForo's native navigation, account menus and overlays functional. */
.sh-forum-shell .p-header { display:none; }
.sh-forum-shell .p-nav { background:#0e1926; color:var(--sh-text); box-shadow:none; border-bottom:1px solid var(--sh-border); }
.sh-forum-shell .p-nav-inner { max-width:var(--sh-maxw); padding:0 28px; }
.sh-forum-shell .p-nav-list .p-navEl.is-selected { background:#19312f; color:var(--sh-accent); border-radius:6px; }
.sh-forum-shell .p-nav-list .p-navEl:not(.is-selected):hover { background:#1a2b3c; }
.sh-forum-shell .p-nav-list .p-navEl { font-size:12px; }
.sh-forum-shell .p-nav-list .p-navEl-link { padding-top:13px; padding-bottom:13px; }
.sh-forum-shell .p-navgroup { background:transparent; color:#b2c3d3; }
.sh-forum-shell .p-navgroup-link { border-left-color:var(--sh-border); font-size:12px; }
.sh-forum-shell .p-navgroup-link--logIn, .sh-forum-shell .p-navgroup-link--register { display:none; }
.sh-forum-shell .p-nav-smallLogo img { max-height:29px; }
.sh-forum-shell .p-sectionLinks { background:#0c1420; border-bottom:1px solid #1d2b38; color:var(--sh-muted); font-size:11px; }
.sh-forum-shell .p-sectionLinks-inner { max-width:var(--sh-maxw); padding-left:28px; padding-right:28px; }
.sh-forum-shell .p-body-inner { width:100%; max-width:var(--sh-maxw); padding:24px 28px 58px; }
.sh-forum-shell .p-breadcrumbs { font-size:11px; color:var(--sh-muted); }
.sh-forum-shell .p-breadcrumbs a { color:var(--sh-muted); }
.sh-forum-shell .p-title-value { font-size:27px; font-weight:750; color:var(--sh-text); letter-spacing:-.7px; }
.sh-forum-shell .p-body-header { margin-bottom:24px; }
.sh-forum-shell .p-body-main--withSidebar .p-body-sidebar { width:270px; }
.sh-forum-shell .block-container, .shardhop-shell .block-container { border:1px solid var(--sh-border); border-radius:10px; background:var(--sh-panel); color:var(--sh-text); box-shadow:none; }
.sh-forum-shell .block-header, .sh-forum-shell .block-minorHeader { color:#e4eef5; background:#152231; font-size:13px; font-weight:700; padding:17px 19px; border-bottom:1px solid var(--sh-border); border-radius:10px 10px 0 0; }
.sh-forum-shell .block-header a, .sh-forum-shell .block-minorHeader a { color:inherit; }
.sh-forum-shell .block-body, .shardhop-shell .block-body { background:transparent; }
.sh-forum-shell .block-footer, .sh-forum-shell .block-filterBar, .sh-forum-shell .block-outer-opposite, .sh-forum-shell .block-tabHeader { background:#0e1a27; border-color:var(--sh-border); color:var(--sh-muted); }
.sh-forum-shell .node-body { padding:12px 8px; }
.sh-forum-shell .node-icon { color:var(--sh-accent); font-size:25px; }
.sh-forum-shell .node-title { font-size:16px; font-weight:650; }
.sh-forum-shell .node-title a { color:#e8f3f8; }
.sh-forum-shell .node-title a:hover { color:var(--sh-accent); }
.sh-forum-shell .node-description, .sh-forum-shell .node-stats, .sh-forum-shell .node-extra { color:var(--sh-muted); font-size:12px; }
.sh-forum-shell .node + .node { border-color:var(--sh-border); }
.sh-forum-shell .contentRow-minor, .sh-forum-shell .pairs > dt { color:var(--sh-muted); }
.sh-forum-shell .block-row { padding:14px 18px; }
.sh-forum-shell .button, .sh-forum-shell a.button, .shardhop-shell .button { border-radius:6px; border:1px solid #34495b; background:#17293a; color:#d9e7f0; font-size:12px; box-shadow:none; }
.sh-forum-shell .button.button--primary, .sh-forum-shell a.button.button--primary, .sh-forum-shell .button.button--cta { background:var(--sh-accent); border-color:var(--sh-accent); color:#08271f; font-weight:700; }
.sh-forum-shell .button:hover, .sh-forum-shell a.button:hover { background:#284254; }
.sh-forum-shell .button.button--primary:hover { background:#8cf1d6; color:#08271f; }
.sh-forum-shell .input, .shardhop-shell .input, .sh-forum-shell .inputGroup-text { background:#0b1521; color:var(--sh-text); border-color:#34485c; }
.sh-forum-shell .input:focus { border-color:var(--sh-accent); }
.sh-forum-shell .formRow > dt, .sh-forum-shell .formSubmitRow-bar, .sh-forum-shell .message-cell--user { background:#101c2a; border-color:var(--sh-border); color:#c4d2df; }
.sh-forum-shell .structItem { border-color:var(--sh-border); }
.sh-forum-shell .structItem-minor, .sh-forum-shell .message-attribution, .sh-forum-shell .message-userDetails { color:var(--sh-muted); }
.sh-forum-shell .message-inner { background:var(--sh-panel); color:var(--sh-text); }
.sh-forum-shell .tabs-tab.is-active { color:var(--sh-accent); border-color:var(--sh-accent); }
.shardhop-shell .sh-auth-card--form .block-container,
.shardhop-shell .sh-auth-card--form .block-body { background:transparent; border:0; box-shadow:none; }
.sh-auth-card--form .formRow-labelWrapper { display:flex; align-items:baseline; gap:7px; }
.sh-auth-card--form .formRow-hint { font-size:10px; margin:0; }
.sh-forum-shell .p-footer { background:#0c1521; border-top:0; color:var(--sh-muted); }
.sh-forum-shell .p-footer-inner { max-width:var(--sh-maxw); padding:0 28px 22px; font-size:10px; }
.sh-forum-shell .p-footer-copyright a { color:#8c9fb2; }
.sh-forum-shell .p-footer-row-opposite .p-footer-linkList { display:none; }
.sh-forum-shell .p-footer-rssLink { display:none; }
.sh-forum-shell .p-body-sidebar .shareButtons { font-size:12px; }
.sh-forum-shell .p-body-sidebar .shareButtons-button { color:#99aebe; background:#182839; border-color:#2b4052; }
.sh-forum-hero { position:relative; min-height:306px; display:flex; align-items:center; margin:0 0 30px; padding:40px; border:1px solid #304851; border-radius:15px; overflow:hidden; background:linear-gradient(90deg,#0b1728f5 0%,#0c192cdc 38%,#0c192c18 85%),url('/styles/shardhop/shardhop-worlds-hero.webp') 65% 50%/cover; }
.sh-forum-hero-copy { max-width:560px; position:relative; z-index:1; }
.sh-forum-hero h2 { font-size:37px; line-height:1.14; font-weight:800; letter-spacing:-1.5px; color:#f3f9fd; margin:13px 0; }
.sh-forum-hero h2 em { color:var(--sh-accent); font-style:normal; }
.sh-forum-hero p { color:#bacada; max-width:420px; font-size:13px; line-height:1.75; margin:0 0 22px; }
.sh-forum-actions { display:flex; flex-wrap:wrap; gap:10px; }
.sh-forum-hero-caption { position:absolute; right:28px; bottom:25px; display:flex; align-items:center; gap:10px; color:#c5dfdf; font-size:10px; line-height:1.6; }
.sh-forum-hero-caption strong { color:#f2f9fc; }
.template-forum_list .p-title-value { font-size:22px; }
@media(min-width:901px) { .template-forum_list .p-body-main--withSidebar .p-body-content { padding-right:28px; } }
@media(max-width:900px) { .sh-forum-shell .p-body-main--withSidebar .p-body-sidebar { width:auto; } }
@media(max-width:1050px) {
  .sh-site-header-inner { gap:28px; }
  .sh-site-nav { gap:20px; }
  .sh-site-account { gap:18px; }
  .sh-site-footer-inner { gap:25px; }
  .sh-forum-hero-caption { display:none; }
}
@media(max-width:800px) {
  .sh-site-header-inner { min-height:74px; padding:13px 22px; gap:16px; }
  .sh-site-brand { font-size:23px; }
  .sh-site-brand img { width:30px; height:35px; }
  .sh-site-nav { display:none; }
  .sh-site-account { gap:16px; }
  .sh-mobile-menu { display:block; position:relative; }
  .sh-mobile-menu summary { display:flex; width:38px; height:40px; align-items:center; justify-content:center; flex-direction:column; gap:5px; cursor:pointer; border:1px solid #304253; border-radius:6px; list-style:none; }
  .sh-mobile-menu summary::-webkit-details-marker { display:none; }
  .sh-mobile-menu summary > span { display:block; width:16px; height:2px; background:#d4e4ed; }
  .sh-mobile-menu[open] summary { border-color:var(--sh-accent); }
  .sh-mobile-menu nav { position:absolute; top:49px; right:0; width:240px; padding:10px; border:1px solid #344a5c; background:#112031; border-radius:10px; box-shadow:0 18px 50px #0008; }
  .sh-mobile-menu nav a { display:block; padding:13px; border-radius:5px; color:var(--sh-text); font-size:14px; }
  .sh-mobile-menu nav a:hover { background:#20394b; color:var(--sh-accent); }
  .sh-main { padding:24px 22px 48px; }
  .sh-site-footer-inner { grid-template-columns:1.4fr 1fr 1fr; padding:35px 22px; }
  .sh-footer-note { display:none; }
  .sh-site-footer-bottom { margin:0 22px; max-width:none; }
  .sh-forum-shell .p-body-inner { padding:20px 22px 36px; }
  .sh-forum-hero { padding:30px; min-height:300px; }
  .sh-forum-hero h2 { font-size:32px; }
  .sh-forum-shell .p-nav-inner, .sh-forum-shell .p-sectionLinks-inner { padding-left:22px; padding-right:22px; }
}
@media(max-width:520px) {
  .sh-site-header-inner { min-height:68px; padding:12px 16px; gap:12px; }
  .sh-site-brand { font-size:22px; gap:8px; }
  .sh-site-submit { display:none; }
  .sh-site-login { font-size:12px; max-width:92px; }
  .sh-site-account { gap:0; }
  .sh-main { padding:18px 16px 38px; }
  .sh-site-footer-inner { grid-template-columns:1fr 1fr; gap:30px 20px; padding:32px 16px; }
  .sh-footer-about { grid-column:1/-1; }
  .sh-site-footer-bottom { margin:0 16px; flex-direction:column; gap:8px; }
  .sh-forum-shell .p-body-inner { padding:16px 16px 36px; }
  .sh-forum-hero { padding:26px 22px; min-height:330px; background-position:58% center; }
  .sh-forum-hero h2 { font-size:30px; }
  .sh-forum-hero .sh-eyebrow { font-size:9px; }
  .sh-forum-hero p { font-size:12px; }
  .sh-forum-actions .sh-btn { font-size:12px; padding:11px 12px; }
  .sh-forum-shell .p-nav-inner, .sh-forum-shell .p-sectionLinks-inner { padding-left:12px; padding-right:12px; }
  .sh-forum-shell .p-nav-smallLogo { display:none; }
  .sh-forum-shell .p-nav-menuTrigger { width:auto; display:inline-flex; align-items:center; gap:9px; padding-right:12px; }
  .sh-forum-shell .p-nav-menuTrigger:after { content:'Forum tools'; font-size:11px; }
  .sh-forum-shell .block-container { margin-left:0; margin-right:0; }
  .sh-server-desc { padding:20px; }
  .sh-auth-row { flex-wrap:wrap; }
}
@media(prefers-reduced-motion:reduce) { html { scroll-behavior:auto; } *, *:before, *:after { transition:none !important; animation:none !important; } }

/* ShardHop discovery and rankings. Base theme owns shared chrome and controls. */
.sh-discovery,.sh-game-page{color:#eef4fb}
.sh-discovery [hidden],.sh-game-page [hidden]{display:none!important}
.sh-discovery svg,.sh-game-page svg{fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.sh-discovery .sh-discovery-sr,.sh-game-page .sh-game-sr{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.sh-discovery a,.sh-game-page a{text-decoration:none}
.sh-discovery a:focus-visible,.sh-discovery button:focus-visible,.sh-game-page a:focus-visible{outline:2px solid #54e1c0;outline-offset:5px}
.sh-discovery p,.sh-game-page p{margin:0}
.sh-discovery .sh-discovery-eyebrow,.sh-game-page .sh-game-eyebrow{margin:0 0 13px;color:#54e1c0;font-size:10px;font-weight:750;line-height:1.5;letter-spacing:2px;text-transform:uppercase}
.sh-discovery .sh-btn,.sh-game-page .sh-btn{gap:14px}
/* Cinematic introduction */
.sh-discovery .sh-discovery-hero{position:relative;isolation:isolate;display:flex;align-items:center;min-height:534px;padding:64px 52px;margin:0 0 72px;overflow:hidden;border:1px solid #253446;border-radius:20px;background:#111d2b}
.sh-discovery .sh-discovery-hero-art{position:absolute;z-index:-2;inset:0;background:#111d2b url('/styles/shardhop/shardhop-worlds-hero.webp') center/cover no-repeat}
.sh-discovery .sh-discovery-hero:before{content:'';position:absolute;z-index:-1;inset:0;background:linear-gradient(90deg,rgba(8,17,28,.97) 0%,rgba(8,17,28,.88) 25%,rgba(8,17,28,.56) 50%,rgba(8,17,28,.08) 100%)}
.sh-discovery .sh-discovery-hero:after{content:'';pointer-events:none;position:absolute;inset:0;border-radius:inherit;box-shadow:inset 0 0 100px rgba(9,15,26,.3)}
.sh-discovery .sh-discovery-hero-copy{position:relative;z-index:1;max-width:690px}
.sh-discovery .sh-discovery-hero .sh-discovery-eyebrow{display:flex;align-items:center;gap:9px;font-size:9px;letter-spacing:1.8px;margin-bottom:24px}
.sh-discovery .sh-discovery-eyebrow>span{flex:0 0 5px;width:5px;height:5px;border-radius:50%;background:#54e1c0;box-shadow:0 0 12px rgba(84,225,192,.5)}
.sh-discovery .sh-discovery-hero h1{margin:0 0 24px;color:#f4f8fc;font-size:clamp(42px,5.25vw,68px);font-weight:750;line-height:1.04;letter-spacing:-3.5px}
.sh-discovery .sh-discovery-hero h1 em{color:#54e1c0;font-style:normal}
.sh-discovery .sh-discovery-intro{max-width:490px;color:#b2c2d1;font-size:15px;line-height:1.85}
.sh-discovery .sh-discovery-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:29px}
.sh-discovery .sh-discovery-hero-note{display:flex;align-items:center;gap:7px;margin-top:25px;color:#91a8ba;font-size:11px;line-height:1.5}
.sh-discovery .sh-discovery-hero-note svg{width:15px;height:15px;flex-shrink:0;color:#54e1c0}
.sh-discovery .sh-discovery-hero-caption{position:absolute;right:32px;bottom:28px;display:flex;align-items:center;gap:11px;color:#d6e4e9;font-size:8px;font-weight:600;letter-spacing:1.6px;text-transform:uppercase}
.sh-discovery .sh-discovery-hero-caption>span{display:block;width:22px;height:1px;background:#54e1c0}
/* Browse games */
.sh-discovery .sh-discovery-games{scroll-margin-top:105px}
.sh-discovery .sh-discovery-section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:28px;margin-bottom:27px}
.sh-discovery .sh-discovery-section-head .sh-discovery-eyebrow{margin-bottom:7px}
.sh-discovery .sh-discovery-section-head h2{margin:0 0 9px;color:#eef4fb;font-size:32px;font-weight:700;line-height:1.2;letter-spacing:-1px}
.sh-discovery .sh-discovery-section-head p:not(.sh-discovery-eyebrow){color:#96a9bc;font-size:13px;line-height:1.7}
.sh-discovery .sh-discovery-search{display:flex;align-items:center;position:relative;width:258px;flex-shrink:0;height:43px;border:1px solid #293749;border-radius:8px;background:#111b29;transition:border-color .2s}
.sh-discovery .sh-discovery-search:focus-within{border-color:#54e1c0;box-shadow:0 0 0 2px rgba(84,225,192,.1)}
.sh-discovery .sh-discovery-search>svg{position:absolute;left:14px;width:17px;height:17px;color:#8195aa;pointer-events:none}
.sh-discovery .sh-discovery-search input{appearance:none;width:100%;height:100%;min-width:0;padding:0 38px 0 41px;border:0;border-radius:8px;outline:0;background:transparent;box-shadow:none;color:#eef4fb;font:inherit;font-size:12px}
.sh-discovery .sh-discovery-search input::placeholder{color:#8a9bae;opacity:1}
.sh-discovery .sh-discovery-search input::-webkit-search-cancel-button{appearance:none}
.sh-discovery .sh-discovery-search-clear{position:absolute;right:5px;top:5px;width:32px;height:31px;padding:0;border:0;border-radius:4px;background:transparent;color:#c7d7e4;font-size:21px;line-height:1;cursor:pointer}
.sh-discovery .sh-discovery-search-clear:hover{background:#223348}
.sh-discovery .sh-discovery-game-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:23px}
.sh-discovery .sh-discovery-game{display:flex;flex-direction:column;min-width:0;overflow:hidden;background:#111d2b;border:1px solid #263446;border-radius:12px;color:#eef4fb;transition:transform .2s,border-color .2s,box-shadow .2s}
.sh-discovery .sh-discovery-game:hover{transform:translateY(-4px);border-color:#497669;box-shadow:0 16px 35px rgba(0,0,0,.18)}
.sh-discovery .sh-discovery-game-art,.sh-game-page .sh-game-hero-art{background-image:url('/styles/shardhop/shardhop-game-worlds.webp');background-size:300% 200%;background-repeat:no-repeat;background-color:#24394a}
.sh-discovery .sh-world--rsps,.sh-game-page .sh-world--rsps{background-position:0 0}
.sh-discovery .sh-world--wow,.sh-game-page .sh-world--wow{background-position:50% 0}
.sh-discovery .sh-world--minecraft,.sh-game-page .sh-world--minecraft{background-position:100% 0}
.sh-discovery .sh-world--fivem,.sh-game-page .sh-world--fivem{background-position:0 100%}
.sh-discovery .sh-world--flyff,.sh-game-page .sh-world--flyff{background-position:50% 100%}
.sh-discovery .sh-world--tales-of-pirates,.sh-game-page .sh-world--tales-of-pirates{background-position:100% 100%}
.sh-discovery .sh-discovery-game-art{position:relative;aspect-ratio:3/2;overflow:hidden;border-bottom:1px solid #293a4b}
.sh-discovery .sh-discovery-game-art:after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,18,28,.03) 50%,rgba(8,18,28,.65) 100%)}
.sh-discovery .sh-discovery-game-number{position:absolute;z-index:1;bottom:18px;left:22px;color:#eff8fc;font-size:9px;font-weight:600;letter-spacing:1.8px;text-transform:uppercase;text-shadow:0 1px 6px #0a1726}
.sh-discovery .sh-discovery-game-arrow{position:absolute;z-index:1;bottom:15px;right:18px;width:30px;height:30px;display:grid;place-items:center;border:1px solid rgba(213,235,245,.35);border-radius:50%;background:rgba(9,20,31,.4);color:#f2f9ff;font-size:20px;line-height:1;transition:background .2s,color .2s}
.sh-discovery .sh-discovery-game:hover .sh-discovery-game-arrow{background:#54e1c0;border-color:#54e1c0;color:#091b21}
.sh-discovery .sh-discovery-game-content{display:flex;flex-direction:column;flex:1;padding:22px}
.sh-discovery .sh-discovery-game h3{margin:0 0 10px;color:#f0f5fb;font-size:19px;line-height:1.3;font-weight:650;letter-spacing:-.4px}
.sh-discovery .sh-discovery-game-content>p{flex:1;min-height:44px;margin:0 0 23px;color:#96a9bc;font-size:12px;line-height:1.8}
.sh-discovery .sh-discovery-game-foot{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:10px;padding-top:15px;border-top:1px solid #273647;font-size:10px;line-height:1.5}
.sh-discovery .sh-discovery-game-foot>span:first-child{color:#9aaec1}
.sh-discovery .sh-discovery-game-foot>span:last-child{color:#54e1c0;font-weight:650}
.sh-discovery .sh-discovery-game-foot>span:last-child>span{margin-left:5px}
.sh-discovery .sh-discovery-search-empty{padding:52px 24px;text-align:center;border:1px dashed #34465a;border-radius:12px;background:#111d2b}
.sh-discovery .sh-discovery-search-empty h3{margin:0 0 12px;font-size:23px}
.sh-discovery .sh-discovery-search-empty p{margin-bottom:23px;color:#96a9bc;font-size:14px}
/* Shared values and community invitation */
.sh-discovery .sh-discovery-trust{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px;margin:44px 0 54px;padding:26px 0;border-top:1px solid #223244;border-bottom:1px solid #223244}
.sh-discovery .sh-discovery-trust-item{display:flex;align-items:flex-start;gap:14px}
.sh-discovery .sh-discovery-trust-item>svg{width:23px;height:23px;flex-shrink:0;color:#54e1c0;margin-top:2px}
.sh-discovery .sh-discovery-trust-item h3{margin:0 0 7px;color:#dfeaf4;font-size:12px;line-height:1.5;font-weight:650}
.sh-discovery .sh-discovery-trust-item p{max-width:265px;color:#8da2b6;font-size:11px;line-height:1.8}
.sh-discovery .sh-discovery-community{position:relative;overflow:hidden;display:grid;grid-template-columns:1.25fr 1fr;gap:60px;padding:45px 46px;border:1px solid #293b4b;border-radius:15px;background:radial-gradient(ellipse at 0 100%,rgba(26,93,86,.13),transparent 65%),#101c29}
.sh-discovery .sh-discovery-community-copy h2{margin:0 0 18px;color:#eff5fb;font-size:32px;line-height:1.2;font-weight:650;letter-spacing:-1px}
.sh-discovery .sh-discovery-community-copy>p:not(.sh-discovery-eyebrow),.sh-discovery .sh-discovery-owner>p:not(.sh-discovery-eyebrow){color:#96a9bc;font-size:13px;line-height:1.85;max-width:405px}
.sh-discovery .sh-discovery-community-copy>.sh-btn{margin-top:25px}
.sh-discovery .sh-discovery-owner{align-self:center;padding-left:44px;border-left:1px solid #2a3b4a}
.sh-discovery .sh-discovery-owner-icon{display:grid;place-items:center;width:43px;height:43px;margin-bottom:18px;color:#e1b76d;border:1px solid #514834;border-radius:9px;background:rgba(202,158,85,.06)}
.sh-discovery .sh-discovery-owner-icon svg{width:25px;height:25px}
.sh-discovery .sh-discovery-owner .sh-discovery-eyebrow{color:#e1b76d;margin-bottom:8px;font-size:9px}
.sh-discovery .sh-discovery-owner h3{color:#eef4fb;font-size:19px;line-height:1.4;letter-spacing:-.4px;margin:0 0 12px}
.sh-discovery .sh-discovery-text-link{display:inline-flex;align-items:center;gap:14px;margin-top:21px;color:#54e1c0;font-size:12px;font-weight:650}
.sh-discovery .sh-discovery-text-link:hover,.sh-game-page .sh-game-text-link:hover{text-decoration:underline;text-underline-offset:4px}
/* Per-game rankings */
.sh-game-page .sh-game-breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:11px;margin:0 0 24px;color:#8297aa;font-size:11px;line-height:1.7}
.sh-game-page .sh-game-breadcrumb a{color:#a9bccd}
.sh-game-page .sh-game-breadcrumb a:hover{color:#54e1c0}
.sh-game-page .sh-game-breadcrumb>span[aria-current]{color:#d9e4ee}
.sh-game-page .sh-game-hero{position:relative;isolation:isolate;display:grid;grid-template-columns:1.3fr 1fr;overflow:hidden;min-height:315px;border:1px solid #2b3c4d;border-radius:15px;background:#111d2b}
.sh-game-page .sh-game-hero-copy{align-self:center;padding:43px}
.sh-game-page .sh-game-hero h1{margin:0 0 17px;color:#eef4fb;font-size:clamp(30px,3.3vw,44px);font-weight:700;line-height:1.1;letter-spacing:-1.6px}
.sh-game-page .sh-game-hero-copy>p:not(.sh-game-eyebrow){max-width:530px;color:#9eb1c4;font-size:14px;line-height:1.8}
.sh-game-page .sh-game-hero-actions{display:flex;flex-wrap:wrap;align-items:center;gap:24px;margin-top:25px}
.sh-game-page .sh-game-text-link{color:#aac0d0;font-size:12px;font-weight:600}
.sh-game-page .sh-game-hero-art{position:relative;align-self:center;width:100%;aspect-ratio:3/2}
.sh-game-page .sh-game-hero-art:after{content:'';position:absolute;inset:-1px;background:linear-gradient(90deg,#111d2b,transparent 25%),linear-gradient(0deg,#111d2b,transparent 25%,transparent 75%,#111d2b)}
.sh-game-page .sh-game-rankings{margin-top:47px}
.sh-game-page .sh-game-ranking-head{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:23px}
.sh-game-page .sh-game-ranking-head .sh-game-eyebrow{font-size:9px;margin-bottom:7px}
.sh-game-page .sh-game-ranking-head h2{display:flex;align-items:center;gap:11px;margin:0;color:#eef4fb;font-size:24px;line-height:1.3;font-weight:650;letter-spacing:-.5px}
.sh-game-page .sh-game-ranking-head h2>span{display:inline-grid;place-items:center;min-width:28px;height:25px;padding:0 7px;border:1px solid #2b3f50;border-radius:5px;color:#9db6c9;background:#132231;font-size:12px;font-weight:500;letter-spacing:0}
.sh-game-page .sh-game-order{display:flex;align-items:center;gap:9px;padding-bottom:4px;color:#91a8bc;font-size:11px;white-space:nowrap}
.sh-game-page .sh-game-order svg{width:17px;height:17px;color:#54e1c0}
.sh-game-page .sh-game-rank-list{list-style:none;padding:0;margin:0;display:grid;gap:12px}
.sh-game-page .sh-game-rank-row{display:grid;grid-template-columns:44px minmax(0,1fr) 100px auto;align-items:center;gap:24px;padding:26px;background:#111d2b;border:1px solid #2a3a4b;border-radius:11px}
.sh-game-page .sh-game-rank-position{color:#87a3b9;font-size:24px;font-weight:650;letter-spacing:-1px}
.sh-game-page .sh-game-rank-position>span[aria-hidden]{font-size:12px;margin-right:2px}
.sh-game-page .sh-game-rank-row:first-child .sh-game-rank-position{color:#e1b76d}
.sh-game-page .sh-game-rank-main{min-width:0}
.sh-game-page .sh-game-rank-main h3{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin:0 0 7px;font-size:20px;font-weight:650;line-height:1.4;letter-spacing:-.4px}
.sh-game-page .sh-game-rank-main h3 a{color:#eff4f9;overflow-wrap:anywhere}
.sh-game-page .sh-game-rank-main h3 a:hover{color:#54e1c0}
.sh-game-page .sh-game-featured{display:inline-block;color:#e1b76d;border:1px solid #5b4b2f;border-radius:4px;padding:3px 6px;font-size:8px;font-weight:650;letter-spacing:1px;text-transform:uppercase;background:rgba(193,146,69,.07)}
.sh-game-page .sh-game-rank-tagline{color:#a0b4c6;font-size:12px;line-height:1.7;overflow-wrap:anywhere}
.sh-game-page .sh-game-rank-meta{display:flex;flex-wrap:wrap;gap:7px;margin-top:12px}
.sh-game-page .sh-game-rank-meta>span{padding:3px 7px;border:1px solid #2c3d4e;border-radius:4px;color:#9db4c7;font-size:9px;line-height:1.5}
.sh-game-page .sh-game-rank-meta .sh-game-rating{color:#d8b87d}
.sh-game-page .sh-game-rank-votes{text-align:center}
.sh-game-page .sh-game-rank-votes strong{display:block;color:#54e1c0;font-size:25px;line-height:1.2;font-weight:650}
.sh-game-page .sh-game-rank-votes>span{display:block;margin-top:5px;color:#88a0b5;font-size:9px;line-height:1.4}
.sh-game-page .sh-game-empty{position:relative;overflow:hidden;padding:53px 30px;border:1px solid #293b4b;border-radius:12px;background:radial-gradient(ellipse at 50% 0,rgba(37,82,80,.13),transparent 75%),#101b29;text-align:center}
.sh-game-page .sh-game-empty-icon{display:grid;place-items:center;width:66px;height:66px;margin:0 auto 24px;border:1px solid #325048;border-radius:17px;background:rgba(66,182,154,.05);color:#54e1c0;transform:rotate(-5deg)}
.sh-game-page .sh-game-empty-icon svg{width:37px;height:37px;transform:rotate(5deg);stroke-width:1.3}
.sh-game-page .sh-game-empty .sh-game-eyebrow{font-size:9px;margin-bottom:11px}
.sh-game-page .sh-game-empty h3{margin:0 auto 15px;max-width:540px;color:#edf4fa;font-size:26px;font-weight:650;line-height:1.25;letter-spacing:-.7px}
.sh-game-page .sh-game-empty>p:not(.sh-game-eyebrow){max-width:480px;margin:0 auto;color:#92a8bb;font-size:13px;line-height:1.85}
.sh-game-page .sh-game-empty-actions{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:23px;margin-top:27px}
.sh-game-page .sh-game-ranking-note{display:flex;justify-content:center;align-items:flex-start;gap:8px;margin-top:24px;color:#839bae;font-size:10px;line-height:1.7}
.sh-game-page .sh-game-ranking-note svg{flex-shrink:0;width:15px;height:15px;margin-top:1px;color:#63b39e}
@media(max-width:1000px){
.sh-discovery .sh-discovery-hero{padding:52px 36px;min-height:480px}
.sh-discovery .sh-discovery-hero h1{font-size:57px;letter-spacing:-2.8px}
.sh-discovery .sh-discovery-game-grid{gap:18px}
.sh-discovery .sh-discovery-game-content{padding:19px}
.sh-discovery .sh-discovery-game h3{font-size:17px}
.sh-discovery .sh-discovery-community{gap:30px;padding:35px}
.sh-discovery .sh-discovery-owner{padding-left:30px}
.sh-discovery .sh-discovery-community-copy h2{font-size:29px}
.sh-game-page .sh-game-rank-row{gap:17px;grid-template-columns:34px minmax(0,1fr) 85px auto;padding:23px}
}
@media(max-width:800px){
.sh-discovery .sh-discovery-hero{margin-bottom:48px;min-height:455px}
.sh-discovery .sh-discovery-hero:before{background:linear-gradient(90deg,rgba(8,17,28,.96),rgba(8,17,28,.73) 58%,rgba(8,17,28,.32))}
.sh-discovery .sh-discovery-hero h1{font-size:52px}
.sh-discovery .sh-discovery-hero-caption{display:none}
.sh-discovery .sh-discovery-game-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.sh-discovery .sh-discovery-game h3{font-size:19px}
.sh-discovery .sh-discovery-trust{gap:22px}
.sh-discovery .sh-discovery-trust-item{display:block}
.sh-discovery .sh-discovery-trust-item>svg{margin-bottom:12px}
.sh-discovery .sh-discovery-community{gap:27px;padding:29px}
.sh-discovery .sh-discovery-community-copy h2{font-size:26px}
.sh-discovery .sh-discovery-owner{padding-left:26px}
.sh-game-page .sh-game-hero-copy{padding:31px}
.sh-game-page .sh-game-hero{grid-template-columns:1.4fr 1fr}
.sh-game-page .sh-game-hero-actions{gap:16px}
.sh-game-page .sh-game-ranking-head{align-items:flex-start;flex-direction:column;gap:15px}
.sh-game-page .sh-game-rank-row{grid-template-columns:30px minmax(0,1fr) 85px;gap:17px}
.sh-game-page .sh-game-rank-row>.sh-btn{grid-column:2/4;justify-self:start}
}
@media(max-width:560px){
.sh-discovery .sh-discovery-hero{min-height:490px;padding:35px 23px;border-radius:13px;margin-bottom:39px}
.sh-discovery .sh-discovery-hero-art{background-position:62% center}
.sh-discovery .sh-discovery-hero:before{background:linear-gradient(90deg,rgba(8,17,28,.94),rgba(8,17,28,.58)),linear-gradient(0deg,rgba(8,17,28,.8),transparent 50%)}
.sh-discovery .sh-discovery-hero .sh-discovery-eyebrow{font-size:8px;letter-spacing:1.25px;margin-bottom:24px;max-width:260px}
.sh-discovery .sh-discovery-hero h1{font-size:clamp(37px,10vw,48px);letter-spacing:-2px;margin-bottom:19px}
.sh-discovery .sh-discovery-intro{font-size:13px;line-height:1.8}
.sh-discovery .sh-discovery-desktop-break{display:none}
.sh-discovery .sh-discovery-actions{gap:10px;margin-top:26px}
.sh-discovery .sh-discovery-actions .sh-btn{font-size:11px;padding-left:14px;padding-right:14px;gap:9px}
.sh-discovery .sh-discovery-hero-note{font-size:9px;gap:6px;align-items:flex-start;margin-top:20px}
.sh-discovery .sh-discovery-hero-note svg{width:13px;height:13px}
.sh-discovery .sh-discovery-section-head{align-items:stretch;flex-direction:column;gap:20px;margin-bottom:20px}
.sh-discovery .sh-discovery-section-head h2{font-size:29px}
.sh-discovery .sh-discovery-section-head .sh-discovery-eyebrow{font-size:9px}
.sh-discovery .sh-discovery-section-head p:not(.sh-discovery-eyebrow){font-size:12px}
.sh-discovery .sh-discovery-search{width:100%}
.sh-discovery .sh-discovery-game-grid{grid-template-columns:minmax(0,1fr);gap:18px}
.sh-discovery .sh-discovery-game-content{padding:23px}
.sh-discovery .sh-discovery-game h3{font-size:21px}
.sh-discovery .sh-discovery-game-content>p{min-height:0;font-size:13px;margin-bottom:20px}
.sh-discovery .sh-discovery-game-foot{font-size:11px}
.sh-discovery .sh-discovery-trust{grid-template-columns:minmax(0,1fr);gap:24px;margin:33px 0;padding:28px 0}
.sh-discovery .sh-discovery-trust-item{display:flex;gap:17px}
.sh-discovery .sh-discovery-trust-item h3{font-size:13px}
.sh-discovery .sh-discovery-trust-item p{max-width:none;font-size:12px}
.sh-discovery .sh-discovery-community{grid-template-columns:minmax(0,1fr);gap:29px;padding:29px 23px}
.sh-discovery .sh-discovery-community-copy h2{font-size:29px}
.sh-discovery .sh-discovery-owner{border-left:0;border-top:1px solid #2a3b4a;padding:28px 0 0}
.sh-discovery .sh-discovery-owner h3{font-size:20px}
.sh-game-page .sh-game-breadcrumb{font-size:10px;gap:8px}
.sh-game-page .sh-game-hero{display:flex;flex-direction:column-reverse;min-height:0}
.sh-game-page .sh-game-hero-art{width:100%}
.sh-game-page .sh-game-hero-art:after{background:linear-gradient(0deg,#111d2b,transparent 35%)}
.sh-game-page .sh-game-hero-copy{position:relative;z-index:1;padding:8px 24px 29px;margin-top:-18px;width:100%;box-sizing:border-box}
.sh-game-page .sh-game-hero h1{font-size:34px;letter-spacing:-1px}
.sh-game-page .sh-game-hero-copy>p:not(.sh-game-eyebrow){font-size:13px}
.sh-game-page .sh-game-hero-actions{gap:19px}
.sh-game-page .sh-game-rankings{margin-top:33px}
.sh-game-page .sh-game-ranking-head h2{font-size:21px}
.sh-game-page .sh-game-order{font-size:10px}
.sh-game-page .sh-game-rank-row{gap:17px 12px;padding:19px 16px;grid-template-columns:25px minmax(0,1fr)}
.sh-game-page .sh-game-rank-position{align-self:start;font-size:20px;padding-top:2px}
.sh-game-page .sh-game-rank-main h3{font-size:18px}
.sh-game-page .sh-game-rank-votes{grid-column:2;display:flex;align-items:baseline;gap:8px;text-align:left}
.sh-game-page .sh-game-rank-votes strong{font-size:21px}
.sh-game-page .sh-game-rank-row>.sh-btn{grid-column:2}
.sh-game-page .sh-game-empty{padding:36px 21px}
.sh-game-page .sh-game-empty h3{font-size:24px}
.sh-game-page .sh-game-empty>p:not(.sh-game-eyebrow){font-size:12px}
.sh-game-page .sh-game-empty-actions{flex-direction:column;gap:22px}
.sh-game-page .sh-game-ranking-note{justify-content:flex-start;font-size:9px}
}
@media(prefers-reduced-motion:reduce){
.sh-discovery .sh-discovery-game,.sh-discovery .sh-discovery-game-arrow,.sh-discovery .sh-discovery-search{transition:none}
.sh-discovery .sh-discovery-game:hover{transform:none}
}
