:root {
	--lv-blue: #5d93c5;
	--lv-blue-accessible: #356f9f;
	--lv-blue-dark: #173a5e;
	--lv-blue-soft: #cbd9e8;
	--lv-orange: #e49b3c;
	--lv-orange-dark: #bf721d;
	--lv-ink: #1e1e1e;
	--lv-muted: #626262;
	--lv-border: #8f959d;
	--lv-background: #fafafa;
	--lv-surface: #ffffff;
	--lv-surface-soft: #f0f0f0;
	--lv-success: #6cb868;
	--lv-error: #cf7467;
	--lv-warning: #f1df67;
	--lv-radius-sm: 12px;
	--lv-radius: 20px;
	--lv-radius-lg: 30px;
	--lv-shadow: 0 20px 55px rgba(23, 58, 94, 0.12);
	--lv-shadow-soft: 0 10px 30px rgba(23, 58, 94, 0.08);
	--lv-container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--lv-background);
	color: var(--lv-ink);
	font-family: "Poppins", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

body.lv-menu-open {
	overflow: hidden;
}

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

img {
	height: auto;
}

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

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
	box-shadow: 0 0 0 6px var(--lv-blue-dark);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: fixed;
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: #fff;
	border-radius: 8px;
	color: var(--lv-blue-dark);
	box-shadow: var(--lv-shadow);
}

::placeholder {
	color: var(--lv-muted);
	opacity: 1;
}

.lv-container {
	width: min(calc(100% - 40px), var(--lv-container));
	margin-inline: auto;
}

.lv-reading-width {
	max-width: 900px;
}

.lv-section,
.lv-page {
	padding: 72px 0;
}

.lv-section--soft {
	background: var(--lv-surface-soft);
	border-radius: var(--lv-radius-lg);
	padding-inline: clamp(18px, 4vw, 52px);
}

.lv-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 10px;
	color: var(--lv-blue-accessible);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.lv-eyebrow::before {
	width: 23px;
	height: 3px;
	content: "";
	background: var(--lv-orange);
	border-radius: 999px;
}

.lv-section-heading,
.lv-page-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 34px;
}

.lv-page-header {
	align-items: flex-start;
	flex-direction: column;
	padding: 22px 0 10px;
}

.lv-page-header--split {
	align-items: end;
	flex-direction: row;
}

.lv-section-heading h2,
.lv-page-header h1,
.lv-article__header h1 {
	max-width: 850px;
	margin: 0;
	color: var(--lv-blue-dark);
	font-size: clamp(2rem, 4vw, 3.2rem);
	letter-spacing: -0.035em;
	line-height: 1.14;
}

.lv-page-header p,
.lv-page-header__text,
.lv-section-heading p {
	max-width: 670px;
	margin: 10px 0 0;
	color: var(--lv-muted);
}

.lv-button-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.lv-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 12px 22px;
	border: 2px solid transparent;
	background: transparent;
	border-radius: 999px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lv-button svg {
	width: 19px;
	height: 19px;
}

.lv-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(23, 58, 94, 0.16);
}

.lv-button--primary {
	background: var(--lv-blue-accessible);
	color: #fff;
}

.lv-button--primary:hover {
	background: var(--lv-blue-dark);
}

.lv-button--secondary {
	background: var(--lv-orange);
	color: var(--lv-ink);
}

.lv-button--light {
	background: #fff;
	color: var(--lv-blue-dark);
}

.lv-button--outline {
	border-color: var(--lv-border);
	color: var(--lv-blue-dark);
}

.lv-button--outline-light {
	border-color: #fff;
	color: #fff;
}

.lv-text-link {
	display: inline-flex;
	flex: none;
	align-items: center;
	gap: 8px;
	color: var(--lv-blue-dark);
	font-size: 14px;
	font-weight: 700;
}

.lv-text-link::after {
	content: "→";
	color: var(--lv-orange-dark);
	font-size: 18px;
	transition: transform 180ms ease;
}

.lv-text-link:hover::after {
	transform: translateX(4px);
}

.lv-tag,
.lv-term-list a {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	padding: 7px 12px;
	background: var(--lv-orange);
	border-radius: 999px;
	color: var(--lv-ink);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.07em;
	line-height: 1;
	text-transform: uppercase;
}

.lv-term-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* Header */
.lv-topbar {
	background: var(--lv-blue-dark);
	color: #fff;
	font-size: 12px;
}

.lv-topbar__inner {
	display: flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 18px;
	text-align: center;
}

.lv-topbar a {
	color: var(--lv-warning);
	font-weight: 700;
}

.lv-topbar .lv-donation-button {
	display: inline-flex;
	min-height: 26px;
	align-items: center;
	padding: 4px 12px;
	background: var(--lv-orange);
	border-radius: 999px;
	color: var(--lv-ink);
	line-height: 1;
}

.lv-topbar .lv-donation-button:hover {
	background: var(--lv-warning);
}

.lv-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	background: rgba(250, 250, 250, 0.96);
	border-bottom: 1px solid rgba(217, 220, 225, 0.85);
	backdrop-filter: blur(14px);
}

.admin-bar .lv-header {
	top: 32px;
}

.lv-header__inner {
	display: grid;
	min-height: 92px;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 34px;
}

.lv-logo {
	display: inline-flex;
	align-items: center;
	color: var(--lv-blue-dark);
}

.lv-logo__image {
	width: clamp(180px, 17vw, 230px);
	height: auto;
}

.lv-navigation {
	justify-self: center;
}

.lv-menu,
.lv-footer-menu,
.lv-legal-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.lv-menu a {
	position: relative;
	display: block;
	padding: 16px 0;
	font-size: 13px;
	font-weight: 600;
}

.lv-menu a::after {
	position: absolute;
	right: 0;
	bottom: 7px;
	left: 0;
	height: 3px;
	content: "";
	background: var(--lv-orange);
	border-radius: 999px;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.lv-menu a:hover::after,
.lv-menu .current-menu-item a::after,
.lv-menu .current_page_item a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.lv-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.lv-icon-button {
	display: grid;
	width: 43px;
	height: 43px;
	padding: 0;
	place-items: center;
	border: 1px solid var(--lv-border);
	background: var(--lv-surface);
	border-radius: 50%;
	color: var(--lv-blue-dark);
	cursor: pointer;
}

.lv-icon-button svg {
	width: 20px;
	height: 20px;
}

.lv-menu-toggle {
	display: none;
}

.lv-search-panel {
	padding: 18px 0;
	background: var(--lv-surface);
	border-top: 1px solid var(--lv-border);
	box-shadow: 0 15px 30px rgba(23, 58, 94, 0.08);
}

.lv-search-form {
	display: flex;
	width: 100%;
	gap: 10px;
}

.lv-search-form input {
	min-width: 0;
	min-height: 50px;
	flex: 1;
	padding: 10px 18px;
	border: 1px solid var(--lv-border);
	background: var(--lv-background);
	border-radius: 999px;
}

/* Hero */
.lv-hero {
	padding: 36px 0 52px;
}

.lv-hero__grid {
	position: relative;
	display: grid;
	min-height: 570px;
	grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
	align-items: center;
	gap: 36px;
	overflow: hidden;
	padding: clamp(38px, 6vw, 76px);
	background: var(--lv-blue-dark);
	border-radius: var(--lv-radius-lg);
	box-shadow: var(--lv-shadow);
	color: #fff;
}

.lv-hero__grid::before {
	position: absolute;
	top: -160px;
	right: 20%;
	width: 410px;
	height: 410px;
	content: "";
	border: 2px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
}

.lv-hero__content {
	position: relative;
	z-index: 2;
}

.lv-hero .lv-eyebrow {
	color: var(--lv-warning);
}

.lv-hero h1 {
	max-width: 690px;
	margin: 0;
	color: #fff;
	font-size: clamp(3rem, 6vw, 5rem);
	letter-spacing: -0.055em;
	line-height: 1.03;
}

.lv-hero__text {
	max-width: 650px;
	margin: 24px 0 32px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 18px;
}

.lv-hero__art {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: 420px;
	place-items: center;
}

.lv-hero__image {
	display: block;
	width: min(100%, 425px);
	height: auto;
	filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.2));
}

.lv-quick-search {
	position: relative;
	z-index: 5;
	margin-top: -28px;
}

.lv-quick-search form {
	display: grid;
	grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 25px 30px;
	background: var(--lv-surface);
	border: 1px solid var(--lv-border);
	border-radius: var(--lv-radius);
	box-shadow: var(--lv-shadow);
}

.lv-quick-search h2 {
	margin: 0;
	color: var(--lv-blue-dark);
	font-size: 20px;
}

.lv-search-input {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 16px;
	border: 1px solid var(--lv-border);
	background: var(--lv-background);
	border-radius: 999px;
}

.lv-search-input svg {
	width: 19px;
	height: 19px;
	color: var(--lv-blue-accessible);
}

.lv-search-input input {
	width: 100%;
	min-height: 48px;
	border: 0;
	outline: 0;
	background: transparent;
}

.lv-search-input:focus-within {
	outline: 3px solid #fff;
	outline-offset: 3px;
	box-shadow: 0 0 0 6px var(--lv-blue-dark);
}

.lv-search-input input:focus-visible {
	outline: 0;
	box-shadow: none;
}

/* Cards */
.lv-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.lv-card {
	overflow: hidden;
	background: var(--lv-surface);
	border: 1px solid var(--lv-border);
	border-radius: var(--lv-radius);
	box-shadow: var(--lv-shadow-soft);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.lv-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--lv-shadow);
}

.lv-card__media {
	position: relative;
	display: block;
	height: 230px;
	overflow: hidden;
	background: var(--lv-blue-soft);
}

.lv-card__media > img,
.lv-featured-game__media > img,
.lv-game-hero__media > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lv-card__media .lv-tag {
	position: absolute;
	bottom: 16px;
	left: 16px;
}

.lv-card__body {
	padding: 24px;
}

.lv-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 12px;
	color: var(--lv-muted);
	font-size: 11px;
}

.lv-card h2,
.lv-card h3 {
	margin: 0 0 12px;
	color: var(--lv-blue-dark);
	font-size: 21px;
	line-height: 1.32;
}

.lv-card h2 a:hover,
.lv-card h3 a:hover {
	color: var(--lv-blue-accessible);
}

.lv-card__body > p:last-child {
	margin: 0;
	color: var(--lv-muted);
	font-size: 14px;
}

.lv-placeholder-art {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.lv-empty-state {
	grid-column: 1 / -1;
	display: grid;
	min-height: 280px;
	place-items: center;
	padding: 28px;
	background: var(--lv-surface);
	border: 1px dashed var(--lv-border);
	border-radius: var(--lv-radius);
	text-align: center;
}

.lv-empty-state .lv-placeholder-art {
	width: 160px;
	height: 110px;
	border-radius: 14px;
}

.lv-empty-state h2,
.lv-empty-state h3 {
	margin: 18px 0 4px;
	color: var(--lv-blue-dark);
}

.lv-empty-state p {
	max-width: 520px;
	margin: 0;
	color: var(--lv-muted);
}

/* Homepage feature and CTA */
.lv-featured-game {
	padding: 0 0 72px;
}

.lv-featured-game__grid {
	display: grid;
	min-height: 420px;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	background: var(--lv-blue-dark);
	border-radius: var(--lv-radius-lg);
	box-shadow: var(--lv-shadow);
	color: #fff;
}

.lv-featured-game__media {
	min-height: 420px;
}

.lv-featured-game__content,
.lv-featured-game__empty {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: clamp(34px, 6vw, 72px);
}

.lv-featured-game__empty {
	min-height: 320px;
	background: var(--lv-blue-dark);
	border-radius: var(--lv-radius-lg);
	box-shadow: var(--lv-shadow);
	color: #fff;
}

.lv-featured-game__content h2,
.lv-featured-game__empty h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
}

.lv-featured-game__content > p:not(.lv-eyebrow),
.lv-featured-game__empty > p:not(.lv-eyebrow) {
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.72);
}

.lv-featured-game__content .lv-eyebrow,
.lv-featured-game__empty .lv-eyebrow {
	color: var(--lv-warning);
}

.lv-contact-cta {
	padding: 0 0 72px;
}

.lv-contact-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: clamp(32px, 6vw, 60px);
	background: var(--lv-blue-accessible);
	border-radius: var(--lv-radius-lg);
	color: #fff;
}

.lv-contact-cta h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
}

.lv-contact-cta .lv-eyebrow {
	color: #fff;
}

/* Filters */
.lv-result-count {
	display: inline-flex;
	padding: 9px 14px;
	background: var(--lv-blue-soft);
	border-radius: 999px;
	color: var(--lv-blue-dark);
	font-size: 13px;
	font-weight: 700;
}

.lv-filter-panel {
	display: grid;
	grid-template-columns: minmax(210px, 1.35fr) repeat(3, minmax(140px, 0.7fr)) minmax(140px, 0.7fr) auto;
	align-items: end;
	gap: 14px;
	padding: 24px;
	background: var(--lv-surface);
	border: 1px solid var(--lv-border);
	border-radius: var(--lv-radius);
	box-shadow: var(--lv-shadow-soft);
}

.lv-filter-panel label {
	display: flex;
	flex-direction: column;
	gap: 7px;
	color: var(--lv-blue-dark);
	font-size: 12px;
	font-weight: 700;
}

.lv-filter-panel input,
.lv-filter-panel select,
.lv-member-search input,
.lv-form-card input,
.lv-form-card select,
.lv-form-card textarea,
.lv-comments input,
.lv-comments textarea,
.lv-auth-card input {
	width: 100%;
	min-height: 46px;
	padding: 10px 13px;
	border: 1px solid var(--lv-border);
	background: var(--lv-background);
	border-radius: 12px;
	color: var(--lv-ink);
}

.lv-filter-reset {
	align-self: center;
	color: var(--lv-muted);
	font-size: 12px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.lv-filter-chips,
.lv-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	padding: 22px 0 34px;
}

.lv-filter-chips a,
.lv-tabs a {
	padding: 8px 14px;
	background: var(--lv-surface);
	border: 1px solid var(--lv-border);
	border-radius: 999px;
	color: var(--lv-blue-dark);
	font-size: 12px;
	font-weight: 700;
}

.lv-tabs a.is-active,
.lv-filter-chips a:hover,
.lv-tabs a:hover {
	border-color: var(--lv-blue-accessible);
	background: var(--lv-blue-accessible);
	color: #fff;
}

/* Game detail */
.lv-game-hero {
	padding: 44px 0;
	background: var(--lv-surface-soft);
}

.lv-game-hero__grid {
	display: grid;
	grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
	align-items: center;
	gap: clamp(34px, 6vw, 72px);
}

.lv-game-hero__media {
	min-height: 460px;
	overflow: hidden;
	background: var(--lv-blue-soft);
	border-radius: var(--lv-radius-lg);
	box-shadow: var(--lv-shadow);
}

.lv-game-hero__content h1 {
	margin: 18px 0;
	color: var(--lv-blue-dark);
	font-size: clamp(2.8rem, 6vw, 4.5rem);
	letter-spacing: -0.05em;
	line-height: 1.04;
}

.lv-game-hero__excerpt {
	max-width: 680px;
	color: var(--lv-muted);
	font-size: 17px;
}

.lv-game-score {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	margin: 18px 0 28px;
	background: var(--lv-blue-dark);
	border-radius: 15px;
	color: #fff;
}

.lv-game-score strong {
	font-size: 27px;
}

.lv-game-score span {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.lv-game-facts {
	background: var(--lv-blue-dark);
	color: #fff;
}

.lv-game-facts__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.lv-game-facts__grid > div {
	padding: 22px 18px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
}

.lv-game-facts span,
.lv-game-facts strong {
	display: block;
}

.lv-game-facts span {
	color: rgba(255, 255, 255, 0.58);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lv-game-facts strong {
	margin-top: 4px;
	font-size: 15px;
}

.lv-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 54px;
}

.lv-detail-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lv-info-card,
.lv-review-summary,
.lv-form-card,
.lv-auth-card {
	padding: 28px;
	background: var(--lv-surface);
	border: 1px solid var(--lv-border);
	border-radius: var(--lv-radius);
	box-shadow: var(--lv-shadow-soft);
}

.lv-info-card h2,
.lv-review-summary h2 {
	margin: 0 0 18px;
	color: var(--lv-blue-dark);
	font-size: 19px;
}

.lv-info-card dl {
	margin: 0;
}

.lv-info-card dt {
	margin-top: 14px;
	color: var(--lv-muted);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.lv-info-card dd {
	margin: 2px 0 0;
	font-weight: 600;
}

.lv-review-summary > div {
	padding: 18px;
	border-radius: 14px;
}

.lv-review-summary__pros {
	background: #e9f5e7;
}

.lv-review-summary__cons {
	margin-top: 14px;
	background: #f8e9e6;
}

.lv-review-summary p {
	margin: 0;
	font-size: 13px;
}

.lv-gallery {
	margin-top: 50px;
}

.lv-gallery h2 {
	color: var(--lv-blue-dark);
}

.lv-gallery > div {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.lv-gallery img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 13px;
}

/* Articles and prose */
.lv-article__header {
	padding: 20px 0 32px;
	text-align: center;
}

.lv-article__header .lv-eyebrow,
.lv-article__header .lv-term-list {
	justify-content: center;
}

.lv-article__byline {
	margin: 16px 0 0;
	color: var(--lv-muted);
	font-size: 13px;
}

.lv-article__featured,
.lv-embed,
.lv-audio {
	overflow: hidden;
	margin: 0 0 40px;
	border-radius: var(--lv-radius-lg);
	box-shadow: var(--lv-shadow);
}

.lv-article__featured img {
	width: 100%;
}

.lv-embed {
	position: relative;
	aspect-ratio: 16 / 9;
	background: var(--lv-ink);
}

.lv-embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.lv-embed--fallback {
	display: grid;
	place-items: center;
	padding: clamp(24px, 6vw, 56px);
	color: #fff;
	text-align: center;
}

.lv-embed__fallback-content {
	display: grid;
	justify-items: center;
	gap: 20px;
	max-width: 560px;
}

.lv-embed__fallback-content p {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
}

.lv-audio {
	background: #fff;
}

.lv-audio iframe {
	display: block;
	width: 100%;
	min-height: 166px;
	border: 0;
}

.lv-audio .wp-audio-shortcode {
	width: 100% !important;
}

.lv-embed--audio-fallback {
	aspect-ratio: auto;
	min-height: 260px;
}

.lv-prose {
	color: #343434;
}

.lv-prose > *:first-child {
	margin-top: 0;
}

.lv-prose h2,
.lv-prose h3,
.lv-prose h4 {
	margin-top: 1.8em;
	color: var(--lv-blue-dark);
	line-height: 1.25;
}

.lv-prose h2 {
	font-size: 30px;
}

.lv-prose h3 {
	font-size: 23px;
}

.lv-prose p,
.lv-prose li {
	font-size: 17px;
	line-height: 1.85;
}

.lv-prose a {
	color: var(--lv-blue-accessible);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.lv-prose blockquote {
	padding: 24px 28px;
	margin: 32px 0;
	background: var(--lv-surface-soft);
	border-left: 5px solid var(--lv-orange);
	border-radius: 0 14px 14px 0;
}

.lv-prose img {
	border-radius: var(--lv-radius);
}

/* Profiles, community and forms */
.lv-profile-header {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 30px;
	padding: clamp(28px, 5vw, 52px);
	background: var(--lv-blue-soft);
	border-radius: var(--lv-radius-lg);
}

.lv-profile-header > img {
	border: 6px solid #fff;
	border-radius: 50%;
	box-shadow: var(--lv-shadow-soft);
}

.lv-profile-header h1 {
	margin: 0;
	color: var(--lv-blue-dark);
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	line-height: 1.05;
}

.lv-profile-header p:not(.lv-eyebrow) {
	max-width: 680px;
	margin: 12px 0;
	color: var(--lv-muted);
}

.lv-profile-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 16px;
	font-size: 12px;
}

.lv-profile-stats strong {
	color: var(--lv-blue-dark);
	font-size: 18px;
}

.lv-member-search {
	display: flex;
	gap: 9px;
}

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

.lv-member-card {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 28px;
	background: var(--lv-surface);
	border: 1px solid var(--lv-border);
	border-radius: var(--lv-radius);
	text-align: center;
}

.lv-member-card img {
	border-radius: 50%;
}

.lv-member-card h2,
.lv-member-card h3 {
	margin: 16px 0 8px;
	color: var(--lv-blue-dark);
	font-size: 20px;
}

.lv-member-card p {
	margin: 0 0 10px;
	color: var(--lv-muted);
	font-size: 13px;
}

.lv-member-card > span {
	margin-bottom: 18px;
	color: var(--lv-blue-accessible);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.lv-auth-card {
	display: grid;
	max-width: 920px;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	padding: clamp(28px, 6vw, 58px);
	margin-inline: auto;
}

.lv-auth-card h1 {
	margin: 0;
	color: var(--lv-blue-dark);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
}

.lv-auth-card label,
.lv-form-card label,
.lv-comments label {
	display: block;
	margin-top: 14px;
	color: var(--lv-blue-dark);
	font-size: 12px;
	font-weight: 700;
}

.lv-auth-card p a:not(.lv-button),
.comment-content a {
	color: var(--lv-blue-accessible);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.lv-auth-card .login-submit input {
	min-height: 46px;
	padding: 10px 20px;
	border: 0;
	background: var(--lv-blue-accessible);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font-weight: 700;
}

.lv-activity-list {
	display: grid;
	gap: 14px;
}

.lv-activity-list article {
	padding: 20px;
	background: var(--lv-surface);
	border: 1px solid var(--lv-border);
	border-radius: 14px;
}

.lv-activity-list article p {
	margin: 0 0 8px;
}

.lv-activity-list article a {
	color: var(--lv-blue-accessible);
	font-size: 13px;
	font-weight: 700;
}

.lv-about-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 50px;
}

.lv-about-intro aside {
	align-self: start;
	padding: 28px;
	background: var(--lv-blue-soft);
	border-radius: var(--lv-radius);
}

.lv-about-intro aside strong {
	color: var(--lv-blue-dark);
	font-size: 20px;
}

.lv-about-intro aside li {
	margin-top: 12px;
}

.lv-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
	gap: 60px;
}

.lv-contact-layout h1 {
	margin: 0;
	color: var(--lv-blue-dark);
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 1.05;
}

.lv-contact-details {
	display: grid;
	gap: 14px;
	margin-top: 28px;
}

.lv-contact-details p {
	padding: 18px;
	margin: 0;
	background: var(--lv-surface-soft);
	border-radius: 14px;
}

.lv-form-card h2 {
	margin-top: 0;
	color: var(--lv-blue-dark);
}

/* Comments and pagination */
.lv-comments {
	padding-top: 50px;
	margin-top: 50px;
	border-top: 1px solid var(--lv-border);
}

.lv-comments h2,
.lv-comments h3 {
	color: var(--lv-blue-dark);
}

.comment-list {
	padding: 0;
	list-style: none;
}

.comment-list li {
	padding: 22px;
	margin-top: 14px;
	background: var(--lv-surface);
	border: 1px solid var(--lv-border);
	border-radius: 14px;
}

.comment-list .children {
	list-style: none;
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.comment-author img {
	border-radius: 50%;
}

.navigation.pagination {
	margin-top: 36px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	min-height: 42px;
	padding: 8px;
	place-items: center;
	border: 1px solid var(--lv-border);
	background: var(--lv-surface);
	border-radius: 50%;
	font-size: 13px;
	font-weight: 700;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--lv-blue-accessible);
	background: var(--lv-blue-accessible);
	color: #fff;
}

.lv-error-page {
	display: flex;
	min-height: 60vh;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.lv-error-page h1 {
	max-width: 720px;
	margin: 0;
	color: var(--lv-blue-dark);
	font-size: clamp(2.7rem, 6vw, 5rem);
	line-height: 1.05;
}

.lv-error-page > p:not(.lv-eyebrow) {
	max-width: 600px;
	color: var(--lv-muted);
}

/* Footer */
.lv-footer {
	padding: 64px 0 24px;
	background: var(--lv-ink);
	color: #fff;
}

.lv-footer__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 100px;
}

.lv-logo--footer {
	display: inline-flex;
	padding: 10px;
	background: #fff;
	border-radius: 12px;
	color: #fff;
}

.lv-logo--footer .lv-logo__image {
	width: min(260px, 100%);
}

.lv-footer__brand p,
.lv-footer__support p {
	max-width: 330px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
}

.lv-footer h2 {
	margin: 0 0 18px;
	color: #fff;
	font-size: 15px;
}

.lv-footer-menu {
	align-items: flex-start;
	flex-direction: column;
	gap: 9px;
}

.lv-footer-menu a {
	color: rgba(255, 255, 255, 0.62);
	font-size: 13px;
}

.lv-footer-menu a:hover {
	color: var(--lv-orange);
}

.lv-socials {
	display: flex;
	gap: 9px;
	margin-top: 20px;
}

.lv-socials a {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	font-size: 11px;
	font-weight: 700;
}

.lv-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding-top: 24px;
	margin-top: 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.55);
	font-size: 11px;
}

.lv-legal-menu {
	gap: 16px;
}

/* Responsive */
@media (max-width: 1080px) {
	.lv-header {
		backdrop-filter: none;
	}

	.lv-navigation {
		position: fixed;
		z-index: 2000;
		right: 0;
		bottom: 0;
		left: 0;
		display: none;
		width: 100vw;
		justify-self: stretch;
		overflow-y: auto;
		padding: 24px;
		background: var(--lv-background);
		box-shadow: 0 24px 40px rgba(23, 58, 94, 0.18);
	}

	.lv-navigation.is-open {
		display: block;
	}

	.lv-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.lv-menu a {
		padding: 16px 8px;
		border-bottom: 1px solid var(--lv-border);
		font-size: 17px;
	}

	.lv-menu a::after {
		display: none;
	}

	.lv-menu-toggle {
		display: grid;
	}

	.lv-hero__grid {
		grid-template-columns: 1fr 0.7fr;
	}

	.lv-quick-search form {
		grid-template-columns: 1fr 1fr auto;
	}

	.lv-filter-panel {
		grid-template-columns: repeat(3, 1fr);
	}

	.lv-filter-panel__search {
		grid-column: span 2;
	}

	.lv-card-grid,
	.lv-member-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lv-game-facts__grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

@media (max-width: 820px) {
	.admin-bar .lv-header {
		top: 46px;
	}

	.lv-section,
	.lv-page {
		padding: 56px 0;
	}

	.lv-section-heading,
	.lv-page-header--split {
		align-items: flex-start;
		flex-direction: column;
	}

	.lv-hero__grid,
	.lv-featured-game__grid,
	.lv-game-hero__grid,
	.lv-detail-layout,
	.lv-about-intro,
	.lv-contact-layout,
	.lv-auth-card {
		grid-template-columns: 1fr;
	}

	.lv-hero__grid {
		padding-bottom: 28px;
	}

	.lv-hero__art {
		min-height: 330px;
	}

	.lv-quick-search {
		margin-top: 18px;
	}

	.lv-quick-search form {
		grid-template-columns: 1fr;
	}

	.lv-featured-game__media {
		min-height: 330px;
	}

	.lv-game-hero__media {
		min-height: 380px;
	}

	.lv-detail-sidebar {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.lv-contact-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 620px) {
	.lv-container {
		width: min(calc(100% - 28px), var(--lv-container));
	}

	.lv-topbar__inner {
		padding: 7px 0;
	}

	.lv-header__inner {
		min-height: 78px;
		gap: 10px;
	}

	.lv-logo__image {
		width: 155px;
	}

	.lv-icon-button {
		width: 40px;
		height: 40px;
	}

	.lv-search-form,
	.lv-member-search {
		align-items: stretch;
		flex-direction: column;
	}

	.lv-hero {
		padding-top: 18px;
	}

	.lv-hero__grid {
		min-height: auto;
		padding: 34px 27px 24px;
	}

	.lv-hero h1 {
		font-size: 2.65rem;
	}

	.lv-hero__text {
		font-size: 16px;
	}

	.lv-hero__art {
		min-height: 280px;
	}

	.lv-hero__image {
		width: min(100%, 330px);
	}

	.lv-card-grid,
	.lv-member-grid,
	.lv-filter-panel,
	.lv-detail-sidebar {
		grid-template-columns: 1fr;
	}

	.lv-filter-panel__search {
		grid-column: auto;
	}

	.lv-card__media {
		height: 215px;
	}

	.lv-game-hero__content h1 {
		font-size: 2.65rem;
	}

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

	.lv-profile-header {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.lv-profile-header > img {
		margin-inline: auto;
	}

	.lv-profile-stats,
	.lv-profile-header .lv-button-group {
		justify-content: center;
	}

	.lv-gallery > div {
		grid-template-columns: repeat(2, 1fr);
	}

	.lv-footer__grid {
		grid-template-columns: 1fr;
	}

	.lv-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.lv-legal-menu {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (forced-colors: active) {
	.lv-button,
	.lv-icon-button,
	input,
	select,
	textarea {
		border: 2px solid ButtonText;
	}

	:focus-visible {
		outline: 3px solid Highlight;
		box-shadow: none;
	}
}
