/* ######### OVERALL CSS STYLING ############################## */

* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}

body {
	background-color: #000;
}

/* Scrollbar Width */
::-webkit-scrollbar {
	width: 10px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
	background: #000;
}

/* Scrollbar Thumb / Handle */
::-webkit-scrollbar-thumb {
	background: #888;
	border:.1em solid #000;
	border-radius: 100vw;
}

/* Handle on Hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* ######### BACKGROUND FRAMING ################################# */

div.page-heading {
	margin-top: 20px;
	margin-bottom: 10px;
	width: fit-content;
	block-size: fit-content;
	margin-left: auto;
	margin-right: auto;
}

div.page-heading h1 {
	font-size: 2.4rem;
	color: #FFF;
	font-weight: 600;
	font-family: sans-serif;
	margin: 2px;
}

div.content-margin {
	box-sizing: border-box;
/*	background-color: #C6C6C6;*/
	max-width: 60rem;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}

div.content-box {
	background-color: #FFF;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	border-style: outset;
	border-radius: 5px;
	border-color: rgb(200, 200, 200); /* Balanced grey. */
	border-width: 3px;
}

div.inner-box {
	margin-left: 30px;
	margin-right: 30px;
	margin-top: 30px;
	margin-bottom: 30px;
	font-family: sans-serif;
	line-height: 1.5em;
	font-size: 1rem;
}

/* ######### LEVEL ONE: LOGO & NAVIGATION BAR ################### */

header {
	padding: 0 20px;
	background-color: #1F2022;
	height: 50px;
	display: flex;
	justify-content: space-between; /* CRUCIAL: Distributes items evenly across the screen. First item is flush with the start, and the last is flush with the end. */ 
}

header a {
	text-decoration: none;
}

#logo {
	display: flex;
	align-items: center;
}

/* Site Logo Image */
#logo a img {
	width: 200px;
	align-items: center;
}

/* Desktop (Non-Mobile) Navigation Menu */

ul.navbar-menu {
	list-style: none;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

ul.navbar-menu a {
	color: #FFF;
	font-weight: bold;
	font-family: sans-serif;
}

li.navbarElement, li.navbarSocial {
	padding: 5px;
	margin-left: 10px;
}

li.navbarElement:hover {
	transform: scale(1.1);
	transition: 0.1s;
}

li.navbarSocial:hover {
	transform: scale(1.3);
	transition: 0.1s;
}

li.navbarElement a:hover {
	color: crimson;
}

/* Mobile Navigation Menu */

#mobile-menu-block {
	margin: auto 0;
	display: none;
	cursor: pointer;
}

/* Class That Prevents Highlight Around Element */
.noselect {
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Older versions of Firefox */
	-ms-user-select: none; /* Internet Explorer / Edge */
	user-select: none; /* Chrome, Edge, Opera, Firefox */
}

#dropdownIcon a {
	text-decoration: none;
	color: white;
	font-size: 35px;
	font-weight: bold;
}

.open .mobile-menu {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

ul.mobile-menu {
	display: none;
	background-color: #1F2022;
	position: absolute;
	top: 50px;
	left: 0;
	height: fit-content;
	width: 100%;
	padding: 0 20px;
	list-style: none;
	z-index: 1; /* SUPER IMPORTANT! Makes sure the navigation links are overlaid */
}

/* Mobile Menu Link Text */
ul.mobile-menu a {
	font-size: 18px;
	color: white;
	font-weight: bold;
	font-family: sans-serif;
}

/* Mobile Menu Spacing */
li.mobileElement, li.mobileSocial {
	padding: 5px;
	width: 100%;
}

li.mobileElement:hover {
	background-color: crimson;
}

li.mobileSocial:hover {
	background-color: crimson;
}

/* ######### !!! START !!! ################################## */

#banner-logo a img {
	width: 80%;
	position: absolute;
/*	top: 0;
	bottom: 0;*/
	left: 0;
	right: 0;
	margin: auto;
	top: 80px;
}

#banner-logo-tight a img {
	display: none;
	margin-left: auto;
	margin-right: auto;
	width: 400px;
	align-items: center;
}

/* IMAGE */

.panelImage {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	height: 60%;
	width: 70%;
}

/* START PAGE BUTTONS  */

div.buttons-column {
	width: 100%;
	text-align: center; /* IMPORTANT: CENTERS THE BUTTONS */
/*	background-color: grey;*/
	margin-top: -450px;
	margin-bottom: 400px;
}

/* START BUTTON */

div.start-button-container {
/*	margin-top: 50px;*/
	/* Space between button and top of screen */
}

a.start-button {
	border: 6px solid white;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	font-size: 30px;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 30px;
	font-family: sans-serif;
	font-weight: bold;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5;
	background-color: crimson;
}

a.start-button span {
	position: relative;
	transition: 0.5s;
}

a.start-button span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}

a.start-button:hover span {
	padding-right: 25px;
}

a.start-button:hover span:after {
	opacity: 1;
	right: 0;
}

a.start-button:hover {
	background-color: yellow;
	color: black;
}

/* MOST RECENT UPDATE BUTTON */

div.recent-button-container {
	margin-top: 49px;
	/* Space between buttons */
}

a.recent-button {
	border: 6px solid white;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	font-size: 30px;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 30px;
	font-family: sans-serif;
	font-weight: bold;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5;
	background-color: limegreen;
}

a.recent-button span {
	position: relative;
	transition: 0.5s;
}

a.recent-button span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}

a.recent-button:hover span {
	padding-right: 25px;
}

a.recent-button:hover span:after {
	opacity: 1;
	right: 0;
}

a.recent-button:hover {
	background-color: yellow;
	color: black;
}

/* ######### !!! SELECT !!! ################################## */

.arc-banner {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	height: 50%;
	width: 50%;
	border: 3px #1F2022;
	background-color: #1F2022;
}

.accordion {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}

.accordion .accordion-box {
	position: relative;
}

.accordion .accordion-box {
	position: relative;
	padding: 10px;
	background: #1F2022;
	color: #FFF;
	cursor: pointer;
}

.label {
	font-size: 30px;
	font-family: sans-serif;
	font-weight: bold;
}

div.label p:hover {
	color: crimson;
}

.accordion .accordion-box .label::before {
	content: '+';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	font-size: 1.5em;
}

.accordion .accordion-box.active .label::before {
	content: '-';
}

.accordion .accordion-box .content {
	position: relative;
	background: #1F2022;
	height: 0;
	overflow: hidden;
/*	transition: 0.5s;*/
	overflow-y: auto;
}

.accordion .accordion-box.active .content {
	height: fit-content;
	padding: 10px;
}

.content {
	display: flex;
	justify-content: space-between;
	background-color: #1F2022;
	font-family: sans-serif;
	color: white;
}

img.select-thumb {
	object-fit: contain;
}

/* Images in a row that does not include text */

div.centerer {
	width: 100%;
	display: flex;
	justify-content: center;
}

/* Ensures images are centered within the "centerer" row */

div.center-image-box {
	display: flex;
	width: 50%;
	justify-content: center;
}

img.just-thumb {
	object-fit: contain;
}

div.content-column {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-left: 10px;
}

.content h4 {
	font-size: 50px;
	display: flex;
	align-items: center;
	border-bottom: 2px solid white;
}

.content h5 {
	font-size: 30px;
	display: flex;
	align-items: center;
}

.content h5 a {
	text-decoration: none;
	color: #FFF;
}

.content h5 a:hover {
	color: crimson;
}

/* ######### !!! PLAYERS !!! ######################################## */

/* Card Grid Containter */

.cards {
	margin: 0 auto;
	max-width: 1000px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	font-family: sans-serif;
}

/* Border Around Individual Cards */

div.card-border {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* Content: Image */

.card-image {
	width: 100%;
	object-fit: cover;
	display: block;
}


/* Image Wrapper */

.area-hover img:last-child {
	display: none;
}

.area-hover:hover img:last-child {
	display: block;
}

.area-hover:hover img:first-child {
	display: none;
}

div.card-content {
	line-height: 1.5;
	font-size: 0.9em;
	padding: 15px;
	background: #EEEEEE;
}

/* Content: Bio Text */

div.card-content h3 {
	text-align: center;
}

div.card-content h4 {
	text-align: center;
}

div.card-content p {
	padding-top: 4px;
	padding-bottom: 4px;
}

div.card-content p.lock {
	text-align: center;
}

/* Content: Statistics Table */

table.stats-table {
	margin-left: auto;
	margin-right: auto;
}

table.stats-table, td {
	margin-top: 4px;
	border: 1px solid;
	background-color: white;
}

table.stats-table td {
	padding: 4px;
}

/* Content: Likes, Dislikes, & Corporate Affiliation */

div.card-info {
	padding: 10px 4px 0px 4px;
	display: flex;
	justify-content: space-between;
	background: #EEEEEE;
	align-items: center;
}

div.card-info i {
	font-size: 1.5em;
}

img.corp-logo {
	width: 150px;
}

/* ######### LEVEL ???: FOOTER LINKS ############################### */

/* Creates the space around the Footer Bar. */
div.footerBar {
	position: relative;
	background-color: #1F2022;
	width: 100%;
	margin-top: 60px;
}

/* Modifies and centers the top line of footer content. */
.footerText {
	font-family: sans-serif;
	color: #FFF;
	font-size: 18px;
	font-weight: 600;
	line-height: 35px;
	text-align: center;
	padding-top: 15px;
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Modifies and centers the bottom line of content. */
.footerLinks {
	text-decoration: none;
	text-align: center;
	padding-bottom: 15px;
}

/* Modifies the text of the footer links. */
.footerLinks a {
	font-family: sans-serif;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	line-height: 35px;
	color: #FFF;
	margin: 5px;
}

.footerLinks a:hover {
	color: crimson;
}

/* ######### MEDIA QUERIES ######################################### */

@media (max-width: 1500px) {
	div.buttons-column {
		width: 100%;
		text-align: center; /* IMPORTANT: CENTERS THE BUTTONS */
	/*	background-color: grey;*/
		margin-top: -350px;
		margin-bottom: 400px;
	}
}

@media (max-width: 1200px) {
	.arc-banner {
		width: 75%;
	}

	.accordion {
		width: 75%;
	}

	img.select-thumb {
		width: 300px;
	}

	.label {
		font-size: 5vh;
	}

	.content h4 {
		font-size: 5vh;
	}

	.content h5 {
		font-size: 3vh;
	}

	div.buttons-column {
		width: 100%;
		text-align: center; /* IMPORTANT: CENTERS THE BUTTONS */
	/*	background-color: grey;*/
		margin-top: -300px;
		margin-bottom: 200px;
	}

}

@media (max-width: 1000px) {
	div.buttons-column {
		width: 100%;
		text-align: center; /* IMPORTANT: CENTERS THE BUTTONS */
	/*	background-color: grey;*/
		margin-top: -230px;
		margin-bottom: 150px;
	}

}

@media (max-width: 755px) {
	header nav {
		display: none;
	}	

	#mobile-menu-block {
		display: block;
	}

	#banner-logo {
		display: none;
	}

	#banner-logo-tight a img {
		display: block;
		width: 80%;
	}

	.panelImage {
		display: none;
	}

	div.buttons-column {
		width: 100%;
		text-align: center; /* IMPORTANT: CENTERS THE BUTTONS */
	/*	background-color: grey;*/
		margin-top: 25px;
		margin-bottom: 100px;
	}

	div.page-heading h1 {
		font-size: 2rem;
	}

	div.inner-box {
		margin-left: 10px;
		margin-right: 10px;
		margin-top: 10px;
		margin-bottom: 10px;
		line-height: 1.2;
	}

	.arc-banner {
		width: 85%;
	}

	.accordion {
		width: 85%;
	}

	img.select-thumb {
		width: 200px;
	}

	.label {
		font-size: 5vh;
	}

	.content h4 {
		font-size: 5vh;
	}

	.content h5 {
		font-size: 3vh;
	}

	img.just-thumb {
		height: 150px;
		width: 150px;
	}

}

@media (max-width: 500px) {
	a.start-button {
		border: 4px solid white;
		color: white;
		padding: 15px 32px;
		text-align: center;
		text-decoration: none;
		font-size: 15px;
		margin: 4px 2px;
		cursor: pointer;
		border-radius: 30px;
		font-family: sans-serif;
		font-weight: bold;
		box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
		transition: all 0.1s;
		-webkit-transition: all 0.1s;
		-moz-transition: all 0.1s;
		-ms-transition: all 0.1s;
		-o-transition: all 0.1;
	}

	a.recent-button {
		border: 4px solid white;
		color: white;
		padding: 15px 32px;
		text-align: center;
		text-decoration: none;
		font-size: 15px;
		margin: 4px 2px;
		cursor: pointer;
		border-radius: 30px;
		font-family: sans-serif;
		font-weight: bold;
		box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
		transition: all 0.1s;
		-webkit-transition: all 0.1s;
		-moz-transition: all 0.1s;
		-ms-transition: all 0.1s;
		-o-transition: all 0.1;
	}

	img.just-thumb {
		height: 100px;
		width: 100px;
	}
}

