body, html { 
	height: 100%; 
	overflow: hidden; /* Disable scrollbars */
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	background-color: #000000; /* Pure black background */
	font-family: 'Noto Sans', sans-serif;
	font-weight: 300;
	overflow: hidden; /* Disable scrollbars */
}

/* Sound Control Button */
.sound-control {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1000;
	transition: all 0.3s ease;
}

.sound-control:hover {
	transform: scale(1.2);
}

.sound-icon {
	color: #808080; /* Light grey color */
	font-size: 24px;
	transition: all 0.3s ease;
}

.sound-control.muted .sound-icon {
	color: #666666; /* Slightly darker when muted */
}

#blackhole {
	height: 100%;
	width: 100%;
	position: relative;
	display: flex;
}

.centerHover {
	width: 180px; /* Back to working size */
	height: 180px; /* Back to working size */
	background-color: transparent;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -90px; /* Adjusted for working size */
	margin-left: -90px; /* Adjusted for working size */
	z-index: 2;
	cursor: pointer;
	line-height: 180px; /* Adjusted line height */
	text-align: center;
	transition: all 500ms;
}

.centerHover.open {
	opacity: 0;
	pointer-events: none;
}

.centerHover span {
    color: #fff;
    font-family: 'Boldonse', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    position: relative;
    transition: all 300ms ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.centerHover:hover span {
    color: #fff;
}

/* Profile Panel */
.profile-panel {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 600px; /* Increased further to fit all profile content */
	height: 600px; /* Increased further to fit all profile content */
	background: #000;
	border-radius: 50%;
	padding: 60px; /* Increased padding for better content spacing */
	opacity: 0;
	visibility: hidden;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.profile-panel.open {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}



/* Typing Animation for Profile Content */
.profile-content {
	opacity: 0;
	transition: opacity 0.5s ease;
}

.profile-content.typing {
	opacity: 1;
}

/* Typing effect for text lines */
.name-line, .profile-title, .profile-summary {
	overflow: visible;
	white-space: normal;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease;
}

.name-line.typing, .profile-title.typing, .profile-summary.typing {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger the typing animation */
.name-line:first-child.typing { transition-delay: 0.2s; }
.name-line:last-child.typing { transition-delay: 0.4s; }
.profile-title.typing { transition-delay: 0.6s; }
.profile-summary.typing { transition-delay: 0.8s; }

/* Profile Name - Following Golden Ratio (1.618) */
.profile-name {
	text-align: center;
	margin-bottom: 30px;
	line-height: 1.1;
}

.name-line {
	display: block;
	font-family: 'Boldonse', sans-serif;
	font-size: 2.8rem;
	font-weight: 400;
	color: #fff;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
	letter-spacing: 0.1em;
	line-height: 130%;
	width: 100%;
}

/* First line (DHANI) with 2x letter spacing to match SUTANTO width */
.name-line:first-child {
	letter-spacing: 0.2em;
}

/* Profile Title - Following Golden Ratio (1.618) */
.profile-title {
	font-family: 'Noto Sans', sans-serif;
	font-size: 1.1rem; /* Smaller as requested */
	font-weight: 300;
	color: #ccc;
	text-align: center;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.profile-summary {
	font-family: 'Noto Sans', sans-serif;
	font-size: 0.75rem; /* 75% smaller as requested */
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: 18px;
	color: #ccc;
	text-align: center; /* Center aligned as requested */
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

canvas {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	margin: auto;
}

/* Profile Links Container (Now inside profile panel) */
.profile-links-container {
	display: flex;
	flex-direction: row; /* Side by side */
	align-items: center;
	justify-content: center;
	gap: 30px; /* Slightly closer spacing since it's inside the panel */
	margin-top: 25px; /* Space from the last profile summary */
	opacity: 0;
	visibility: hidden;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-links-container.open {
	opacity: 1;
	visibility: visible;
}

.profile-link {
	font-family: 'Noto Sans', sans-serif;
	font-size: 0.9rem; /* Smaller as requested */
	font-weight: 300;
	color: #fff;
	text-decoration: none;
	padding: 8px 16px;
	border: none; /* No outline as requested */
	border-radius: 0;
	transition: all 0.3s ease;
	background: transparent;
	white-space: nowrap;
	opacity: 0.8;
}

.profile-link:hover {
	opacity: 1;
	color: #fff;
	transform: translateY(-2px);
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
	.profile-panel {
		width: 450px; /* Adjusted for tablets */
		height: 450px;
		padding: 45px;
	}
	

	
	.profile-links-container {
		gap: 25px;
		margin-top: 20px;
	}
	
	.name-line {
		font-size: 2.2rem;
	}
	
	.profile-title {
		font-size: 1rem;
	}
	
	.profile-link {
		font-size: 0.8rem;
		padding: 6px 12px;
	}
	
	.profile-summary {
		font-size: 0.7rem;
		max-width: 350px;
	}
}

@media (max-width: 480px) {
	.profile-panel {
		width: 350px; /* Adjusted for mobile */
		height: 350px;
		padding: 35px;
	}
	

	
	.profile-links-container {
		gap: 20px;
		margin-top: 15px;
		flex-direction: column; /* Stack vertically on very small screens */
	}
	
	.name-line {
		font-size: 1.8rem;
	}
	
	.profile-title {
		font-size: 0.9rem;
	}
	
	.profile-link {
		font-size: 0.7rem;
		padding: 5px 10px;
	}
	
	.profile-summary {
		font-size: 0.6rem;
		max-width: 280px;
	}
}
/* Made with AI text */
.made-with-ai {
	position: fixed;
	bottom: 10px;
	left: 10px;
	font-size: 10px;
	color: #808080;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 300;
	opacity: 0.6;
	z-index: 1000;
	pointer-events: none;
}
