body {
	background: #1a0a2a;
	font-family: 'Segoe UI', Arial, sans-serif;
	margin: 0;
	padding: 0;
}
.container {
	max-width: 400px;
	margin: 60px auto;
	background: #1d0a35;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.08);
	padding: 32px 24px 24px 24px;
	text-align: center;
}
h1 {
	margin-bottom: 32px;
	color: #ffffff;
	font-size: 2rem;
}
.link-card {
	background: #2b0f4d;
	border-radius: 12px;
	margin-bottom: 18px;
	padding: 18px 16px;
	transition: box-shadow 0.2s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.link-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 6px;
}
.link-desc {
	font-size: 0.97rem;
	color: #ffffff;
	margin-bottom: 12px;
}
.link-btn {
	background: #db00b7;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	padding: 8px 18px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.18s;
	text-decoration: none;
}
.link-btn:hover {
	background: #0d47a1;
}
#star-canvas {
    position: fixed;      
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    pointer-events: none; 
    z-index: -1;         
}