@import url("res/leaves.css");
@import url("res/fallback.cursor.css");
@import url("res/fallback.badges.css");

html
{
	background-color:black;
	font-family: "Tahoma";
	font-size:8pt;
	font-weight: bold;
	text-shadow: 1px 1px 0px white;

	display:flex;
	min-height: 100%;
	max-width:100%;
	justify-content: flex-start;
	flex-direction: column;
}

body
{
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
	margin: 0px;
	padding: 0px;
	flex-grow: 1;
}

body > a:last-of-type
{
	color: white;
	display:flex;
	position:relative;
	text-shadow: none;
	padding-right:4px;
	justify-content: center;
	flex-direction: column;
	margin-top: -12px;
  margin-bottom: 2px;
}

.footer
{
	height:100%;
	width:100%;
	padding:0;
	margin:0;
	text-transform: lowercase;
	text-align:right;
}

.parent
{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	flex-grow: 1;
}


.header
{
	background-color: black;
	z-index:2;
	display:flex;
	flex-direction: row;
	justify-content: flex-start;
}

.header::before
{
	font-size:48pt;
	color:white;
	content: "🡾";
	/*content: "&#129150;"*/
}

.header::after
{
	font-family: "Ferrite";
	content: "Louve Systems";
	text-transform: lowercase;
	color:white;
	font-size: 48pt;
	letter-spacing: 10px;
  	display: block;
	text-shadow: 1px 1px 0px black;
	padding:10px;
	font-weight: normal;
	padding-left:16px;
	z-index:1;
}

.navigationRight
{
}

.navigationRight .navigationSection
{
}

.navigationLeft, .navigationRight
{
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	border-bottom:1px solid black;
	z-index:2;
}

.navigationLeft div:not(#w3Validator){
	flex: 1;
}

.navigationRight div
{
	flex-grow: 1;
}

.navigationRight .navigationSection .title
{
	flex-grow: 4;
	color:white;
	background-color:black;
	border: none;
	text-shadow: none;
	text-align: right;
	padding-right:4px;
	margin: -1px;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
}

#contactLink
{
	display: none;
}

#w3Validator
{
	display: none;
}

div.horiFlex{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content:space-around;
}

div.horiFlex.contact 
{
	gap: 16px;
}

div.horiFlex.contact p
{
	flex-grow: 1;
}

div.horiFlex.contact p:first-of-type
{
	text-align: right;
}

.navigationSection
{
	display:flex;
	flex-direction: row;
	justify-content: flex;
	background-color: white;
}

a{
	color:inherit;
	text-decoration: none;
}

.navigationSection a{
	display:block;
	margin:0;
	padding:0;
	flex-grow: 1;
	padding-left:8px;
	padding-right:8px;
	border-right: 1px solid black;
}

.navigationSection a:hover
{
	color:white; 
	text-shadow:none;
	background: linear-gradient(
		to right, 
		blue 0%, 
		rgb(90, 128, 255)
	);
}

.bigtitle.profileTitle
{
  display: block;
  background-color: black;
  font-family: "FerriteText";
  font-size: 24pt;
  border: 1px solid black;
  text-transform: lowercase;
  padding: 8px;
  color: white;
}

.profilePage .profileAvatar
{
	width:128px;
	height:128px;
	float: left;
	margin: 0px;
	margin-left: 8px;
	margin-right: 8px;
}

.stackableProfileInfos
{
	margin: 8px;
}

.profilePage
{
	display:flex;
	flex-direction: column;
	color: white;
	text-shadow: 1px 1px 0px black;
	padding: 8px;
	margin: 16px;
	
	background: radial-gradient(circle at top left,rgb(52, 55, 255) 0%, rgba(255, 187, 255, 0) 41%, rgba(255, 255, 255, 0) 100%);
	background-attachment: fixed;
}

.profilePage p
{
	padding: 0px;
}

.wideGameBlocksZone
{
	display:flex;
	flex-direction:column;
	justify-content: space-evenly;
	text-align: left;
	padding-top: 32px;
}

.wideGameBlocksZone a
{
	z-index: 10;
	display: block;
	border: 1px solid black;
	flex: 1 1 0px;
	margin-bottom: 16px;
	margin-left: 88px;
	margin-right:16px;
	transition-duration: 300ms;
}

.wideGameBlocksZone a:hover
{
	margin-left: 32px;
	transition-duration: 300ms;
	border:1px solid white;
}

.wideGameContainer .gameBlockName:hover
{
	background: linear-gradient(
		to right, 
		blue 0%, 
		rgb(90, 128, 255) 430px,
		rgba(0,0,0,1) 430px,
		rgba(0,0,0,1) 100%
	);

	color:white;
}


.wideGameContainer .gameBlockName
{
	padding: 8px;
	background: linear-gradient(
		to right, 
		white 0%, 
		white 430px,
		rgba(255,255,255,0) 430px,
		rgba(255,255,255,0) 100%
	);

	letter-spacing: 10px;

	font-family: "FerriteText";
	font-size:24pt;
	color:black;
	font-weight: normal;
	z-index:1;
	position: relative;
	text-transform: lowercase;

	display:flex;
	flex-direction: row;
	justify-content: flex-start;
}

.wideGameContainer .gameBlockName span
{
	display:block;
}


.wideGameContainer .gameBlockName span:not(.description)
{
	min-width: 430px;
}

.wideGameContainer .gameBlockName:hover span.description
{
	color: white;
	text-shadow: black 2px 2px 1px;
}

.wideGameContainer .gameBlockName span.description
{
	/*
  background: inherit;
  background-clip: text;
  color: transparent;
  filter: invert(1) grayscale(1);

	text-shadow: none;
	*/

	color: rgba(0,0,0,0);
	text-shadow: none;

	font-family: "Tahoma";
	font-size:8pt;
	font-weight: bold;
	content: inherit;

	letter-spacing: normal;
	
	display: flex;
  	flex-direction: column;
  	justify-content: flex-end;
	margin-left: 8px;
}

.wideGameContainer
{
	background-position: top left 420px;
	position: relative;
}

.wideGameContainer::before
{
	position: absolute;
	top : 0;
	bottom:0;
	left:0;
	right:0;
	content: "";
}

.profilePage .gameBlocksZone
{
	display:flex;
	flex-wrap: wrap;
	flex-direction:row;
}


.gameBlocksZone
{
	display:flex;
	flex-direction:column;
	justify-content: space-evenly;
	text-align: left;
	display:none;
}

.main
{
	/*order:99;*/
	
    position:relative;
	background: radial-gradient(circle at top left,rgb(52, 55, 255) 0%, rgb(166, 187, 255) 41%, rgba(255, 255, 255, 1) 100%);
	background-attachment: fixed;

	/*
	background: radial-gradient(circle at top left,rgb(255, 52, 221) 0%, rgb(252, 166, 255) 41%, rgba(255, 255, 255, 1) 100%);

	background: linear-gradient(to bottom, #000000, hsl(350, 100%, 60%));

	background: linear-gradient(to bottom, #255fff, white);
	*/
	flex-grow: 1;
}

.main:not(.portalPage):not(.userList) > .text
{
	margin: 16px;
	background-color: white;
	border:1px solid black;
	padding:8px;
}

.navigationSection p
{
	margin:2px;
}

#userListContainer
{
	display:flex;
	flex-direction: row;
	justify-content: flex-start;
	padding:16px;
	margin:16px;
	flex-wrap: wrap;
	gap: 8px;
}

#userListContainer a{
	display:flex;
	
	border:1px solid black;
	background-color: white;
	flex-direction: column;
	justify-content: space-around;
	
}

#userListContainer a:hover
{
	color:white;
	background: radial-gradient(circle at top left,rgb(52, 55, 255) 0%, rgb(166, 187, 255) 100%);
	border:1px solid white;
	text-shadow: none;
}

#userListContainer a .listName
{
	height:32px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 8px;
	margin-right: 8px;
}

#userListContainer .listNameContainer
{
	display:flex;
	flex-direction: row;
	justify-content: flex-start;
}

#userListContainer a img.profileAvatar
{
	height:32px;
	width:32px;
}

#userListContainer a .listAvatar
{
	display:flex;
}

#userListContainer a .listPosition
{
	display:none;
}

#userListContainer a .listScore
{
	display:none;
}

.navigationSection .title
{
	display:none;
}

.header img
{
	display:none;
}

.bigtitle
{
	display:none;
}

.discordLink
{
	display:none;
}

@font-face {
  font-family: "FerriteText";
  src:
    local("Ferrite Core DX Regular"),
    url("res/FerriteCoreDX-Regular.ttf")
}

@font-face {
  font-family: "Ferrite";
  src:
    local("Ferrite Core DX Display"),
    url("res/FerriteCoreDX-Display.ttf")
}