body {
	font-family: 'Inter', sans-serif;
	font-family: "Roboto", sans-serif;

	background-color: #000000;
	color: #FFFFFF;
}
h1, h2, h3, h4, h5 {
	font-family: 'Inter' !important;
}
.gradient-text {
	background: linear-gradient(90deg, #00dbde, #fc00ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.cta-button {
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(118, 64, 204, 0.5); 
	background: linear-gradient(90deg, #00dbde, #fc00ff);
}
.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 50px 50px rgba(118, 64, 204, 0.7);
}
.tab-button {
	transition: all 0.2s ease-in-out;
}
.tab-button.active {
	background-color: #fff;
	color: #000;
}
.tab-content {
	display: none;
}
.tab-content.active {
	display: block;
}
.story-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.section-divider {
	height: 1px;
	background: linear-gradient(to right, transparent, white 30%, white 70%, transparent);
	border: 0;
}
