/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#fff;
	background-color: #131933;
	font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	font-size: 1vw;	
}

article {
	max-width: 80em;
	width:95%;
	margin:0 auto;
	position:relative;
}



/* header */
.header {
	background-color: #131933;
}
/* logo */
.logo {
	height: 5em;
	padding: 1.5em 0;
	display: flex;
}
.logo a {
	display: contents;
}
.logo-img {
	height: 100%;
	width: auto;
}
/* nav */
.nav {

}
/* sidebar */
.sidebar {

}
/* footer */
.footer {

}

/*------------------------------------*\
    PAGES
\*------------------------------------*/


/* next game box */

.next_game_wrapper {
	display: flex;
	justify-content: center;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.next_game_box {
	margin: 0 auto;
	width: auto;
	display: flex;
	border-radius: 0.5em;
	/*border: 3px solid #fff;*/
	background-color: rgba(255,255,255,0.2);
	overflow: hidden;
	transform: translateY(-25%);
	backdrop-filter: blur(10px);
	-webkit-box-shadow: 0 0 1em 0 rgba(0,0,0,0.5);
	box-shadow: 0 0 1em 0 rgba(0,0,0,0.5);
	transition: all 1s;
	transition-delay: 0.7s;
	opacity: 0;
}

.page_init .next_game_box {
	opacity: 1;
	transform: translateY(-50%);
}

.next_game_datum {
	display: flex;
	flex-direction: column;
	background-color: #000;
	justify-content: center;
	align-items: center;
	padding: 0.5em 1em;
}

.next_game_datum .tx1 {
	font-size: 1.8em;
}

.next_game_datum .tx2 {
	font-size: 0.9em;
}


.next_game_content {
	padding: 0.5em 2em 1em 2em;
}

.next_game_titel {
	font-size: 0.8em;
	text-align: center;
}

.next_game_teams {
	display: flex;
	align-items: center;
}

.next_game_team img {
	height: 5em;
	width: auto;
	transition: all 1s;
	transition-delay: 1.5s;
	opacity: 0;
}

.next_game_team.team1 img {
	transform: translateX(2em)
}
.next_game_team.team2 img {
	transform: translateX(-2em)
}

.page_init .next_game_team img {
	opacity: 1;
	transform: translateX(0em);
}

.next_game_vs {
	display: flex;
	background-image: url(/wp-content/uploads/2025/11/zg_vs.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(4);
	opacity: 0;
	transition: all 1s;
	transition-delay: 1.25s;
}

.page_init .next_game_vs {
	transform: scale(1);
	opacity: 1;
}

.next_game_vs img {
	height: 5em;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 1;
	animation: fadeLoop 3s ease-in-out infinite;
	clip-path: circle(0%);
}


@keyframes fadeLoop {
  0% {
    opacity: 1; clip-path: circle(0%);
  }
  50% {
    opacity: 1; clip-path: circle(100%);
  }
 100% {
    opacity: 0; clip-path: circle(100%);
  }
}

.sponsors_wrapper {
	overflow: hidden;
	padding-bottom: 2em;
	position: relative;
}

.sponsors_wrapper::before {
	content: '';
	position: absolute;
	width: 35%;
	height: 100%;
	top: 0;
	left: 0;
	background: #131933;
background: -webkit-linear-gradient(90deg, rgba(19, 25, 51, 1) 0%, rgba(19, 25, 51, 0) 100%);
background: -moz-linear-gradient(90deg, rgba(19, 25, 51, 1) 0%, rgba(19, 25, 51, 0) 100%);
background: linear-gradient(90deg, rgba(19, 25, 51, 1) 0%, rgba(19, 25, 51, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#131933", endColorstr="#131933", GradientType=1);
	z-index: 2;
}

.sponsors_wrapper::after {
	content: '';
	position: absolute;
	width: 35%;
	height: 100%;
	top: 0;
	right: 0;
	background: #131933;
background: -webkit-linear-gradient(270deg, rgba(19, 25, 51, 1) 0%, rgba(19, 25, 51, 0) 100%);
background: -moz-linear-gradient(270deg, rgba(19, 25, 51, 1) 0%, rgba(19, 25, 51, 0) 100%);
background: linear-gradient(270deg, rgba(19, 25, 51, 1) 0%, rgba(19, 25, 51, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#131933", endColorstr="#131933", GradientType=1);
	z-index: 2;
}


.sponsors_titel {
	font-size: 0.8em;
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding-bottom: 1em;
	position: relative;
	z-index: 3;
}

.sponsors_logos {
	background-image: url(/wp-content/uploads/2025/11/zg_sponsors.svg);
	background-position: center center;
	background-size: 25% auto;
	height: 2.5em;
	width: 200%;
	transform: translateX(-0%);
	background-repeat: repeat-x;
	animation: logoLoop 40s linear infinite;
}

@keyframes logoLoop {
  0% {
    transform: translateX(-0%);
  }
 100% {
    transform: translateX(-50%);
  }
}




/*------------------------------------*\
    IMAGES
\*------------------------------------*/

.home_bg_wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.home_bg {
	width: 100%;
}

.home_bg img {
	width: 100%;
	max-width: unset;
	height: 60vh;
	object-fit: cover;
	object-position: center 58%;
}

.home_logo_sym {
	height: 50%;
	width: auto;
	position: absolute;
	transform: scale(0.25) rotate(-180deg) translateY(-10%);
	opacity: 0;
	transition: all 1s;
}

.page_init .home_logo_sym {
	opacity: 1;
	transform: scale(1) rotate(0deg) translateY(-10%);
}




/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/



@media only screen and (max-width : 1600px)  {
	
	.wrapper {
		font-size: 1.4vw;
	}
		
}


@media only screen and (max-width : 1200px)  {
	
	.wrapper {
		font-size: 1.8vw;
	}
	
	.sponsors_logos {
		width: 300%;
	}
	
}


@media only screen and (max-width : 960px)  {
	
	.wrapper {
		font-size: 2.4vw;
	}
	
	.sponsors_logos {
		width: 400%;
	}
	
}

@media only screen and (max-width : 781px)  {
	
	.wrapper {
		font-size: 3.2vw;
	}
	
	.home_bg {
		position: relative;
		overflow: hidden;
	}
	
	.home_bg img {
		height: 100vw;
		transform: scale(1.4) translateY(-12%);
	}
	
	.sponsors_logos {
		width: 600%;
	}	
	
	.home_logo_sym {
		height: auto;
		width: 60%;
	}
	
}





/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
