@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');


html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Bebas Neue", sans-serif;
	color: #ffffff;
	background: #000000;
}

h2 {
	font-size: 5rem;
	color: #ffffff;
	margin-bottom: 0rem;
	margin-top: 3%;
}

h3 {
	font-size: 2rem;
	color: #ffffff;
}

a {
	font-size: 1.5rem;
}

p {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1.2rem;
	text-align: left;
}

.legal p {
	text-align: center;
	font-size: 0.7rem;
}

.container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

section {
	max-width: 1200px;
	margin: 0 auto;
}

.top-bar {
	background: #111;
	color: white;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.top-bar a:hover {
	text-decoration: underline;
}


.top-bar img {
	max-width: 30vh;
}

.top-bar .wishlist {
	color: white;
	text-decoration: none;
	font-weight: bold;
	font-size: 2rem;
}
.hero {
	position: relative;
	overflow: hidden;
	text-align: center;
	color: white;
	max-width: 100%;
}

.hero-link {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;
	z-index: 1;
}

.hero-left {
	left: 0;
	width: 55.5%;
	clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
		transition: all 0.3s ease;
	z-index: 10;

}

.hero-right {
	right: 0;
	width: 55.5%;
	clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
		transition: all 0.3s ease;
	z-index: 10;
}

.hero-left:hover,
.hero-right:hover {
	background: rgba(255, 255, 255, 0.1);
}

.hero-image {
    width: 100%;
    object-fit: cover;
    display: block;
}


.hero-content {
	position: absolute;
	top: 2%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	z-index: 2;
}

.hero h1 {
	font-size: 5.5rem;
	font-weight: bold;
	margin-bottom: 0rem;
	margin-top: 2rem;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
	text-transform: uppercase;
}

.hero h2 {
	color: #ffffff;
}

.hero-logos {
	display: flex;
	justify-content: center;
	gap: 35%;
	flex-wrap: wrap;
}

.hero-game {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.game-logo {
	max-width: 450px;
	margin-bottom: 1rem;
}
.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 4%;
	width: 75%;
	margin: auto;
	top: -24rem;
	position: relative;
	gap: 20px;
	max-width: 100%;
}

.hero-button-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	z-index: 999;
	width: 100%;
	max-width: 300px;
}

.hero-title {
	font-size: 2.5rem;
	color: #ffffff;
	text-align: center;
	font-weight: bold;
	text-shadow: 1px 1px 2px #000000;
}

.hero-text {
	font-family: "Roboto Condensed", sans-serif;
	color: #ffffff;
	text-align: center;
	font-weight: bold;
	text-shadow: 1px 1px 2px #000000;
	text-decoration: none;
}

.hero-text a {
	font-size: 1.2rem !important;
	color: #ffffff;
	text-decoration: none;
}

.hero-text a:hover {
	color: #ffffff;
	text-decoration: underline;
}

@keyframes shake {
  0%   { transform: skewX(0deg); }
  25%  { transform: skewX(-7deg); }
  50%  { transform: skewX(7deg); }
  75%  { transform: skewX(-7deg); }
  100% { transform: skewX(0deg); }
}

.hero-text a {
  display: inline-block;
  animation: shake 2s infinite alternate;
}



.hero-button-left,
.hero-button-right {
	display: flex;
	gap: 5px;
	justify-content: center;
}

.hero-button-left a,
.hero-button-right a {
	display: inline-block;
	margin: 0;
	text-decoration: none;
	color: inherit;
}

.hero-buttons svg {
	fill: #ffffff;
	width: 40px;
	height: 40px;
}

/* Responsivita */
@media (max-width: 768px) {
	.hero-buttons {
		flex-direction: row;
		align-items: center;
		top: -5rem !important;
	}
}


.hero-left,
.hero-right {
	pointer-events: auto; /* default */
}

.hero-left > *,
.hero-right > * {
	pointer-events: none;
}


.btn {
	display: inline-block;
	padding: 0.7rem 1.5rem;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	text-decoration: none;
	color: white;
	font-size: 1rem;
	background: rgb(57 57 62);
	transition: background 0.3s;
}

.bi-xbox,
.bi-playstation {
	font-size: 2rem;
	width: 1.5em;
	height: 1.5em;
}

.btn.xbox:hover {
	background-color: #107C10;
}

.btn.ps:hover {
	background-color: #003791;
}

.btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

.hero-fade {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 150px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #000000 100%);
	z-index: 1;
}


.video-preview {
	text-align: center;
	margin-top: 40px;
}

.video-thumbnail {
	width: 80%;
	max-width: 800px;
	cursor: pointer;
}

.video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

footer {
	background: #000000;
	padding: 30px 20px;
	text-align: center;
}

.footer-links a {
	margin: 0 10px;
	text-decoration: none;
	color: #ffffff;
	;
	font-weight: bold;
}

.footer-links a:hover {
	text-decoration: underline;

}

div[data-service] {
	min-height: unset;
}



@media only screen and (min-width: 453px) {
	.footer__social {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media only screen and (min-device-width: 400px) and (max-device-width: 452px) {

	.footer__social {
		display: flex;
		flex-wrap: nowrap;
		justify-content: center;
	}
}

@media only screen and (max-width: 400px) {
	.footer__social {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 77%;
	}
}



.footer__icon {
	border: 1px solid #ffffff;
	border-radius: 50%;
	font-size: 20px;
	font-size: 2rem;
	text-align: center;
	line-height: 30px;
	line-height: 3rem;
	width: 30px;
	width: 3rem;
	height: 30px;
	height: 3rem;
	display: block;
	margin: 0 5px 9px 0;
	margin: 0 .5rem .9rem 0;
	overflow: hidden;
}

.footer__icon:hover {
	background-color: #ffffff;
}

.footer__icon svg {
	width: 24px;
	height: 24px;
	transition: transform 0.6s;
	fill: #ffffff;
}

.footer__icon:hover svg {
	transform: scale(1.1);
	fill: #000000;
}

.legal {
	margin-top: 20px;
	font-size: 12px;
	color: #666;
}

@media only screen and (max-width: 1200px) {
	.container {
		flex-direction: column;
		align-items: center;
	}
}

@media only screen and (max-width: 1500px) {
	.hero h1 {
		font-size: 4rem;
	}

	.hero-content {
		width: 100%;
	}

	.signup {
		flex-direction: column;
		gap: 20px;
	}

	.footer__social {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
	}

	.video-preview {
		margin: 30px;
	}

	.game-logo {
		max-width: 20vw;
		margin-bottom: 0;
	}

	.hero h1 {
		font-size: 4.5vw;
	}

	.hero-title {
		font-size: 4vw;
	}

	.hero-text a {
		font-size: 2vw !important;
	}

	.hero h2 {
		font-size: 2.5vw;
	}

	.hero-buttons svg {
		fill: #ffffff;
	}

	.bi-xbox,
	.bi-playstation {
		font-size: 4vw;
		width: 1em;
		height: 1em;
	}

	.hero-buttons {
		padding-top: 10px;
		top: -6rem;
	}

	.hero-fade {
		height: 50px;
	}

	.btn {
		padding: 0.2rem 0.7rem;
	}

	.hero-image {
		height: 80vh;
	}
}

@media only screen and (min-width: 2000px) {

	.hero-image {
		height: 35vw;
	}
}

@media only screen and (max-width: 480px) {
	.video-thumbnail {
		width: 100%;
	}

	.footer-links a {
		font-size: 0.9rem;
	}
}

@media only screen and (max-width: 1000px) {

		.hero-image {
		height: 100%;
	}

	.hero-button-group {
		width: 40%;
	}

}

@media only screen and (max-width: 1024px) {
	.scroll-down-img {
		display: none;
	}
}

.scroll-down-img {
		z-index:999;
		padding-top: 2%;
}

.scroll-down-img img {
	animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(6px);
	}
}


