* { 
    cursor: none !important; 
}

html, body {
	margin: 0;
	overflow: hidden;
	background-color: rgb(15, 15, 15);
    color: var(--Accent);
    font-family: monospace;
    height: 100vh;
}

html {
    --Accent: rgb(43, 89, 255);
    --Darker-Accent: rgb(10, 20, 50);
    --Lighter-Accent: rgb(82, 120, 255);
}

a:-webkit-any-link {
    text-decoration: none;
}

p:-webkit-any-link {
    text-decoration: none;
}

::-webkit-scrollbar {
	width: 10px;
}
  
::-webkit-scrollbar-track {
	background: rgba(15, 15, 15, 0); 
}

::-webkit-scrollbar-thumb {
	background: var(--Accent); 
}
  
::-webkit-scrollbar-thumb:hover {
	background: var(--Lighter-Accent); 
}

#Cursor {
    pointer-events: none;
    position: absolute;
    z-index: 99999999;
}

#Terminal {
    position: absolute;
	height: 100vh;
	width: 100vw;
	background-color: var(--Darker-Accent)
}

#Output {
	top: 20px;
    left: 20px;
    padding: 20px;
    margin: 0;
    overflow-y: auto;
}

#Particles {
	position: absolute;
	height: 100vh;
	width: 100%;
	z-index: 0;
	margin: 0;
}

#VolumeBar {
    padding: 4px;
    position: fixed;
    bottom: 5px;
    right: 5px;
    width: 8px;
    height: 100px;
    background-color: rgb(25, 25, 25);
    opacity: 0;
    transition: opacity .05s ease-in;
}

#VolumeBar.visible {
    opacity: 1;
}

#VolumeBarFill {
    height: 100%;
    background-color: var(--Accent);
    transform-origin: bottom;
}

/* Main Stuff Below */

#About {
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0;
    width: 40vw;
	max-height: 50vh;
	border: 2px solid var(--Accent);
	padding: 20px 20px 20px 20px;
	overflow: hidden auto;
	display: flex;
	justify-content: left;
	align-items: left;
	flex-direction: column;
    background-color: rgb(20, 20, 20);
    transition: border-color .05s ease-in;
}

#Donate {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 15px;
}

#Games {
	gap: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#Main {
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0;
}

#Title {
	color: var(--Accent);
	font: 900 5rem "Poppins", sans-serif;
	text-align: center;
    margin: -20px 0 -20px 0;
}

#Message {
	color: rgb(255, 255, 255);
	font: 800 1rem "Poppins", sans-serif;
	text-align: center;
	margin: 0;
}

#Divider {
	color: rgb(161, 161, 161);
	font: 500 1.3rem monospace, sans-serif;
	text-align: center;
    padding: 0 1px 0 1px;
	margin: 0;
}

#Back {
    color: var(--Accent);
	font: 700 1.2rem monospace, sans-serif;
	text-align: center;
	padding: 0 2px 0 2px;
    transition: color .05s ease-in;
	position: absolute;
    top: 100%;
    left: 50%;
    margin: 0;
    margin-bottom: 15px;
    transform: translate(-50%, -110%);
}

#Back:link, #Back:visited, #Back:active, #Back:click {
    list-style: none;
    line-height: 10px;
    text-align: center;
    user-select: none;
	text-decoration: none;
}

#Back:hover {
    color: var(--Lighter-Accent);
    font-family: monospace;
}

#About:hover {
    border-color: var(--Lighter-Accent);
    font-family: monospace;
}

#About:hover .Info-Title {
	color: var(--Lighter-Accent);
}

#About::-webkit-scrollbar {
	width: 5px;
}

#About::-webkit-scrollbar-thumb {
    background: rgba(75, 75, 75, 0.5);
}

#About::-webkit-scrollbar-thumb:hover {
    background: rgba(75, 75, 75, 0.5);
}

#Buttons {
    margin: 15px 0 0 0;
	list-style: none;
	text-align: center;
}

.Button {
	color: rgb(255, 255, 255);
	font: 700 1.2rem monospace, sans-serif;
	text-align: center;
	padding: 0 2px 0 2px;
    transition: color .05s ease-in;
}

.Button:link, .Button:visited, .Button:active, .Button:click {
    list-style: none;
    line-height: 10px;
    text-align: center;
    user-select: none;
	text-decoration: none;
}

.Button:hover {
    color: var(--Accent);
    font-family: monospace;
}

.Game-Box {
    border: 2px solid var(--Accent);
    background-color: rgb(20, 20, 20);
    transition: border-color .05s ease-in;
    width: 20%;
    text-align: center;
    overflow: hidden;
}

.Game-Box:hover {
    border-color: var(--Lighter-Accent);
}

.Game-Box:hover .Game-Info h3 {
    color: var(--Lighter-Accent);
}

.Game-Image {
    width: 100%;
    object-fit: contain;
}

.Game-Info {
    padding: 20px;
}

.Game-Info h3 {
    transition: color .05s ease-in;
    margin: 0px 0px 0px 0px;
	font-size: 1.2rem;
}

.Game-Info p {
    color: rgb(161, 161, 161);
    font-size: 1rem;
	margin-top: 5px;
	margin-bottom: 5px;
    white-space: normal;
    word-wrap: break-word;
}

.Donation-Options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Donation-Box {
    border: 2px solid var(--Accent);
    border-radius: 0;
    padding: 15px;
    background-color: rgb(20, 20, 20);
    transition: border-color .05s ease-in;
    cursor: pointer;
    position: relative;
}

.Donation-Box:hover {
    border-color: var(--Lighter-Accent);
}

.Donation-Box:hover .Click-Indicator {
    opacity: 1;
    color: var(--Lighter-Accent);
}

.Donation-Box:hover .Click-Indicator {
    display: block;
}

.Donation-Box h3 {
    margin: 0;
    margin-bottom: 2px;
    font-size: 18px;
    color: rgb(255, 255, 255);
    transition: color .05s ease-in;
}

.Donation-Box p {
    margin: 0px;
    color: rgb(255, 255, 255);
}

.Click-Indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    color: var(--Accent);
    opacity: 0;
    transition: all .05s ease-in;
}

.Info-Title {
    transition: color .05s ease-in;
	color: var(--Accent);
	font: 800 1rem "Poppins", sans-serif;
	text-align: left;
	margin: 0;
}

.Info-Message {
	color: rgb(255, 255, 255);
	font: 600 0.75rem "Poppins", sans-serif;
	text-align: left;
	margin: 0;
}