@font-face {
	font-family: 'Hezaedrus-Regular';
	src: url('../fonts/Hezaedrus-Regular.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: 'Hezaedrus-Bold';
	src: url('../fonts/Hezaedrus-Bold.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: 'Hezaedrus-Medium';
	src: url('../fonts/Hezaedrus-Medium.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: 'Hezaedrus-Light';
	src: url('../fonts/Hezaedrus-Light.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: 'gogono-cocoa';
	src: url('../fonts/gogono-cocoa-mochi-cyrillic.otf') format('truetype');
	font-style: normal;
	font-weight: normal;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Hezaedrus-Regular, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	background: #fff;
}

section {
	scroll-margin-top: 90px;
}

.container {
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 20px;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hero {
	padding: 40px 0;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1.55fr 0.45fr;
	gap: 12px;
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 40px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	min-height: 536px;
}

.hero-title {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 90px;
}

.hero-title::before {
	content: '';
	position: absolute;
	left: -40px;
	top: 50%;
	transform: translateY(-50%);
	width: 595px;
	height: 120px;
	background: rgba(255, 78, 155, 0.45);
	filter: blur(80px);
	border-radius: 100px;
	z-index: 0;
}

.hero-title h1 {
	font-family: 'gogono-cocoa';
	font-size: 96px;
	color: #ff4e9b;
	position: relative;
	z-index: 1;
}

.hero-coin {
	position: absolute;
	left: -10px;
	top: -10px;
	z-index: 2;
}

.hero-subtitle {
	font-size: 24px;
	font-family: 'Hezaedrus-Medium';
}

.hero-text {
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	width: 665px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	margin-top: 10px;
	z-index: 2;
}

.video-volume-btn {
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: none;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	backdrop-filter: 4px;
}

.video-volume-btn .volume-icon {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease;
}

.video-volume-btn .volume-icon:hover {
	transform: scale(1.3);
}

.hero-video:not(.playing) .video-volume-btn {
	display: none;
}

.video-play-btn {
	z-index: 9;
}

.hero-video.playing .video-play-btn {
	display: none;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-video.playing .video-volume-btn {
	animation: slideInUp 0.5s ease forwards;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	padding: 10px 52px;
	border-radius: 30px;
	font-size: 24px;
	text-decoration: none;
	font-family: 'Hezaedrus-Medium';
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.btn:hover {
	transform: translateY(-5px);
}

.btn-fill {
	position: relative;
	background: #ff4e9b;
	color: white !important;
	box-shadow: 0 0 0 rgba(255, 78, 155, 0);
}

.btn span {
	font-family: 'Hezaedrus-Medium';
}

.btn-fill::before {
	content: '';
	position: absolute;
	inset: -6px;
	background: rgba(255, 78, 155, 0.6);
	filter: blur(18px);
	border-radius: 40px;
	z-index: -1;
}

.btn-outline {
	border: 2px solid #ff4e9b;
	color: #ff4e9b;
	background: transparent;
}

.btn-outline img {
	width: 32px;
	height: 32px;
	filter: brightness(0) saturate(100%) invert(46%) sepia(86%) saturate(4282%) hue-rotate(315deg)
		brightness(102%) contrast(101%);
}

.play-icon {
	width: 32px;
	height: 32px;
}

.hero-note {
	font-size: 14px;
	color: #888;
	margin-top: 10px;
	width: 665px;
	font-family: 'Hezaedrus-Light';
}

.hero-video {
	position: relative;
	width: 100%;
	height: 536px;
	border-radius: 24px;
	overflow: hidden;
	background: #000;
}

.hero-video-player {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-btn {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 42px;
	border: none;
	cursor: pointer;
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}

.video-play-btn:hover {
	transform: scale(1.08);
}

.hero-video.playing .video-play-btn {
	opacity: 0;
	pointer-events: none;
}
.roadmap {
	padding: 40px 0;
}

.roadmap-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.roadmap-title {
	text-align: center;
	font-size: 40px;
	color: #222;
	margin-bottom: 30px;
	font-family: 'Hezaedrus-Bold';
}

.roadmap-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}

.roadmap-item {
	position: relative;
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease;
	display: flex;
	align-items: center;
}

.roadmap-item img {
	display: block;
	height: auto;
}

.roadmap-item::after {
	content: '';
	position: absolute;
	inset: 10px;
	background: rgba(255, 78, 155, 0.6);
	filter: blur(35px);
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: -1;
}

.roadmap-item:hover {
	transform: translateY(-14px);
}

.roadmap-item:hover::after {
	opacity: 1;
}

.roadmap-bg {
	position: absolute;
	z-index: -1;
	pointer-events: none;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
	opacity: 1;
}

.roadmap-item:hover .roadmap-bg {
	opacity: 0;
}

.roadmap-bg img {
}

/* ===== MEME POWER ===== */
.meme {
	padding: 40px 0;
}

.meme-container {
	flex-direction: column;
	align-items: flex-start;
}

.meme-title {
	margin-bottom: 50px;
	position: relative;
	display: flex;
	align-items: center;
}

.meme-title::before {
	content: '';
	position: absolute;
	left: -40px;
	top: 50%;
	transform: translateY(-50%);
	width: 595px;
	height: 120px;
	background: rgba(255, 78, 155, 0.45);
	filter: blur(80px);
	border-radius: 100px;
	z-index: 0;
}

.meme-title h1 {
	font-family: 'gogono-cocoa';
	font-size: 96px;
	color: #ff4e9b;
	position: relative;
	z-index: 1;
}

.meme-inner {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	width: 100%;
}

.meme-card {
	position: relative;
	background: #fff;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.meme-card h3 {
	font-family: 'Hezaedrus-Medium';
	font-size: 24px;
	margin-bottom: 16px;
	font-weight: normal;
}

.meme-card p {
	font-size: 16px;
	line-height: 1.6;
	color: #222222;
	width: 420px;
}

.meme-note {
	position: absolute;
	right: -50px;
	top: 30px;
}

.meme-slider {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	margin-top: -60px;
}
.slider-window {
	width: 100%;
	height: 320px;
	overflow: hidden;
	padding-top: 20px;
	padding-bottom: 30px;
}

.slider-track {
	display: flex;
	transition: transform 0.4s ease;
}

.slide {
	min-width: 100%;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	position: relative;
	transition: transform 0.3s ease;
}

.tgs-player {
	width: 100%;
	max-width: 280px;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slide::before {
	content: '';
	position: absolute;
	width: 160px;
	height: 150px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255, 78, 155, 0.7);
	filter: blur(45px);
	opacity: 0;
	z-index: -1;
	transition: opacity 2s ease;
	border-radius: 60px;
}
.slide.active::before {
	opacity: 1;
}

.slide.active {
	transform: scale(1.02);
}
.slide img {
	max-width: 100%;
	border-radius: 24px;
}
.slider-btn {
	position: absolute;
	top: 40%;
	background: none;
	border: none;
	font-size: 48px;
	color: #ff4e9b;
	cursor: pointer;
	z-index: 1;
}

.slider-btn.left {
	left: 0px;
}

.slider-btn.right {
	right: 0px;
}

.meme-btn {
	margin-top: 10px;
}

.meme-sub {
	font-size: 14px;
	color: #888;
	text-align: center;
	width: 320px;
	font-family: 'Hezaedrus-Light';
}

/* ===== JP.JOB SECTION ===== */
.jpjob {
	padding: 40px 0;
}

.jpjob-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	align-items: center;
}

.jpjob-image img {
	max-width: 100%;
	display: block;
}

.jpjob-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.jpjob-logo {
	width: 160px;
	margin-bottom: 10px;
}

.jpjob-content h3 {
	font-size: 24px;
	font-family: 'Hezaedrus-Medium';
	color: #222;
}

.jpjob-content p {
	font-size: 16px;
	line-height: 1.6;
	color: #222222;
	max-width: 700px;
}

.jpjob-content b {
	color: #ff4e9b;
	font-family: 'Hezaedrus-Bold';
}

.jbjob-container-link {
	display: flex;
	gap: 20px;
}

.jpjob-link {
	font-size: 16px;
	display: flex;
	flex-direction: column;
}

.jpjob-link a {
	color: #ff4e9b;
}
/* ===== MINI GAME ===== */
.minigame {
	padding: 40px 0px 0px 0px;
}

.minigame-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.minigame-image img {
	max-width: 100%;
	display: block;
	z-index: -1;
	position: relative;
	margin-bottom: -140px;
}

.minigame-card {
	background: #fff;
	border-radius: 32px;
	padding: 48px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	position: relative;
	overflow: hidden;
	margin-bottom: 40px;
	z-index: 0;
}

.minigame-title {
	margin-bottom: 20px;
	position: relative;
	display: flex;
	align-items: center;
}

.minigame-title::before {
	content: '';
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 500px;
	height: 100px;
	background: rgba(255, 78, 155, 0.45);
	filter: blur(80px);
	border-radius: 100px;
	z-index: 1;
}

.minigame-title h1 {
	font-family: 'gogono-cocoa';
	font-size: 96px;
	color: #ff4e9b;
	position: relative;
	z-index: 1;
}

.minigame-card p {
	font-size: 16px;
	line-height: 1.4;
	color: #333;
	margin-bottom: 16px;
	z-index: 1;
	position: relative;
	width: 325px;
}

.minigame-lead {
	font-size: 24px !important;
	font-family: 'Hezaedrus-Medium';
	margin-bottom: 12px !important;
	width: 100% !important;
	display: flex;
}

.minigame-lead img {
	width: 30px;
	height: 30px;
	margin-left: 8px;
}

.minigame-date {
	color: #ff4e9b;
	font-weight: 600;
	margin-left: 6px;
}

.minigame-btn {
	margin-top: 20px;
}

.minigame-card-image {
	position: absolute;
	right: -50px;
	bottom: 0px;
	pointer-events: none;
}
/* ===== FOOTER ===== */
.footer {
	background: #ff4e9b;
	padding: 32px 20px;
	height: 200px;
}

.footer-container {
	display: flex;
	height: 100%;
}

.footer-left {
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

.footer-logo {
	font-family: 'gogono-cocoa';
	font-size: 60px;
	color: #fff;
}

.footer-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.footer-nav {
	display: flex;
	gap: 32px;
}

.footer-nav a {
	position: relative;
	padding-bottom: 4px;
	text-decoration: none;
	color: #fff;
}

.footer-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #fff;

	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.footer-nav a:hover::after {
	transform: scaleX(1);
}

.footer-socials {
	display: flex;
	gap: 12px;
}

.footer-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.25);
}

.footer-icon img {
}

.language-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.language-loader.active {
	opacity: 1;
	visibility: visible;
}

.loader-content {
	text-align: center;
	transform: translateY(20px);
	transition: transform 0.4s ease;
}

.language-loader.active .loader-content {
	transform: translateY(0);
}

.loader-image-container {
	position: relative;
	width: 140px;
	height: 140px;
	margin: 0 auto 24px;
}

.loader-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	animation: coin-rotate 1.5s ease-in-out infinite;
	position: relative;
	z-index: 2;
}

.loader-image-shadow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 160px;
	height: 160px;
	background: rgba(255, 78, 155, 0.7);
	filter: blur(45px);
	border-radius: 50%;
	z-index: 1;
}

.loader-text {
	font-family: 'Hezaedrus-Medium';
	font-size: 20px;
	color: #ff4e9b;
	margin-top: 16px;
	opacity: 0;
	animation: fade-in-out 1.5s ease-in-out infinite;
}

@keyframes coin-rotate {
	0% {
		transform: rotateY(0deg) scale(1);
	}
	25% {
		transform: rotateY(90deg) scale(1.05);
	}
	50% {
		transform: rotateY(180deg) scale(1.1);
	}
	75% {
		transform: rotateY(270deg) scale(1.05);
	}
	100% {
		transform: rotateY(360deg) scale(1);
	}
}

@keyframes coin-rotate-alternative {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.1);
	}
	100% {
		transform: rotate(360deg) scale(1);
	}
}

@keyframes fade-in-out {
	0%,
	100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}

@keyframes pulse-shadow {
	0%,
	100% {
		width: 160px;
		height: 160px;
		opacity: 0.7;
	}
	50% {
		width: 180px;
		height: 180px;
		opacity: 0.9;
	}
}

.loader-image-shadow {
	animation: pulse-shadow 2s ease-in-out infinite;
}
