    html {
	scroll-behavior: smooth;
}
    body {
    	font-family: "Comfortaa", sans-serif;
    	background:
		radial-gradient(circle at 20% 30%, rgba(0,247,255,0.05), transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(180,0,255,0.04), transparent 50%),
		#020202;
	margin: 0;
        padding: 0;
	animation: fadeIn 0.6s ease-in;
	line-height: 1.6;
	box-shadow: inset 0 0 100px rgba(0, 255, 255, 0.05);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    }

    * {
	box-sizing: border-box;
}

    ::selection {
	background: #00f7ff;
	color: black;
}

    body::before {
	content: "";
	position: fixed;
	inset: 0;
	width: 200%;
	height: 200%;
	background: 
		radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.6) 100%), 
		radial-gradient(circle, rgba(0,247,255,0.15) 1px, transparent 1px);
	background-size: 100% 100%, 40px 40px;
	animation: moveBg 20s linear infinite;
	z-index: -1;
	pointer-events: none;
}


    @keyframes scanMove {
	0% { transform: translateY(0); }
	100% { transform: translateY(10px); }
}

    body::after {
	content: "";
	position: fixed;
	width: 100%;
	height: 100%;
	background: raidal-gradient(circle, transparent 60%, rgba(0,0,0,0.4));
	opacity: 0.4;
	);
	pointer-events: none;
	z-index: 1;
	opacity: 0.25;
}

    @keyframes moveBg {
	from { transform: translate(0, 0); }
	to { transform: translate(-50px, -50px); }
}
    @keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

    :root {
	--cyan: #00f7ff;
	--cyan-soft: rgba(0,247,255,0.6);
	--purple: #2000fc;
	--purple-glow: rgba(180, 0, 255, 0.15);
}

    h1 {
    	color: var(--cyan);
        text-align: center;
        text-shadow: 
        	0 0 2px var(--cyan),
        	0 0 2px var(--purple-glow),
        margin-top: 30px;
	margin-bottom: 10px;
	animation: glowPulse 3s ease-in-out infinite;
    }

    @keyframes glowPulse {
	0%, 100% {
		text-shadow: 0 0 6px var(--cyan), 0 0 14px var(--cyan);
	}
	50% {
		text-shadow: 0 0 10px var(--cyan), 0 0 25px var(--cyan);
	}
}

    h2 {
    	color: rgba(0,255,255,0.85);
        text-align: center;
        text-shadow: 
            0 0 2px var(--cyan),
            0 0 2px var(--purple-glow);
        margin-top: 30px;
	margin-bottom: 10px;
    }
    
    p {
    	color: rgba(0,247,255,0.85);
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
        max-width: 600px;
        margin: 20px auto;
	opacity: 0.9;
	line-height: 1.7;
	text-sahdow: 0 0 4px rgba(0,247,255,0.2);
    }
    
    
    ul {
    	list-style: none;
        padding: 0;
        text-align: center;
	color: var(--cyan);
        }

    li {
    	margin: 15px 0;
	color: rgba(0,247,255,0.8);
        }
        
    ol {
    	list-style: none;
        padding: 0;
        text-align: center;
	color: var(--cyan);
	}

    a {
    	color: var(--cyan);
        text-decoration: none;
        border: 1px solid rgba(0,247,255,0.5);
        padding: 6px 12px;
        display: inline-block;
        box-shadow: 0 0 5px var(--cyan);
	position: relative;
	font-weight: bold;
	transition: all 0.25s cubic-bezier(.25,.8,.25,.1);
	border-radius: 8px;
	letter-spacing: 0.5px;
	transform: translateY(0);
	padding-inline: 5px;
      }
    
    a:hover {
    	background: #00faff;
        color: black;
        box-shadow: 0 0 15px var(--cyan);
        transition: 0.3s;
	filter: drop-shadow(0 0 15px #00ffcc);
	display: inline-block;
	transform: translateY(-3px) scale(1.05) rotate(-0.3deg);
	box-shadow:
		0 4px 15px rgba(0,247,255,0.25),
		0 0 10px rgba(0,247,255,0.2),
		0 0 5px rgba(0,247,255,0.2);
}

    a.button-link:hover {
	box-shadow:
	  0 0 5px #00faff,
	  0 0 10px #00faff,
	  0 0 20px #00faff,
	  0 0 40px #00faff;
        }
    a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -3px;
	left: 0;
	background: cyan;
	transition: width 0.3s ease;
}

    a:hover::after {
	width: 100%;
}

    a:active {
	transform: translateY(1px) scale(0.97);
}

    cite {
	color: var(--cyan);
	text-align: center;
	padding: 5px 15px;
	padding-bottom: 200px; 
	}

    #boot-screen {
	position: fixed;
	top: 0;	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	color: var(--cyan);
	font-family: monospace;
	padding: 20px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

    #boot-text {
	white-space: pre-wrap;
	font-size: 16px;
}
    #boot-text::after {
	content: "_";
	animation: blink 1s infinite;
}

    #boot-screen {
	transition: opacity 0.5s ease;
}

    @keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 0; }
}
	#main-content {
	display: none;
}
    button {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
    .card {
	background: 1px solid rgba(255,255,255,0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
	border: 1px solid rgba(0,247,255,0.12);
	border-radius: 14px;
	backdrop-filter: blur(86px);
	border: 1px solid rgba(255,255,255,0.06);
	padding: 20px;
	transform: skwY(-1deg);
	box-shadow:
		inset 0 0 12px rgba(0,247,255,0.08),
		0 0 25px rgba(0,247,255,0.1);
}

    .card:hover {
	transform: scale(1.02);
	box-shadow: 
		0 0 10px rgba(0,247,255,0.4),
		0 0 30px rgba(0,247,255,0.4);
}
    nav {
	position: sticky;
	top: 0;
	background: rgba(5,5,5,0.6);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 255, 255, 0.15);
	padding: 22px;
	z-index: 100;
}
    .container {
	max-width: 900px;
	margin: 40px auto;
	padding: 30px;
}
    .reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}
    .reveal:nth-child(1) { transition-delay: 0.1s; }
    .reveal:nth-child(2) { transition-delay: 0.2s; }
    .reveal:nth-child(3) { transition-delay: 0.3s; }
    .reveal.active {
	opacity: 1;
	transform: translateY(0);
}
    button:active {
	transform: scale(0.92);
	box-shadow: 0 0 10px rgba(0,247,255,0.3);
}

    .hot {
	animation: hotPulse 1.8s ease-in-out infinite;
	border-color: rgba(0,247,255,0.6);
}

    @keyframes hotPulse {
	0%, 100% {
		box-shadow: 0 0 10px rgba(0,247,255,0.2);
	}

	50% {
		box-shadow: 0 0 25px rgba(0,247,255,0.5);
	}
}

    hr {
	border: none;
	height: 1px;
	background: linear-gradient(
	to right, 
	transparent,
	#00f7ff,
	transparent
);
	box-shadow: 0 0 10px #00f7ff;
	margin: 40px 0;
}

    .dropdown {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

    .dropdown-content {
	display: none;
	position: absolute;
	background: white;
	min-width: 200px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

    .dropdown-content a {
	display: block;
	padding: 10px;
	text-decoration: none;
}
    .dropdown:hover .dropdown-content {
	display: block;
}