@font-face {
	font-family: 'CustomRegular';
	src: url('./static/Regular.ttf') format('truetype');
	font-weight: normal;
}
@font-face {
	font-family: 'CustomBold';
	src: url('./static/Bold.ttf') format('truetype');
	font-weight: bold;
}

.header {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 20px;
	align-items: center;
	z-index: 3;
}

.header-logo {
	font-family: 'CustomBold', Arial, sans-serif;
	color: #54D9A5 !important;
	font-size: 1.8em;
	text-decoration: none;
	cursor: pointer;
}

.header-links {
	display: flex;
	gap: 20px;
	align-items: center;
}

.header-links a {
    font-size: 1em;
	font-family: 'CustomRegular', Arial, sans-serif;
    color: #fff; 
    text-decoration: none;
    padding: 16px 1px; 
    margin-right: 1px; 
    transition: all 0.3s ease; 
}

.header-links a.active {
	font-family: 'CustomBold', Arial, sans-serif;
    font-size: 1.8em;
    color: #54D9A5; 
}

.header-links a:hover {
    background-color: transparent;
    color: #54D9A5;
}

.header-links a.header-logo {
    font-size: 1.8em;
    color: #ffcc00;
    background-color: #333;
    border-radius: 5px;
}

.header-links a.header-logo:hover {
    background-color: #555;
    color: #fff;
}

body {
	margin: 0;
	font-family: 'CustomRegular', Arial, sans-serif;
	background-color: #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	overflow: hidden;
	position: relative;
	background: linear-gradient(135deg, rgba(84, 217, 165, 0.1), rgba(0, 0, 0, 0.6)), #111;
	background-size: 400% 400%;
	animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.container {
	display: flex;
	max-width: 1200px;
	margin: 20px;
	gap: 40px;
	position: relative;
}

.background-glow {
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(84, 217, 165, 0.6), rgba(0,0,0,0));
	border-radius: 50%;
	z-index: 1;
	filter: blur(80px);
}

.glow-left {
	left: -100px;
	top: -50px;
}

.glow-right {
	right: -100px;
	bottom: -50px;
}

.screenshot1 {
    flex: 1;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 85%;
    max-width: 400px;
    max-height: 400px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 1s ease-in-out;
    transform-origin: center center;
}

.screenshot1:hover img {
    transform: scale(1.05);
}

.screenshot {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    width: 50%;
    height: 50%;
    max-width: 760px;
    max-height: 720px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 1s ease-in-out;
    border-radius: 10px;
    transform-origin: center center;
}

.screenshot:hover img {
    transform: scale(1.06);
}

.description {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	position: relative;
	z-index: 2;
}

.description h1 {
	font-size: 2.5em;
	font-family: 'CustomBold', Arial, sans-serif;
	color: #54D9A5;
	margin: 0;
	text-shadow: 0 4px 10px rgba(84, 217, 165, 0.5);
}

.description p {
	font-size: 1.1em;
	line-height: 1.6;
	color: #ccc;
	animation: fadeInUp 0.6s forwards;
	transform: translateY(20px);
	opacity: 0;
}

.button-container {
	display: flex;
	gap: 15px;
	justify-content: flex-start;
}

.button {
	padding: 10px 20px;
	background-color: #54D9A5;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1em;
	transition: background-color 0.3s ease, transform 0.3s ease;
	margin-top: 20px;
	text-decoration: none;
	text-align: center;
	display: inline-block;
	font-family: 'CustomBold', Arial, sans-serif;
	box-shadow: 0 4px 10px rgba(84, 217, 165, 0.6);
}

.button:hover {
	background-color: #3CA884;
	transform: scale(1.05);
}

.button:active {
	transform: scale(0.98);
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.content, .battlepass-content {
	display: none;
}
.content.active, .battlepass-content.active {
	display: block;
}

.fade-in {
    animation: fadeIn 1.0s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.section {
    display: none;
}