@font-face {
	font-family: kindy;
	src: url(assets/fonts/KGMissKindyChunky.ttf);
	font-display: swap;
}

:root {
	--bg: #130a0d;
	--bg-dots: #ff3b5222;
	--panel: #1e1015;
	--panel-2: #2a151c;
	--text: #f3e4e7;
	--text-soft: #b3868f;
	--red: #ff3b52;
	--red-deep: #8c1024;
	--line: #d31f38;
	--line-2: #6d1120;
	--link: #ff6b7d;
	--link-hover: #ffb3bd;
	--shadow: #d31f3844;
	--container: #180d12;
}

* { box-sizing: border-box; }

body {
	font-family: kindy, "Comic Sans MS", "Chalkboard SE", sans-serif;
	background-color: var(--bg);
	background-image: radial-gradient(var(--bg-dots) 1.5px, transparent 1.5px);
	background-size: 18px 18px;
	color: var(--text);
	margin: 0;
	padding: 0;
	line-height: 1.6;
	font-size: 17px;
}

#wrapper {
	max-width: 900px;
	margin: 0 auto;
	min-height: 100vh;
	background: var(--container);
	border-left: 2px solid var(--line-2);
	border-right: 2px solid var(--line-2);
	padding: 1.8em 1.6em 2.4em;
}

header { text-align: center; margin-bottom: 1em; }

header h1 {
	font-size: 3.4em;
	margin: 0.1em auto 0;
	letter-spacing: 0.02em;
	color: var(--red);
	text-shadow: 3px 3px 0 var(--red-deep);
	line-height: 1;
	display: block;
	width: fit-content;
	transform: rotate(-3.5deg);
	transition: transform 0.2s;
}

header h1:hover { transform: rotate(-1deg) scale(1.02); }

header h1 .chick {
	text-shadow: none;
	font-size: 0.85em;
	margin-right: 0.12em;
	display: inline-block;
	vertical-align: baseline;
}

header .tagline {
	margin: 0.4em 0 0;
	color: var(--text-soft);
	font-size: 1.05em;
	font-style: italic;
}

header .tagline[data-splash] {
	cursor: pointer;
	user-select: none;
	display: inline-block;
	transition: color 0.15s, transform 0.15s;
}

header .tagline[data-splash]:hover { color: var(--red); transform: rotate(-1.5deg); }

header .tagline.rage {
	color: #ff1030 !important;
	font-style: normal;
	font-size: 1.5em;
	letter-spacing: 0.03em;
	text-shadow: 2px 2px 0 var(--red-deep);
	animation: freakout 0.28s linear 6;
}

@keyframes freakout {
	0%, 100% { transform: translateX(0) rotate(0deg) scale(1.15); }
	25% { transform: translateX(-5px) rotate(-2.5deg) scale(1.2); }
	75% { transform: translateX(5px) rotate(2.5deg) scale(1.2); }
}

nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.5em;
	margin: 1.2em 0;
}

nav a {
	padding: 0.25em 0.9em;
	text-decoration: none;
	color: var(--text);
	background: var(--panel);
	border: 2px solid var(--line);
	border-radius: 10px;
	box-shadow: 2px 2px 0 var(--shadow);
	transition: transform 0.12s, background 0.15s;
}

nav a:hover { background: var(--line); color: #fff; transform: translateY(-2px); }
nav a[aria-current="page"] { background: var(--red); color: #1a0a0e; border-color: var(--red); }

.layout { display: flex; gap: 1em; align-items: flex-start; }
.col-main { flex: 1 1 auto; min-width: 0; }
.col-side { flex: 0 0 240px; }

@media (max-width: 820px) {
	.layout { flex-direction: column; }
	.col-side { flex: 1 1 auto; width: 100%; }
	header h1 { font-size: 2.6em; }
	body { font-size: 16px; padding: 0.9em 0.7em 2em; }

	#wrapper {
		background: none;
		border: none;
		min-height: 0;
		padding: 0;
	}
}

.box {
	background: var(--panel);
	border: 2px solid var(--line);
	border-radius: 14px;
	padding: 0.9em 1.1em;
	margin-bottom: 1em;
	box-shadow: 3px 3px 0 var(--shadow);
}

.box.alt { border-color: var(--line-2); box-shadow: 3px 3px 0 #6d112044; background: var(--panel-2); }

.box h2, .box h3 {
	margin: 0 0 0.5em;
	color: var(--red);
	border-bottom: 2px dotted var(--line-2);
	padding-bottom: 0.2em;
	font-weight: normal;
	font-size: 1.35em;
}

.box h3 { font-size: 1.15em; }
.box > :last-child { margin-bottom: 0; }

.box h2::before { content: ">> "; color: var(--line-2); }

.box h2, .box h3 { display: flex; align-items: baseline; gap: 0.35em; }

.box h2.with-gif { display: flex; align-items: center; gap: 0.5em; }

.welcome-gif {
	height: 46px;
	width: auto;
	margin-left: auto;
	flex: 0 0 auto;
}

.gf-box { border-color: var(--line-2); }
.gf-box h3 { display: flex; align-items: center; gap: 0.4em; }

.gf-icon {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	fill: none;
	stroke: var(--red);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

a { color: var(--link); text-decoration: underline dotted; }
a:hover { color: var(--link-hover); text-decoration: underline; }

p { margin: 0 0 0.7em; }
ul { padding-left: 1.2em; margin: 0 0 0.7em; }
li { margin-bottom: 0.2em; }
hr { border: none; border-top: 2px dotted var(--line-2); margin: 1em 0; }
small { color: var(--text-soft); }

.avatar {
	display: block;
	width: 100%;
	max-width: 190px;
	margin: 0 auto 0.6em;
	border: 3px solid var(--line);
	border-radius: 14px;
}

.stat-row {
	display: flex;
	justify-content: space-between;
	gap: 0.5em;
	font-size: 0.9em;
}

.stat-row span:last-child { color: var(--text-soft); text-align: right; }

.entry { margin-bottom: 1.4em; }
.entry:last-child { margin-bottom: 0; }

.entry-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.6em;
	flex-wrap: wrap;
	border-bottom: 2px dotted var(--line-2);
	padding-bottom: 0.15em;
	margin-bottom: 0.4em;
}

.entry-head h3 { border: none; margin: 0; padding: 0; }
.entry-date { color: var(--text-soft); font-size: 0.85em; white-space: nowrap; }

.tag {
	display: inline-block;
	font-size: 0.78em;
	background: var(--panel-2);
	border: 1.5px solid var(--line-2);
	border-radius: 20px;
	padding: 0 0.6em;
	margin-right: 0.25em;
	color: var(--text-soft);
}

.np { display: flex; gap: 0.6em; align-items: center; font-size: 0.9em; }

.np img {
	width: 52px;
	height: 52px;
	border-radius: 8px;
	border: 2px solid var(--line);
	flex: 0 0 auto;
	object-fit: cover;
}

.np-text { min-width: 0; line-height: 1.25; }
.np-title { display: block; color: var(--text); overflow-wrap: anywhere; }
.np-artist { display: block; color: var(--text-soft); font-size: 0.9em; overflow-wrap: anywhere; }

.np-status { color: var(--red); font-size: 0.8em; display: block; }

.np-dot {
	display: inline-block;
	width: 0;
	height: 0;
	margin-right: 0.4em;
	border-left: 8px solid var(--red);
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	vertical-align: middle;
}

.paypal-note {
	background: var(--panel-2);
	border: 2px dashed var(--line-2);
	border-radius: 10px;
	padding: 0.6em 0.8em;
	font-size: 0.95em;
}

.paypal-note strong { color: var(--red); }

.wallets { list-style: none; padding: 0; margin: 0 0 0.7em; }

.wallet {
	display: flex;
	align-items: center;
	gap: 0.5em;
	flex-wrap: wrap;
	padding: 0.45em 0;
	border-bottom: 1px dotted var(--line-2);
}

.wallet:last-child { border-bottom: none; }

.w-label {
	flex: 0 0 3.6em;
	color: var(--red);
	text-transform: uppercase;
	font-size: 0.9em;
	line-height: 1.1;
}

.w-label small { display: block; font-size: 0.7em; color: var(--text-soft); }

.w-addr {
	flex: 1 1 12em;
	min-width: 0;
	font-family: "Courier New", monospace;
	font-size: 0.78em;
	color: var(--text-soft);
	background: var(--bg);
	border-radius: 6px;
	padding: 0.25em 0.5em;
	overflow-wrap: anywhere;
}

.copy {
	font-family: inherit;
	font-size: 0.85em;
	cursor: pointer;
	background: var(--panel);
	color: var(--text);
	border: 2px solid var(--line);
	border-radius: 8px;
	padding: 0.1em 0.7em;
	box-shadow: 2px 2px 0 var(--shadow);
	flex: 0 0 auto;
}

.copy:hover { background: var(--line); color: #fff; }
.copy:active { transform: translate(2px, 2px); box-shadow: none; }
.copy.done { background: var(--red); color: #1a0a0e; border-color: var(--red); }

footer {
	text-align: center;
	margin-top: 1.5em;
	color: var(--text-soft);
	font-size: 0.9em;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

.sp-hero { display: flex; gap: 0.9em; align-items: center; }

.sp-hero-art {
	width: 108px;
	height: 108px;
	flex: 0 0 auto;
	border-radius: 10px;
	border: 3px solid var(--line);
	object-fit: cover;
	background: var(--panel-2);
}

.sp-hero-info { min-width: 0; flex: 1 1 auto; }
.sp-hero-title { font-size: 1.25em; line-height: 1.2; display: block; overflow-wrap: anywhere; }
.sp-hero-artist { color: var(--text-soft); display: block; overflow-wrap: anywhere; }

.sp-bar {
	height: 7px;
	background: var(--bg);
	border-radius: 6px;
	overflow: hidden;
	margin-top: 0.6em;
	border: 1px solid var(--line-2);
}

.sp-bar-fill {
	height: 100%;
	background: var(--red);
	border-radius: 6px;
	transition: width 1s linear;
}

.socials { display: flex; flex-wrap: wrap; gap: 0.5em; }

.social {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	text-decoration: none;
	color: var(--text);
	background: var(--panel-2);
	border: 2px solid var(--line-2);
	border-radius: 10px;
	padding: 0.25em 0.75em;
	font-size: 0.92em;
	transition: transform 0.12s, border-color 0.15s;
}

.social:hover { border-color: var(--red); color: var(--text); transform: translateY(-2px); text-decoration: none; }
.social .social-at { color: var(--text-soft); font-size: 0.85em; }

.social-icon {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: var(--red);
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex: 0 0 auto;
}

.social-icon.brand { fill: var(--red); stroke: none; }
.social:hover .social-icon.brand { fill: var(--link-hover); }

.lanyard { display: flex; gap: 0.6em; align-items: center; font-size: 0.9em; }

.ly-avatar {
	width: 48px;
	height: 48px;
	flex: 0 0 auto;
	border-radius: 50%;
	border: 2px solid var(--line);
	object-fit: cover;
}

.ly-info { min-width: 0; line-height: 1.3; }
.ly-name { display: block; overflow-wrap: anywhere; }
.ly-state { display: block; font-size: 0.8em; color: var(--text-soft); }
.ly-custom { display: block; font-size: 0.82em; color: var(--text); overflow-wrap: anywhere; }
.ly-act { display: block; font-size: 0.82em; color: var(--red); overflow-wrap: anywhere; }

.ly-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 0.35em;
	vertical-align: middle;
	background: #747f8d;
}

.ly-dot.online { background: #3ba55d; }
.ly-dot.idle { background: #faa81a; }
.ly-dot.dnd { background: #ed4245; }

.servers { display: flex; flex-direction: column; gap: 0.6em; }

.server {
	display: flex;
	align-items: center;
	gap: 0.8em;
	padding: 0.8em;
	border: 2px solid var(--line-2);
	border-radius: 12px;
	background: var(--panel);
	background-size: cover;
	background-position: center;
	text-decoration: none;
	color: var(--text);
	transition: border-color 0.15s, transform 0.15s;
}

.server:hover {
	border-color: var(--red);
	color: var(--text);
	text-decoration: none;
	transform: translateY(-2px);
}

.server-icon {
	width: 62px;
	height: 62px;
	flex: 0 0 auto;
	border-radius: 16px;
	border: 2px solid var(--line);
	object-fit: cover;
}

.server-info { min-width: 0; line-height: 1.3; }
.server-name { display: block; font-size: 1.1em; overflow-wrap: anywhere; }
.server-desc { display: block; font-size: 0.82em; color: var(--text-soft); overflow-wrap: anywhere; }
.server-counts { display: block; font-size: 0.8em; color: var(--text-soft); margin-top: 0.15em; }
.server-join { display: block; font-size: 0.85em; color: var(--red); margin-top: 0.2em; }

@media (max-width: 420px) {
	.server-icon { width: 48px; height: 48px; }
}

.sp-times { display: flex; justify-content: space-between; font-size: 0.75em; color: var(--text-soft); }

.range-tabs { display: flex; flex-wrap: wrap; gap: 0.4em; margin-bottom: 0.9em; }

.range-tab {
	font-family: inherit;
	font-size: 0.88em;
	cursor: pointer;
	background: var(--panel);
	color: var(--text);
	border: 2px solid var(--line-2);
	border-radius: 10px;
	padding: 0.15em 0.8em;
}

.range-tab:hover { border-color: var(--line); }
.range-tab.active { background: var(--red); color: #1a0a0e; border-color: var(--red); }

.artist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 0.8em; }

.artist { text-align: center; text-decoration: none; color: var(--text); display: block; }

.artist img {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 2px solid var(--line);
	object-fit: cover;
	display: block;
	transition: transform 0.15s;
	background: var(--panel-2);
}

.artist:hover img { transform: scale(1.06); border-color: var(--red); }
.artist-name { display: block; font-size: 0.85em; line-height: 1.2; margin-top: 0.3em; overflow-wrap: anywhere; }
.artist-rank { color: var(--red); font-size: 0.78em; }

.track-list { list-style: none; padding: 0; margin: 0; }

.track {
	display: flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.4em 0;
	border-bottom: 1px dotted var(--line-2);
}

.track:last-child { border-bottom: none; }

.track-rank { flex: 0 0 1.4em; text-align: right; color: var(--red); font-size: 0.9em; }

.track img {
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	border-radius: 6px;
	border: 1px solid var(--line-2);
	object-fit: cover;
	background: var(--panel-2);
}

.track-info { min-width: 0; line-height: 1.25; }
.track-name { display: block; font-size: 0.95em; overflow-wrap: anywhere; text-decoration: none; color: var(--text); }
.track-name:hover { color: var(--link-hover); }
.track-artist { display: block; font-size: 0.82em; color: var(--text-soft); overflow-wrap: anywhere; }
.track-when { display: block; font-size: 0.72em; color: var(--text-soft); }

.genre-chips { display: flex; flex-wrap: wrap; gap: 0.4em; }

.sp-msg { color: var(--text-soft); font-style: italic; }

.game-hero { display: flex; gap: 0.9em; align-items: center; }

.game-hero img {
	width: 160px;
	flex: 0 0 auto;
	border-radius: 8px;
	border: 2px solid var(--line);
	display: block;
}

.game-hero-info { min-width: 0; }
.game-hero-name { display: block; font-size: 1.25em; line-height: 1.2; overflow-wrap: anywhere; }

.box.has-bg {
	background-size: cover;
	background-position: center;
	border-color: var(--red);
}

img.idle-square {
	width: 92px;
	min-height: 88px;
	height: auto;
	flex: 0 0 auto;
	align-self: stretch;
	border: none;
	border-radius: 0;
	display: block;
	object-fit: cover;
	margin-left: -1.1em;
}

img.idle-square.big { width: 122px; min-height: 112px; }

.game-hero img.idle-square,
.sp-idle img.idle-square {
	margin-top: -0.9em;
	margin-bottom: -0.9em;
	border-radius: 12px 0 0 12px;
}

.img-dead { visibility: hidden; }

.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.7em; }

.game-card {
	display: block;
	text-decoration: none;
	color: var(--text);
	background: var(--panel-2);
	border: 2px solid var(--line-2);
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.14s, border-color 0.14s;
}

.game-card:hover { transform: translateY(-3px); border-color: var(--red); color: var(--text); text-decoration: none; }
.game-card img { width: 100%; display: block; aspect-ratio: 460 / 215; object-fit: cover; background: var(--bg); }
.game-card-body { padding: 0.4em 0.6em; }
.game-card-name { display: block; font-size: 0.88em; line-height: 1.2; overflow-wrap: anywhere; }
.game-card-hours { display: block; font-size: 0.8em; color: var(--red); }

.game-list { list-style: none; padding: 0; margin: 0; }

.game-row {
	display: flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.45em 0;
	border-bottom: 1px dotted var(--line-2);
}

.game-row:last-child { border-bottom: none; }

.game-row img {
	width: 92px;
	flex: 0 0 auto;
	border-radius: 6px;
	border: 1px solid var(--line-2);
	display: block;
	aspect-ratio: 460 / 215;
	object-fit: cover;
	background: var(--bg);
}

.game-row-info { min-width: 0; line-height: 1.25; }
.game-row-name { display: block; text-decoration: none; color: var(--text); overflow-wrap: anywhere; }
.game-row-name:hover { color: var(--link-hover); }
.game-row-meta { display: block; font-size: 0.8em; color: var(--text-soft); }
.game-row-meta strong { color: var(--red); font-weight: normal; }

.ach-list { list-style: none; padding: 0; margin: 0; }

.ach-item {
	display: flex;
	gap: 0.6em;
	align-items: center;
	padding: 0.4em 0;
	border-bottom: 1px dotted var(--line-2);
}

.ach-item:last-child { border-bottom: none; }

.ach-item img {
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	border-radius: 6px;
	border: 1px solid var(--line-2);
}

.ach-info { min-width: 0; line-height: 1.25; }
.ach-title { display: block; font-size: 0.95em; overflow-wrap: anywhere; }
.ach-sub { display: block; font-size: 0.8em; color: var(--text-soft); overflow-wrap: anywhere; }

.stat-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(88px, 1fr)); gap: 0.5em; }

.tile {
	background: var(--panel-2);
	border: 2px solid var(--line-2);
	border-radius: 10px;
	padding: 0.5em 0.3em;
	text-align: center;
}

.tile-num { display: block; font-size: 1.5em; color: var(--red); line-height: 1.1; }
.tile-label { display: block; font-size: 0.78em; color: var(--text-soft); line-height: 1.2; }

.fn-bg {
		background-image:
		linear-gradient(rgba(19, 10, 13, 0.87), rgba(19, 10, 13, 0.87)),
		url(assets/img/fortnite-bg.jpg);
	background-size: cover;
	background-position: center;
	border-color: var(--red);
}

.fn-head { font-size: 0.95em; color: var(--text-soft); margin-bottom: 0.9em; }
.fn-head strong { color: var(--red); font-weight: normal; }

.fn-bg h3 {
	color: var(--red);
	border: none;
	margin: 1.1em 0 0.2em;
	font-size: 1.05em;
}

.fn-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9em 1.9em;
}

.fn-stat { line-height: 1.15; }
.fn-stat-num { display: block; font-size: 1.75em; color: var(--red); }
.fn-stat-label { display: block; font-size: 0.8em; color: var(--text-soft); }

.sp-idle { align-items: stretch; flex-wrap: wrap; }

.sp-idle-note {
	flex: 1 1 9em;
	min-width: 0;
	align-self: center;
	line-height: 1.3;
}

.sp-idle-title { display: block; font-size: 1.15em; color: var(--red); }
.sp-idle-sub { display: block; font-size: 0.88em; color: var(--text-soft); overflow-wrap: anywhere; }

.sp-last {
	display: flex;
	align-items: center;
	align-self: center;
	gap: 0.6em;
	min-width: 0;
	flex: 1 1 13em;
	padding-left: 0.9em;
	margin-left: 0.3em;
	border-left: 2px dotted var(--line-2);
}

.sp-last-art {
	width: 58px;
	height: 58px;
	flex: 0 0 auto;
	border-radius: 8px;
	border: 2px solid var(--line);
	object-fit: cover;
}

@media (max-width: 420px) {
	.sp-last { padding-left: 0.6em; }
	.sp-last-art { display: none; }
	img.idle-square.big { width: 78px; height: 78px; }
}

@media (max-width: 480px) {
	.game-hero img { width: 118px; }
	.game-row img { width: 74px; }
}

@media (max-width: 480px) {
	.sp-hero-art { width: 84px; height: 84px; }
}

::selection { background: var(--red); color: #1a0a0e; }

.studio-btn {
	font-family: inherit;
	font-size: 1em;
	line-height: inherit;
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	padding: 0.25em 0.9em;
	background: #0b0609;
	color: #e7e3dd;
	border: 2px solid #3a2028;
	border-radius: 10px;
	box-shadow: 2px 2px 0 var(--shadow);
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.12s, background 0.15s;
}

.studio-btn:hover {
	background: #1a0e13;
	border-color: var(--red);
	color: #e7e3dd;
	text-decoration: none;
	transform: translateY(-2px);
}

.studio-btn img { height: 1.05em; width: auto; display: block; flex: 0 0 auto; }

.add-me { margin-top: 0.9em; }
