
@font-face {
    font-family: 'Crew';
    src: url('files/fonts/Crew.ttf') format('truetype');
}

@font-face {
    font-family: 'WishingStar';
    src: url('files/fonts/WishingStar.otf') format('opentype');
}

            :root {
                --body-bg-image: url('files/backdrop.png');
		--bg-image: url('./files/background.png');
		--logo-image: url('files/logo.png');
		--dot-image: url('files/background-foot.png');
		--dot-body: url('files/background-main.png');
		--dot-dark: url('files/dots.png');
		--dot-red: url('files/dots-red.png');
		--dot-yellow: url('files/dots-yellow.png');
		--dot-green: url('files/dots-green.png');
		--dot-blue: url('files/dots-blue.png');
		--dot-purple: url('files/dots-purple.png');

		--jester-image: url('./files/jestico.gif');
		--robot-image: url('./files/botico.gif');
		--fairy-image: url('./files/fairico.gif');
		--pirate-image: url('./files/piratico.gif');
		--daredevil-image: url('./files/darico.gif');
		--cowboy-image: url('./files/cowico.gif');

				/* body */
		--primary: #4bcdff;
		--secondary: #5d6e76;
		--tertiary: #e6eff0;
		--tabs: #ccf1ff;
		--poll: #ffed6e;

		--pirate-m: #f771b3;
		--pirate-p: #6a4da8;
		--pirate-t: #6ddbd8;
		--pirate-y: #f7d08f;

		--fairy-p: #feacb9;
		--fairy-g: #94ec97;
		--fairy-w: #e6eff0;
		--fairy-y: #feeea8;

		--devil-w: #e6eff0;
		--devil-o: #fa724b;
		--devil-b: #44bff6;
		--devil-y: #fbe288;

		--robot-lp: #ffccd7;
		--robot-y: #f7cb6d;
		--robot-p: #ff94c1;
		--robot-w: #e6eff0;

		--jester-db: #4c84d5;
		--jester-r: #e1465b;
		--jester-b: #6ac6e7;
		--jester-g: #d5f4c8;

		--cowboy-lb: #c7954f;
		--cowboy-r: #ce4133;
		--cowboy-b: #683f34;
		--cowboy-g: #96e09e;


				/*news*/

		--red: #ffbbbd;
		--orange: #ffdaa3;
		--yellow: #fffb9a;
		--green: #b8ffc8;
		--blue: #9bf1f3;
		--purple: #f2aaff;

				/*nav*/

		--navred: #ed5056;
		--navyellow: #f4d66e;
		--navgreen: #8ff26b;
		--navblue: #56c0e3;
		--navpurple: #b886c0;

		--navredon: #e1383e;
		--navyellowon: #ffbe44;
		--navgreenon: #39e548;
		--navblueon: #3991ed;
		--navpurpleon: #9a58af;

		}

/*SCROLLBAR*/

	/* width */
::-webkit-scrollbar {
	width: 12px;
	height: 12px;
	}

	/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 0 3px black; 
	background: #00000036;
	}
 
	/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--tertiary); 
	border: 3px solid black;
	}

	/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--poll); 
	border: 3px solid black;
	}

/*BASICS*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}

body {
	font-family: WishingStar, sans-serif;
	min-height: 100vh;
	display: grid;
	}

.parallax-wrap {
  position: relative;
  min-height: 100vh; 
}

.backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;         /* expand to viewport width by default */
  min-width: max(100%, 907px);
  height: 100%;
  background: var(--body-bg-image) center / cover no-repeat;
  transform: translateY(0);
  will-change: transform;
  z-index: 0;
}

.wrapper {
  position: relative;  
  z-index: 1;
  width: 907px;
  min-width: 907px; 
  padding: 20px 0;
  margin: 0 auto; 
}


.banner {
	display: flex;
	align-items: flex-end;
	}

.logo {
  content: var(--logo-image);
  width: 320px;
  top: 10px;
  position: relative;
}

.container {
	display: flex;
	}

.sidebar {
	width: 100%;
	text-align: center;
	z-index: 2;
	}

.main-content {
	flex-grow: 1;
	background: var(--primary);
	padding: 10px;
	text-align: center;
	border: 3px solid black;
	z-index: 4;
	min-width: 550px;
	max-width: 550px;
	max-height: 600px;
	min-height: 600px;
	background-image: url(./files/background-main.png);
	background-size: 5px 375px;
	background-repeat: repeat-x;
	background-position: bottom;
	justify-items: center;
	font-size: 16px;
	}

.footer {
	background: var(--primary);
	text-align: center;
	padding: 15px;
	border: 3px solid black;
	display: grid;
	position: relative;
	top: 10px;
	box-shadow: 0px 3px 0px black;
	width: 550px;
	background-image: url(./files/background-foot.png);
	background-size: 5px 5px;
	place-self: center;
	}

	footer:empty::before {
		content: "4444, 2026";
		font-family: Crew, fantasy;
		color: var(--tertiary);
		-webkit-text-stroke-width: 6px;
		-webkit-text-stroke-color: black;
		paint-order: stroke fill;
		font-size: 30px;
		}

/*CONTAINERS*/
	/*NAVIGATION*/
.nav {
	width: 150px;
	height: 250px;
	padding-top: 20px;
	text-align: center;
	font-size: 18px;
	transform: rotateX(-13deg) rotateY(20deg) rotateZ(-2deg);
	display: grid;
	position: relative;
	align-content: space-between;
	}

.navhome {
	width: 165px;
	height: 40px;
	background: var(--navred);
	border: 3px solid black;
	text-align: center;
	font-size: 30px;
	box-shadow: -3px 0px 0px 0px black;
	-webkit-text-stroke-width: 6px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
	position: relative;
	font-family: Crew, fantasy;
	color: var(--tertiary);
	display: grid;
	align-content: center;
	left: 0;
	transition: 0.1s;
	}

.navhome:hover {
	width: 175px;
	background: var(--navredon);
	box-shadow: -3px 0px 0px 0px black;
	left: -10px;
	color: var(--poll);
	background-image: var(--dot-red);
	background-size: 5px 5px;
	}

.navabout {
	width: 165px;
	height: 40px;
	background: var(--navyellow);
	border: 3px solid black;
	text-align: center;
	font-size: 30px;
	box-shadow: -3px 0px 0px 0px black;
	-webkit-text-stroke-width: 6px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
	position: relative;
	font-family: Crew, fantasy;
	color: var(--tertiary);
	display: grid;
	align-content: center;
	left: 0;
	transition: 0.1s;
	}

.navabout:hover {
	width: 175px;
	background: var(--navyellowon);
	box-shadow: -3px 0px 0px 0px black;
	left: -10px;
	color: var(--poll);
	background-image: var(--dot-yellow);
	background-size: 5px 5px;
	}

.navcomic {
	width: 165px;
	height: 40px;
	background: var(--navgreen);
	border: 3px solid black;
	text-align: center;
	font-size: 30px;
	box-shadow: -3px 0px 0px 0px black;
	-webkit-text-stroke-width: 6px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
	position: relative;
	font-family: Crew, fantasy;
	color: var(--tertiary);
	display: grid;
	align-content: center;
	left: 0;
	transition: 0.1s;
	}

.navcomic:hover {
	width: 175px;
	background: var(--navgreenon);
	box-shadow: -3px 0px 0px 0px black;
	left: -10px;
	color: var(--poll);
	background-image: var(--dot-green);
	background-size: 5px 5px;
	}

.navgame {
	width: 165px;
	height: 40px;
	background: var(--navblue);
	border: 3px solid black;
	text-align: center;
	font-size: 30px;
	box-shadow: -3px 0px 0px 0px black;
	-webkit-text-stroke-width: 6px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
	position: relative;
	font-family: Crew, fantasy;
	color: var(--tertiary);
	display: grid;
	align-content: center;
	left: 0;
	transition: 0.1s;
	}

.navgame:hover {
	width: 175px;
	background: var(--navblueon);
	box-shadow: -3px 0px 0px 0px black;
	left: -10px;
	color: var(--poll);
	background-image: var(--dot-blue);
	background-size: 5px 5px;
	}

.navextra {
	width: 165px;
	height: 40px;
	background: var(--navpurple);
	border: 3px solid black;
	text-align: center;
	font-size: 30px;
	box-shadow: -3px 0px 0px 0px black;
	-webkit-text-stroke-width: 6px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
	position: relative;
	font-family: Crew, fantasy;
	color: var(--tertiary);
	display: grid;
	align-content: center;
	left: 0;
	transition: 0.1s;
	}

.navextra:hover {
	width: 175px;
	background: var(--navpurpleon);
	box-shadow: -3px 0px 0px 0px black;
	left: -10px;
	color: var(--poll);
	background-image: var(--dot-purple);
	background-size: 5px 5px;
	}


	/*ADVERT*/
.ad {
	width: 136px;
	padding: 3px;
	background: black;
	clip-path: polygon(0% 4%, 100% 0%, 100% 100%, 0% 100%);
	height: 260px;
	left: 8px;
	position: relative;
	padding-left: 6px;
	top: 5px;
	}

.adin {
	width: 100%;
	background: var(--primary);
	clip-path: polygon(0% 4%, 100% 0%, 100% 100%, 0% 100%);
	height: 100%;
	position: relative;
	}

	/*POLL*/
.poll {
	width: 170px;
	padding: 6px;
	background: var(--poll);
	border: 3px solid black;
	text-align: left;
	font-size: 15px;
	transform: rotateX(-14deg) rotateY(-24deg) rotateZ(3deg);
	height: auto;
	left: -20px;
	position: relative;
	box-shadow: 3px 0px 0px black;
	padding-top: 24px;
	z-index: 5;
	min-height: 243px;
	}

	/*LINKS*/
.links {
	width: 136px;
	padding: 3px;
	background: black;
	clip-path: polygon(0% 0%, 100% 8%, 100% 100%, 0% 100%);
	height: 216px;
	left: 8px;
	position: relative;
	padding-right: 6px;
	top:0px;
	}

.linkin {
	width: 100%;
	background: var(--primary);
	clip-path: polygon(0% 0%, 100% 8%, 100% 100%, 0% 100%);
	height: 100%;
	position: relative;
	padding-top: 32px;
	}

	/*REGULARS*/
.regularright {
	width: 133px;
	height: 319px;
	/*background: var(--primary);*/
	/*border: 3px solid black;*/
	text-align: center;
	left: -10px;
	position: relative;
	/*box-shadow: 3px 0px 0px black;*/
	/*margin-top: 8px;*/
	top: -13px;
	align-content: flex-end;
	z-index: 5;
	}

.regularleft {
	width: 133px;
	height: 74px;
	/*background: var(--primary);*/
	/*border: 3px solid black;*/
	text-align: center;
	left: 11px;
	position: relative;
	/*box-shadow: -3px 0px 0px black;*/
	margin-top: 8px;
	top: 0px;
	align-content: center;
	}

	/*BANNER-MAIN*/
.bannerad {
	width: 100%;
	height: 100%;
	background: var(--tertiary);
	text-align: center;
	clip-path: polygon(0% 0%, 100% 7%, 99% 96%, 1% 100%);
	}

.bannerborder {
	width: 520px;
	height: 190px;
	padding: 3px;
	background: black;
	text-align: center;
	font-size: 18px;
	clip-path: polygon(0% 0%, 100% 7%, 99% 96%, 1% 100%);
	}

	/*CHARACTERS*/

.characters {
	width: 100%;
	perspective: 500px;
	-webkit-perspective: 500px;
	top: 19px;
	position: relative;
	}

.all-in {
	width:100%;
	height:462px;
	display: flex;
	justify-content: space-between; /* Space out the divs */
	}

.char-container {
	position: relative;
	animation-name: float;
	animation-duration: 3s;
	animation-iteration-count: 1;
	z-index: 0; 
	}


.prop-container {
	position: relative;
	animation-name: floatbike;
	animation-duration: 2s;
	animation-iteration-count: 1;
	z-index: 0; 
	}

.bird-container {
	position: relative;
	animation-name: floatparrot;
	animation-duration: 2s;
	animation-iteration-count: 1;
	z-index: 0; 
	}


@keyframes float {
	0% {
	opacity: 0;
	transform: translateX(150px);
	}

	10% {
	opacity: 0;
	transform: translateX(150px);
	}

	30% {
	opacity: 1;
	transform: translateX(-20px);
	}

	50% { transform: translateX(5px);
	}

	70% { transform: translateX(0);}
	}

@keyframes floatbike {
	0% {
	opacity: 0;
	transform: translateX(200px);
	}

	20% {
	opacity: 1;
	}


	40% { transform: translateX(0);}
	}




@keyframes floatparrot {
	0% {
	opacity: 0;
	transform: translate(200px, 150px)  scale(0.5);
	}

	40% {
	opacity: 1;
	}


	40% {
	 transform: translate(0, 0)  scale(1);}
	}




.overlapping-char-image {
	position: absolute;
	z-index: 10;
	}


.names {
	font-size: 70px;
	font-weight: bold;
	color: var(--tertiary);
	align-items: center;
	font-family: Crew, fantasy;
	-webkit-text-stroke-width: 6px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
 	}

	/*LOGO*/
.titlebanner {
	width: 500px;
	height: 155px;
	z-index: 3;
	display: grid;
	justify-content: end;
	position: relative;
	top: 14px;
	left: 32px;
	pointer-events: none;
	transform: rotate(354deg);
	}


	/*BOX-TITLES*/
.fortitle {
	width: 306px;
	height: 0px;
	text-align: right;
	font-size: 60px;
	position: relative;
	z-index: 10;
	font-family: Crew, fantasy;
	-webkit-text-stroke-width: 6px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
	color: var(--tertiary);
	}

.regtitle {
	text-align: center;
	font-size: 60px;
	position: relative;
	font-family: Crew, fantasy;
	-webkit-text-stroke-width: 6px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
	color: var(--tertiary);
	}


/*SIDEBAR SETTINGS*/
.left {
	display: flex;
	flex-direction: column;
	perspective:500px;
	-webkit-perspective: 500px;
	position: relative;
	left: 26px;
	}

.left-news {
	display: flex;
	flex-direction: column;
	perspective:500px;
	-webkit-perspective: 500px;
	position: relative;
	}

.right {
	display: flex;
	flex-direction: column;
	perspective:500px;
	-webkit-perspective: 500px;
	z-index: 5;
	position: relative;
	}

.right-feat {
	display: flex;
	flex-direction: column;
	perspective:500px;
	-webkit-perspective: 500px;
	z-index: 5;
	position: relative;
	align-items: self-end;
	left: -4px;
	}

/*HIGHLIGHT ON HOVER*/
	/* Default*/
.hover-filter {
	width: fit-content;
	height: fit-content;
	transition: 0.1s ease-in-out;
	}

	/*On hover */
.hover-filter:hover {
	filter: brightness(150%);
	}


/*CHARACTER PORTRAIT*/
.char-icon {
	height:65px;
	width:65px;
	box-shadow: 3px -3px 0px black, -3px -3px 0px black;
	background-position: center;
	position: relative;
	top: 0;
	transition: 0.1s;
	}

.char-icon:hover {
	height:65px;
	width:65px;
	box-shadow: 3px -3px 0px black, -3px -3px 0px black;
	background-position: center;
	top: -16px;
	}

/*VIDEO STYLE*/
.styled-video {
	overflow: hidden;
	}

/*VIDEO INTRO*/
video {
	 width: 100%;
	max-width: 600px;
	transition: opacity 1.5s ease-out; /* Smooth fade-out effect */
	position: relative;
	z-index: 10;
	}
.hidden {
	opacity: 0; /* Make the video invisible */
	}

/*EXTRAS BANNER*/
.extra {
	width: 500px;
	height: 136px;
	background: var(--secondary);
	border: 3px solid black;
	text-align: start;
	position: relative;
	box-shadow: 0px 3px 0px black;
	margin-bottom: 10px;
	padding: 4px;
	color: black;
	font-size: 30px;
	font-family: Crew, fantasy;
	-webkit-text-stroke-width: 6px;
	-webkit-text-stroke-color: white;
	paint-order: stroke fill;
	}

/*GALLERY*/

.gallery {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: center;
	}

.gallery-item {
	display: none; /* Hide by default, shown by JS */
	}

.gallery-item:hover  {
	transform: scale(1.05);
	}

.gallery-item img {
	width: 100%;
	display: block;
	}

.controls {
	display: flex;
	width: -webkit-fill-available;
	justify-content: space-between;
	padding-top: 4px;
	align-items: center;
	}

.controls label {
	margin-right: 10px;
	font-size: 14px;
	}

/*BUTTON REP*/
button {
	background-color: #ffffff75;
	border: 2px solid black;
	color: black;
	padding-bottom: 1px;
	padding-top: 2px;
	padding-left: 2px;
	padding-right: 3px;
	text-decoration: none;
	font-size: 14px;
	box-shadow: inset -1px -1px 0px black;
	vertical-align: middle;
	font-family: WishingStar, sans-serif;
	}

button:hover {
 	background-color: #cbcbcb54;
	cursor: pointer;
	box-shadow: inset 1px 1px 0px black;
	padding-bottom: 0px;
	padding-top: 3px;
	vertical-align: middle;
	padding-left: 3px;
	padding-right: 2px;
	}


input[type=button], input[type=submit] {
	background-color: #ffffff75;
	border: 2px solid black;
	color: black;
	padding-bottom: 1px;
	padding-top: 2px;
	padding-left: 2px;
	padding-right: 3px;
	text-decoration: none;
	font-size: 14px;
	box-shadow: inset -1px -1px 0px black;
	vertical-align: middle;
	font-family: WishingStar, sans-serif;
	}

input[type=button], input[type=submit]:hover {
 	background-color: #cbcbcb54;
	cursor: pointer;
	box-shadow: inset 1px 1px 0px black;
	padding-bottom: 0px;
	padding-top: 3px;
	vertical-align: middle;
	padding-left: 3px;
	padding-right: 2px;
	}
