:root {
	--primary-bg: #13111C;
	--secondary-bg: #1E1B2E;
	--accent: rgb(61, 106, 255);
	--text-clr: rgba(255, 255, 255, 0.7);
	--gradient: linear-gradient(90deg, #5f94ff, #0900ab);
	--glass-bg: rgba(30, 27, 46, 0.3);
	--card-border: rgba(0, 85, 255, 0.9);
	--neon-shadow: 0 0 15px rgba(95, 148, 255, 0.3);
	--card-glass: rgba(7, 7, 10, 0.7);
}

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	background-color: var(--primary-bg);
	color: var(--text-clr);
	font-family: -apple-system, BlinkMacSystemFont, "Shippori Mincho", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Noto Serif", "Noto Sans JP", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Kaku Gothic ProN", "Meiryo", "MS PGothic", "MS PMincho", "Tahoma", Geneva, sans-serif;
	overflow-x: hidden;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 4rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--card-border);
	z-index: 1000;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: 
			radial-gradient(circle at top right, rgba(95, 148, 255, 0.1), transparent 60%),
			radial-gradient(circle at bottom left, rgba(9, 0, 171, 0.1), transparent 60%);
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	background: 
			radial-gradient(circle at center, var(--accent) 0%, transparent 50%);
	opacity: 0.05;
	animation: rotate 30s linear infinite;
	transform-origin: center;
}

.hero__content {
	text-align: center;
	z-index: 1;
	padding: 2rem;
	max-width: 1200px;
}

.hero__stats {
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin: 3rem 0;
}

.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stat .number {
	font-size: 2.5rem;
	font-weight: bold;
	color: white;
	margin-bottom: 0.5rem;
}

.stat .label {
	font-size: 1rem;
	opacity: 0.7;
}

.gradient__text {
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 4.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	animation: fadeInUp 0.8s ease forwards;
}

.subtitle {
	font-size: 1.8rem;
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.9);
	animation: fadeInUp 0.8s ease forwards 0.2s;
}

.cta__buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 2rem;
}

.cta__button {
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: bold;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.cta__button.primary {
	background: var(--gradient);
	color: white;
	box-shadow: 0 5px 20px rgba(95, 148, 255, 0.3);
}

.cta__button.secondary {
	background: rgba(95, 148, 255, 0.1);
	color: white;
	border: 1px solid rgba(95, 148, 255, 0.3);
}

.cta__button:hover {
	transform: translateY(-3px);
}

.features {
	padding: 8rem 4rem;
	background: var(--secondary-bg);
	position: relative;
}

.features__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.feature__card {
	background: var(--card-glass);
	padding: 2rem;
	border-radius: 20px;
	text-align: center;
	border: 1px solid var(--card-border);
	transition: all 0.3s ease;
}

.feature__card:hover {
	transform: translateY(-10px);
	box-shadow: var(--neon-shadow);
}

.feature__card i {
	font-size: 2.5rem;
	color: var(--accent);
	margin-bottom: 1.5rem;
}

.feature__card h3 {
	color: white;
	margin-bottom: 1rem;
}

.fairplay {
	padding: 8rem 4rem;
	position: relative;
	overflow: hidden;
}

.cards__container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}

.card {
	background: var(--card-glass);
	padding: 2.5rem;
	border-radius: 20px;
	text-align: center;
	border: 1px solid var(--card-border);
	transition: all 0.3s ease;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: var(--neon-shadow);
}

.card i {
	font-size: 3rem;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 1.5rem;
}

.card h3 {
	color: white;
	margin-bottom: 1rem;
}

.card__footer {
	margin-top: 2rem;
}

.badge {
	background: rgba(95, 148, 255, 0.1);
	color: var(--accent);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
}

.certifications {
	padding: 8rem 4rem;
	background: var(--secondary-bg);
}

.certification__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-top: 4rem;
}

.cert__logo {
	background: var(--card-glass);
	padding: 2rem;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--card-border);
	transition: all 0.3s ease;
}

.cert__logo:hover {
	transform: translateY(-5px);
	box-shadow: var(--neon-shadow);
}

.cert__logo img {
	max-width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

@keyframes fadeInUp {
	from {
			opacity: 0;
			transform: translateY(30px);
	}
	to {
			opacity: 1;
			transform: translateY(0);
	}
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
	
	.gradient__text {
			font-size: 3rem;
	}
	
	.hero__stats {
			flex-direction: column;
			gap: 2rem;
	}
	
	.features, .fairplay, .certifications {
			padding: 4rem 2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
			animation: none !important;
			transition: none !important;
	}
}