:root {
	--bg: #0f172a;
	--fg: #e8eef6;
	--acc: #38bdf8
}

:root {
	--bg: #0f172a;
	--fg: #e8eef6;
	--acc: #38bdf8;
	--bs-border-radius: 0;
	--bs-border-radius-sm: 0;
	--bs-border-radius-lg: 0;
	--bs-btn-border-radius: 0;
	--bs-card-border-radius: 0
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif
}

.container a {
	color: #93c5fd;
	text-decoration: none
}

.container a:hover {
	color: var(--acc)
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1rem
}

.flex-row {
	display: flex;
	gap: 1rem
}

.between {
	justify-content: space-between
}

.center {
	align-items: center
}

.site-header {
	padding: 1rem 0;
	border-bottom: 1px solid #1e293b;
	background: rgba(2, 6, 23, .6);
	backdrop-filter: saturate(1.3) blur(8px);
	position: sticky;
	top: 0;
	z-index: 50
}

.site-header .brand {
	color: var(--acc);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem
}

.nav a {
	color: var(--fg);
	text-decoration: none;
	margin-left: 1rem
}

.nav a:hover {
	color: var(--acc)
}

main.container {
	padding: 2rem 0
}

.section {
	max-width: 720px
}

.btn {
	display: inline-block;
	padding: .6rem 1rem;
	border-radius: 0;
	text-decoration: none;
	border: 1px solid #334155;
	background: #0b1629;
	color: var(--fg);
	transition: background .15s, border-color .15s, box-shadow .15s
}

.btn:hover {
	background: #12233d;
	border-color: #475569;
	box-shadow: 0 0 0 2px rgba(56, 189, 248, .15) inset
}

.btn-primary {
	background: var(--acc);
	color: #001;
	font-weight: 700
}

.btn-ghost {
	border: 1px solid #334155;
	color: var(--fg)
}

.btn-ghost:hover {
	border-color: #5b6b7f;
	background: #0e1c31
}

.hero {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 2rem;
	align-items: center;
	margin-top: 2rem
}

.display {
	font-size: 2.6rem;
	line-height: 1.1;
	margin: .2rem 0
}

.tag {
	opacity: .9
}

.selling-points {
	margin: 1rem 0 1.5rem 1.2rem
}

.selling-points li {
	margin: .2rem 0
}

.hero-art .poster {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .4);
	border: 1px solid #0b1220
}

.hero-caption {
	font-size: .8rem;
	opacity: .7;
	margin-top: .3rem
}

.hero-caption {
	font-size: .8rem;
	opacity: .85;
	margin-top: .3rem
}

.features .grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 2rem
}

.features .grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 2rem
}

.card {
	background: rgba(2, 6, 23, .7);
	border: 1px solid #0b1220;
	border-radius: 12px;
	padding: 1rem
}

.card {
	background: #102139;
	border: 1px solid #22304a;
	border-radius: 0;
	padding: 1rem;
	color: var(--fg)
}

.card .text-muted {
	color: #c6d3e1 !important;
	opacity: .95
}

.btn-outline-light {
	color: #e2e8f0;
	border-color: #9fb3c8
}

.site-footer {
	border-top: 1px solid #1e293b;
	margin-top: 3rem;
	padding: 1rem 0;
	opacity: .9
}

h2,
h3 {
	color: #f1f5f9
}

p,
li {
	color: #dbe7f3
}

@media (max-width: 900px) {
	.hero {
		grid-template-columns: 1fr
	}

	.features .grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width: 560px) {
	.features .grid {
		grid-template-columns: 1fr
	}
}