/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a, a:hover, a:link, a:focus {
    text-decoration: none;
    color: #fff;
}

/* End Reset */

html, body {
    width: 100%; 
    height: 100%;
    overflow-x: hidden;
}

body {
    background-color: #000000;
	color: #FFFFFF;
    margin: 0;
    padding: 0;
	height: 100vh;
    font-family: 'Nunito', sans-serif;
}


/* Body Box */

#body-box {
    display: flex;
	background: url(../media/background.png) no-repeat scroll center top #000;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 950px;
    width: 90%;
    height: auto;
    margin: 0 auto;
}

/* Header Box */

#header-box {
    padding-top: 50px;
    z-index: 10;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

#logo-box, #logo {
    width: 300px;
    height: 132px;
    background: url(../media/BlueWizard-Logo-small.gif) no-repeat;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#logo:hover {
  	filter: drop-shadow(0px 0px 20px #000);
}

#banner {
	width: 100%;
	padding-top: 10px;
}

#intro {
	color: #FFFFFF;
    font-size: 25px;
    font-weight: 700;
	line-height: 33px;
    margin-right: 10px;
	margin-top: 50px;
	text-align: center;
	text-shadow: 1px 1px 5px #000;
}


/* Video Box */

#video-box {
    margin-top: -9%;
    margin-bottom: 25px;
    width: 100%;
    height: auto;
}

#video {
    border: 4px solid #9F0A74;
    position: relative;
    max-width: 800px;
    max-height: 450px;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    margin: 0 auto;
}

#video iframe {
    margin: 0;
    padding: 0;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#video-border {
    border-bottom: 6px solid #6C086B;
    position: absolute;
    bottom: -10px;
    width: 99.9%;
    height: auto;
}




/* Tier Box */

#tier-box {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

#tier {
    margin: 10px;
    background: #0e7697;
    background-image: linear-gradient(#1586a8, #116680);
    border: 4px solid #2a9cc2;
    text-align: center;
    position: relative;
    width: 100%;
    height: auto;
    flex-basis: 280px;
}

#tier-header {
    height: 50px;
    background: #0e5b73;
    background-image: linear-gradient(#2092b6, #0e5b73);
    position: relative;
}

#tier-header h3 {
    font-size: 1.5em;
    font-weight: 800;
    text-shadow: 2px 2px #073e50;
    line-height: 50px;
    margin-right: 10px;
}

#creator {
    width: 28px;
    height: 28px;
    background-image: url(../media/creator-icon.png);
    position: absolute;
    top: 10px;
    right: 10px;
}

#affiliate {
    width: 28px;
    height: 28px;
    background: transparent url(../media/affiliate-icon.png) no-repeat;
    position: absolute;
    top: 10px;
    right: 10px;
}

#partner {
    width: 28px;
    height: 38px;
    background: transparent url(../media/partner-icon.png) no-repeat;
    position: absolute;
    top: 0px;
    right: 10px;
}

#tier-content {
    text-shadow: 1px 1px #073e50;
    color: #ecfaff;
    font-weight: 500;
    font-size: 1.1em;
}

#tier-content ul {
    padding: 15px 0px 15px 35px;
    text-align: left;
}

#tier-content ul li {
    line-height: 1.5em;
    position: relative;
    list-style-image: url(../media/list-icon.png);
}

#tier-content li span {
    color: #ff86af;
    font-weight: 700;
}

.list-icon {
    width: 16px;
    height: 16px;
    background: transparent url(../media/list-icon.png) no-repeat;
    position: absolute;
}

#tier-border {
    border-bottom: 6px solid #0a5871;
    width: 99.9%;
    position: absolute;
    bottom: -10px;
}

.logo-space figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.logo-space figure:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.tier-header {
    height: 50px;
    background-image: linear-gradient(#0e5b73, #0e5b73);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
    position: relative;
}

.tier {
	margin: 10px;
    background: #FFFFFF;
	border-radius: 10px;
    text-align: center;
    position: relative;
    width: 100%;
    height: auto;
    flex-basis: 280px;
}

.tier-border {
	border-bottom: 6px solid #0a5871;
    width: 99.9%;
    position: absolute;
    bottom: -10px;
}

.tier-content {
    color: #181616;
    font-weight: 700;
	line-height: 20px;
    font-size: 1.1em;
	text-align: left;
	padding: 25px;
}

.header {
	color: #E71E56;
	font-weight: 900;
	font-size: 15px;
}

.perks {
	padding-left: 25px;
	text-indent: -15px;
}

.perks li {
	margin: 0 0 10px 0;
}
#creator-tier-header {
	padding-top: 20px; 
	height: 50px;
    background-image: linear-gradient(#6CDEAF, #48C995);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
    position: relative;
	font-size: 2em;
	font-weight: 700;
}

#affiliate-tier-header {
	padding-top: 20px; 
	height: 50px;
    background-image: linear-gradient(#EB44E0, #DA13CF);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
    position: relative;
	font-size: 2em;
	font-weight: 700;
}

#partner-tier-header {
	padding-top: 20px; 
	height: 50px;
    background-image: linear-gradient(#FFA225, #F38D27);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
    position: relative;
	font-size: 2em;
	font-weight: 700;
}


/* Apply Box */

#apply-box {
    margin-bottom: 15px;
	margin-top: 20px;
    width: 70%;
    height: auto;
}

#apply-link {
    text-decoration: none;
    color: #fff;
}

@keyframes applybutton-default-anim {
    from { background: #ff5d93; }
    to { background: #f0145f; }
}

#apply-button {
    background: #ff0169;
    border-radius: 20px;
    border: 4px solid #D0025E;
    text-align: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
	padding: 15px;
	box-shadow:
        inset 0 0 2px 0 rgba(255,255,255,.4),
        inset 0 0 3px 0 rgba(0,0,0,.4),
        inset 0 0 3px 5px rgba(0,0,0,.05),
        2px 2px 4px 0 rgba(0,0,0,.25);
}

@keyframes applybutton-hover-anim {
    from { background: #ff0169; }
    to { background: #ff4491; }
}

#apply-link:hover #apply-button {
    animation: applybutton-hover-anim 0.2s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

#apply-empty {
    width: 10%;
}

#apply-now-icon {
	-webkit-filter: drop-shadow(2px 2px #801d3f);
 	filter: drop-shadow(3px 3px #801d3f);
}

#apply-text {
    font-size: 40px;
    font-weight: 800;
	padding-left: 30px;
}

#apply-link:hover #apply-button #apply-text {
    animation: applytext-hover-anim 0.2s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

#apply-link:link #apply-button #apply-icon {
    animation: applyicon-default-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
	background: url("../media/facebook-icon.png") no-repeat;
}

@keyframes applyicon-default-anim {
    from { margin: 15px 20px 15px; }
    to { margin: 15px 30px 15px; }
}

#apply-icon {
    margin: 15px 30px 15px;
    width: 8%;
    height: auto;
}

#apply-link:hover #apply-button #apply-icon {
    animation: applyicon-hover-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

@keyframes applyicon-hover-anim {
    from { margin: 15px 30px 15px; }
    to { margin: 15px 20px 15px; }
}

#apply-now-icon {
    background: url("../media/discord-icon.png") no-repeat;
	margin-left: 25px;
}



/* Game Icons */

#game-logos {
	margin-top: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    height: auto;
}

.logo-space {
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 20px;
}


/* Share Box */

#share-box {
    width: 100%;
    height: auto;
	padding-top: 50px;
	padding-bottom: 100px;
}

#share-panel {
    text-align: center;
}

#share-header {
	color: #FFFFFF;
    font-size: 25px;
    font-weight: 900;
    margin-right: 10px;
}

#share-content {
    margin: 0px 4px 0px 4px;
    padding: 10px;
}

#share-buttons {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

#share-buttons a {
    width: 100%;
    height: auto;
    flex-basis: 190px;
    margin: 5px;
}


.share-button {
    position: relative;
}

.share-button p {
    color: #fff;
    font-size: 1.7em;
    font-weight: 700;
    line-height: 60px;
    margin-left: 40px;
}

#share-facebook {
	border-radius: 20px;
	-webkit-filter: drop-shadow(4px 4px 10px #000b37);
 	filter: drop-shadow(4px 4px 10px #000b37);
}

@keyframes share-facebook-default-anim {
    from { background: #4267b2; }
    to { background: #5883fc; }
}

#share-buttons a:link #share-facebook {
    animation: share-facebook-default-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

@keyframes share-facebook-hover-anim {
    from { background: #5883fc; }
    to { background: #4267b2; }
}

#share-buttons a:hover #share-facebook {
    animation: share-facebook-hover-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

#facebook-icon {
    width: 40px;
    height: 40px;
    background: url(../media/facebook-icon.png) no-repeat;
    position: absolute;
    top: 10px;
    left: 10px;
}

@keyframes icon-facebook-default-anim {
    from { transform: rotate(15deg); }
    to { background: rotate(0deg); }
}

#share-buttons a:link #facebook-icon {
    animation: icon-facebook-default-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

@keyframes icon-facebook-hover-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(15deg); }
}

#share-buttons a:hover #facebook-icon {
    animation: icon-facebook-hover-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

#share-instagram {
	border-radius: 20px;
	-webkit-filter: drop-shadow(4px 4px 10px #000b37);
 	filter: drop-shadow(4px 4px 10px #000b37);
}

@keyframes share-instagram-default-anim {
    from { background: #a9076b; }
    to { background: #e1068f; }
}

#share-buttons a:link #share-instagram {
    animation: share-instagram-default-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

@keyframes share-instagram-hover-anim {
    from { background: #e1068f; }
    to { background: #a9076b; }
}

#share-buttons a:hover #share-instagram {
    animation: share-instagram-hover-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

#instagram-icon {
    width: 40px;
    height: 40px;
    background: url(../media/instagram-icon.png) no-repeat;
    position: absolute;
    top: 10px;
    left: 10px;
}

@keyframes icon-instagram-default-anim {
    from { transform: rotate(15deg); }
    to { background: rotate(0deg); }
}

#share-buttons a:link #instagram-icon {
    animation: icon-instagram-default-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

@keyframes icon-instagram-hover-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(15deg); }
}

#share-buttons a:hover #instagram-icon {
    animation: icon-instagram-hover-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

#share-twitter {
	border-radius: 20px;
	-webkit-filter: drop-shadow(4px 4px 10px #000b37);
 	filter: drop-shadow(4px 4px 10px #000b37);
}

@keyframes share-twitter-default-anim {
    from { background: #02a1c9; }
    to { background: #0ebfeb; }
}

#share-buttons a:link #share-twitter {
    animation: share-twitter-default-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

@keyframes share-twitter-hover-anim {
    from { background: #0ebfeb; }
    to { background: #02a1c9; }
}

#share-buttons a:hover #share-twitter {
    animation: share-twitter-hover-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

#twitter-icon {
    width: 40px;
    height: 40px;
    background: url(../media/twitter-icon.png) no-repeat;
    position: absolute;
    top: 10px;
    left: 10px;
}

@keyframes icon-twitter-default-anim {
    from { transform: rotate(15deg); }
    to { background: rotate(0deg); }
}

#share-buttons a:link #twitter-icon {
    animation: icon-twitter-default-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

@keyframes icon-twitter-hover-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(15deg); }
}

#share-buttons a:hover #twitter-icon {
    animation: icon-twitter-hover-anim 0.5s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

#share-text p {
    line-height: 1.3em;
    font-weight: 700;
    font-size: 1.1em;
    text-shadow: 1px 1px #503515;
    color: #fffbe3;
    padding: 10px;
}

#addthis {
    padding: 10px;
}

.at-share-btn-elements a.at-icon-wrapper {
    border-bottom: 4px solid #bf7024;
}

#share-footer {
    height: 60px;
}

#share-text p {
	margin: -5px;
}

#info-content p {
    font-weight: 500;
}

p#info-title {
    font-weight: 700;
    font-size: 1.1em;
    color: #fff;
    padding: 10px;
}



/* Footer Box */

#footer-box {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;

}

.footer-button {
    width: 180px;
    height: 40px;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px #073e50;
    text-align: center;
}

#footer-copyright {
    color: #7B7B7B;
    font-weight: 600;
    margin: 20px 20px;
    text-align: center;
	column-span: all;
}

#social-links {
	display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.social-space {
	margin-right: 10px;
	margin-left: 10px;
}

.social-space:hover {
  	filter: drop-shadow(0px 0px 15px #feface);
}
#background {
height: auto;
   left: 0;
   margin: 0;
   min-width: 674px;
   padding: 0;
   position: fixed;
   top: 0;
   width: 100%;
   z-index: -1;
}
