	body { margin: 0; overflow: hidden; background: #000; font-family: 'Segoe UI', Roboto, Helvetica, sans-serif; }
	canvas { display: block; width: 100vw; height: 100vh; }

	/* UI OVERLAY */
	#ui-layer {
		position: absolute; top: 0; left: 0; width: 100%; height: 100%;
		pointer-events: none;
		display: flex;
		justify-content: space-between;
	}
/* --- NEW PROJECTS SECTION --- */
	.projects-section {
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid var(--border-color);
	}
	
	
	.projects-section-2 h4 {
		font-family: 'Arial', sans-serif;
		font-size: 14pt;
		font-weight: 100;
		color: var(--dim-color);
		text-transform: uppercase;
		letter-spacing: 1.5px;
		margin-bottom: 12px;
	}
	.projects-section h3 {
		font-family: 'Arial', sans-serif;
		font-size: 1rem;
		font-weight: 200;
		color: var(--dim-color);
		text-transform: uppercase;
		letter-spacing: 1.5px;
		margin-bottom: 15px;
	}
	
	.project-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	
	.project-link {
		display: block;
		padding: 10px;
		background: rgba(255, 255, 255, 0.03);
		border: 1px solid var(--border-color);
		font-size: 0.8rem;
		font-family: 'Rajdhani', sans-serif;
		text-align: center;
		text-transform: uppercase;
		letter-spacing: 1px;
		color: #ccc;
		transition: 0.3s;
	}
	
	.project-link:hover {
		background: var(--accent-color);
		color: #000;
		border-color: var(--accent-color);
	}
	
	
	/* CONTACT FOOTER STYLING */
	.contact-footer {
		margin-top: 30px;
		padding-top: 20px;
		border-top: 1px solid #004433;
		font-size: 13px;
		color: #888;
		letter-spacing: 0.5px;
		padding-bottom: 20px; 
	}
	
	.contact-footer a {
		color: #00ffaa;
		text-decoration: none;
		font-weight: bold;
		transition: color 0.3s;
	}
	
	.contact-footer a:hover {
		color: #fff;
		text-shadow: 0 0 5px #00ffaa;
	}

	/* SIDEBAR EXPLANATION */
	#sidebar {
		width: 400px; 
		background: rgba(10, 15, 20, 0.85);
		backdrop-filter: blur(10px);
		border-right: 1px solid #00ffaa;
		padding: 40px 30px;
		color: #eee;
		display: flex;
		flex-direction: column;
		justify-content: flex-start; 
		overflow-y: auto; 
		pointer-events: auto;
		transition: all 0.5s ease;
		max-height: 100vh; 
		box-sizing: border-box;
	}

	/* CUSTOM SCROLLBAR */
	#sidebar::-webkit-scrollbar { width: 6px; }
	#sidebar::-webkit-scrollbar-track { background: #0a0f14; }
	#sidebar::-webkit-scrollbar-thumb { background: #004433; border-radius: 3px; }
	#sidebar::-webkit-scrollbar-thumb:hover { background: #00ffaa; }

	h1 { font-weight: 300; letter-spacing: 2px; color: #00ffaa; margin-bottom: 5px; font-size: 22px; }
	
	h2 { 
		font-size: 12px; 
		color: #ffffff; 
		letter-spacing: 8px; 
		text-transform: uppercase; 
		font-weight: 400;
		margin: 0 0 30px 2px; 
		border-bottom: 1px solid #333;
		padding-bottom: 20px;
		padding-left: 10px;
		line-height: 1.6;
		flex-shrink: 0; 
	}
	
	.step-box {
		margin-bottom: 30px;
		padding-left: 15px;
		border-left: 2px solid #333;
		transition: all 0.3s;
		opacity: 0.5;
		cursor: pointer; /* ADDED: Makes it look clickable */
	}
	
	.step-box:hover {
		opacity: 0.8;
		border-left: 2px solid #555;
	}

	.step-box.active {
		border-left: 3px solid #00ffaa;
		opacity: 1;
		text-shadow: 0 0 10px rgba(0, 255, 170, 0.2);
	}

	/* ADDED: Force text to be white when active */
	.step-box.active .step-desc {
		color: #ffffff;
	}

	.step-title { font-weight: bold; font-size: 16px; margin-bottom: 10px; color: #fff; }
	.step-desc { font-size: 14px; line-height: 1.7; color: #bbb; transition: color 0.3s; }

	/* METRICS HUD */
	#hud {
		position: absolute; right: 30px; bottom: 30px;
		text-align: right;
		font-family: 'Courier New', monospace;
		color: #00ffaa;
		pointer-events: none;
	}
	.metric { font-size: 14px; margin-bottom: 5px; }
	.big-val { font-size: 24px; font-weight: bold; }
