/* Z-INDEX LEGEND */
/* 1 - Main Site */
/* 2 - Banner and Information */
/* 3 - Modal Windows */
/* 10 - Close Buttons */
/* 1000 - Intro */

:root {
  --discord: rgb(114, 137, 218);
  --discord_bg: rgba(44, 47, 51, 0.8);
  
  --epic: rgb(200, 200, 200);
  --epic_bg: rgba(40, 40, 40, 0.8);

  --merch: rgb(255,170,0);
  --merch_bg: rgba(40, 40, 40, 0.8);
  
  --steam: rgb(199, 213, 224);
  --steam_bg: rgba(23, 26, 33, 0.8);
  
  --twitch: rgb(100, 65, 165);
  --twitch_bg: rgba(25, 23, 28, 0.8);
  
  --youtube: rgb(255, 0, 0);
  --youtube_bg: rgba(40, 40, 40, 0.8);
}

@font-face {
  font-family: 'BriemHand';
  src: url(fonts/BriemHand-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'BriemHand Bold';
  src: url(fonts/BriemHand-Bold.ttf) format('truetype');
}

@font-face {
  font-family: 'BriemHand Semibold';
  src: url(fonts/BriemHand-SemiBold.ttf) format('truetype');
}

a:link, a:active, a:visited {
  color: var(--steam);
  text-shadow: none;
}

a:hover {
  color: white;
  text-shadow: -2px -1px 0 var(--steam_bg), 2px -1px 0 var(--steam_bg), -2px 1px 0 var(--steam_bg), 2px 1px 0 var(--steam_bg);
}

body {
  margin: 0px;
  padding: 0px;
  
  background: black;
  color: white;
  
  font-family: 'BriemHand', 'Arial';
}

body::-webkit-scrollbar {
  display: none;
}



/*-----------------------------------------------------------------------------------------------------  */
.banner {
  width: 100vw;
  height: 75px;
  background: rgba(65, 100, 165, 0.8);
  color: white;
  position: fixed;
  top: 0px;
  left: 0px;
  text-align: center;
  font-size: 2em;
  line-height: 2.2em;
  border-radius: 0 0 15px 15px;
  
  animation-name: close_banner;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-duration: 10s;
  
  overflow: hidden;
  
  z-index: 2;
}

.banner_close {
  position: fixed;
  top: 0px;
  right: 30px;
  cursor: pointer;
  color: rgba(255, 100, 100, 0.7);
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  
  color: rgba(255, 255, 255, 1.0);
  text-shadow: -2px -1px 0 black, 2px -1px 0 black, -2px 1px 0 black, 2px 1px 0 black;
  opacity: 0.6;
  
  z-index: 10;
}

.banner_close:hover {
  opacity: 1.0;
}

@keyframes close_banner {
  0%   { opacity: 1.0; }
  80%   { opacity: 1.0; }
  100% { opacity: 0.0; display: none; }
}



/*-----------------------------------------------------------------------------------------------------  */
.info {
  height: 2vh;
  width: 2vh;
  font-size: 1.3vh;
  font-weight: bold;
  
  border-radius: 50%;
  border: .3em solid white;
  z-index: 2;
  position: fixed;
  bottom: 10px;
  right: 10px;
  text-align: center;
  
  opacity: 0.6;
  
  cursor: pointer;
}

.info:hover {
  height: 3vh;
  width: 3vh;
  font-size: 1.7vh;
  opacity: 1.0;
}



/*-----------------------------------------------------------------------------------------------------  */
.logo {
  max-width:80vw;
  opacity:0.3;
  filter:drop-shadow(0 0 0.75rem black);
  
  animation-name: logo-fade-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-duration: 1s;
  
  cursor: pointer;
}

.logo:hover {
  animation-name: logo-fade-in;
}

@keyframes logo-fade-in {
  0%   { opacity: 0.3; }
  100% { opacity: 1.0; }
}

@keyframes logo-fade-out {
  0%   { opacity: 1.0; }
  100% { opacity: 0.3; }
}



/*-----------------------------------------------------------------------------------------------------  */
.box {
	width: 100vw;
	height: 100vh;
	
	position: relative; /* Required for child content to be centered */
	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	
	box-shadow: 0 0 50px 50px black inset;
	margin-bottom: 25px;
}

.content {
  overflow: auto; /* allows scrollbars in each content */
  
  text-align: center;
	width: 80vw;
	max-height: 80%;

	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	
	color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;

	font-size: 2.5em;
	padding: 10px;
}

.content > span {
  font-size: 0.6em;
}

.content::-webkit-scrollbar {
  display: none;
}

.scrollbar {
  scrollbar-color: var(--scrollbar) var(--scrollbar_bg);
  scrollbar-width: thin;
}



/*-----------------------------------------------------------------------------------------------------  */
.button {
  height: 12vh;
  opacity: 0.6;
  margin: 10px;
}

.button:hover {
  opacity: 1;
  filter: drop-shadow(0 0 10px white);
}

.border {
  border: .2em solid white;
  border-radius: 50%;
}

.circle {
  height: 20vh;
  border-radius: 50%;
  filter:drop-shadow(0 0 0.75rem black);
  opacity: 0.8;
  cursor: pointer;
}

.circle:hover {
  filter: drop-shadow(0 0 10px rgba(100,65,165, 0.8));
}



/*-----------------------------------------------------------------------------------------------------  */
.social_info {
  width: 90%;
  border-radius: 25px;
  font-size: 5vh;
  text-align: center;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
}



/*-----------------------------------------------------------------------------------------------------  */
.modal {
  width: 80vw;
  height: 80vh;
  overflow: auto; /* allows scrollbars in each content */
  scrollbar-color: var(--twitch) var(--twitch_bg);
  scrollbar-width: thin;
  
  color: white;
  background: black;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  border: 3px solid var(--twitch);
  
  padding: 2vh;
  
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  
  display: none;
  
  z-index: 3;
}

.modal_close {
  position: absolute;
  top: 10px;
  right: 30px;
  cursor: pointer;
  font-family: 'BriemHand Bold';
  font-size: 2em;
  color: rgba(255, 255, 255, 1.0);
  text-shadow: -2px -1px 0 var(--twitch), 2px -1px 0 var(--twitch), -2px 1px 0 var(--twitch), 2px 1px 0 var(--twitch);
  opacity: 0.6;
  z-index: 10;
}

.modal_close:hover {
  opacity: 1.0;
}

.modal {
  a:link, a:active, a:visited {
    color: var(--twitch);
    text-shadow: none;
  }
  
  a:hover {
    color: white;
    text-shadow: -2px -1px 0 var(--twitch), 2px -1px 0 var(--twitch), -2px 1px 0 var(--twitch), 2px 1px 0 var(--twitch);
  }
}

.modal_title, .modal_avatar, .modal_info {
  display: inline-block;
  vertical-align: top;
}

.modal_title {
  width: 100%;
  text-align: center;
  
  height: 2em;
  font-size: 2em;
  font-family: 'BriemHand Bold', 'Arial';
  text-shadow: -2px -1px 0 var(--twitch), 2px -1px 0 var(--twitch), -2px 1px 0 var(--twitch), 2px 1px 0 var(--twitch);
}

.modal_avatar {
  width: 30vh;
  height: 30vh;
  
  box-shadow: -3px -3px 20px 5px var(--twitch) inset;
  
  border-color: var(--twitch);
  border-width: 0 3px 3px 0px;
  border-style: solid;
  border-radius: 0% 0% 50% 0%;
  
  position: absolute;
  top: 0px;
  left: 0px;
  
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  z-index: -1;
}

.modal_info {
  width: calc(100% - 32vh);
  padding-left: 30vh; /* Offset for avatar */
  font-size: 1.25em;
  text-shadow: -1px -1px 0 var(--twitch), 1px -1px 0 var(--twitch), -1px 1px 0 var(--twitch), 1px 1px 0 var(--twitch);
}



/*-----------------------------------------------------------------------------------------------------  */
.giveaway_banner {
  width: 20vw;
  min-width: 350px;
  opacity: 0.7;
  transition: opacity .75s ease-in-out;
  vertical-align: middle;
  
  border-radius: 40px;
  border: 5px solid rgbs(0,0,0,0);
  padding: 20px;
  margin: 0px;
}

.giveaway_banner:hover {
  opacity: 1.0;
  transition: opacity .25s ease-in-out;
  filter: drop-shadow(0 0 1rem var(--steam));
  border: 5px solid var(--steam_bg);
  padding: 10px;
  margin: 5px;
}

.focused {
  opacity: 1.0 !important;
  width: 40vw !important;
}

.redeemed, .redeemed:hover {
  opacity: 0.3;
  filter: grayscale(1);
}



@media (orientation: portrait) {
  .giveaway_banner {
    width: 70vw;
  }
}