* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
	margin: 0 10%;
	background: rgba(0, 0, 0, 0.15);
	font-size: 24px;
}

header nav {
	height: fit-content;
}

header a {
	text-decoration: none;
	display: inline-block;
	color: white;
	padding:15px
}

header a:hover {
	background: rgba(0, 0, 0, 0.15);
}


.game-info a {
	text-decoration: underline;
	color: inherit;
}

.content {
	padding: 2em;
	position: relative;
	z-index: 1;
}



footer {
	position: absolute;
	bottom: 15px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.3);
	width: 100%;
	text-align: center;
}

:root {
	--bg-dark: linear-gradient(138deg, #281272, #331747);
	--bg-light: #ffec5c;
	--text-dark: white;
	--text-light: #111;
}

body {
	background: var(--bg-dark);
	background-size: cover;
	background-attachment: fixed;
	color: var(--text-dark);
	transition: color 0.4s ease;
	position: relative;
	height: 100vh;
	overflow-x: hidden;
}

body.light {
	background: var(--bg-light);
	color: var(--text-light);
}

#themeToggle {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 1000;
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.15);
	color: inherit;
	backdrop-filter: blur(4px);
	font-size: 1.2rem;
}

.theme-mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bg-light);
	clip-path: circle(0% at 50% 50%);
	z-index: 0;
	pointer-events: none;
	transition: clip-path 0.6s ease-in-out;
}

body.light .theme-mask {
	background: var(--bg-dark);
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: none;
    box-shadow: none;
}

body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #555;
}
