* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: system-ui, sans-serif;
	background: #0b0510;
	color: #fff;
	min-height: 100vh;
	line-height: 1.6;
}

.bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: blur(20px) brightness(0.2);
	z-index: -1;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px;
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 24px;
}

.panel {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	padding: 24px;
	margin-bottom: 24px;
}

.portfolio-footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Custom Scrollbar for the Side Panel */
.project-list::-webkit-scrollbar {
    width: 4px;
}
.project-list::-webkit-scrollbar-thumb {
    background: #ff4081;
    border-radius: 10px;
}

/* Hero & Links */
.hero h1 { font-size: 42px; color: #ff4081; text-shadow: 0 0 20px rgba(255, 64, 129, 0.4); }
.links a { color: #fff; text-decoration: none; opacity: 0.6; font-size: 14px; }
.links a:hover { opacity: 1; }

/* Music Widget */
.music-widget { border-left: 4px solid #ff4081; background: rgba(255, 64, 129, 0.05); }
.music-info { display: flex; gap: 16px; align-items: center; }
.album-art { width: 64px; height: 64px; border-radius: 8px; background-size: cover; background-color: #222; }
.now-playing-label { font-size: 10px; letter-spacing: 2px; color: #ff4081; font-weight: bold; }

/* Tech Stack */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.tech-item { 
	height: 70px; background: rgba(255,255,255,0.05); border-radius: 12px; 
	display: flex; align-items: center; justify-content: center; font-weight: bold;
	border: 1px solid transparent; transition: 0.3s;
}
.tech-item:hover { border-color: #ff4081; transform: translateY(-3px); }
.tech-item.js { color: #f1e05a; }
.tech-item.android { color: #3ddc84; }

/* Projects Side Panel */
.side-panel h2 { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; opacity: 0.5; }
.project-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 16px;
	margin-bottom: 12px;
	transition: 0.3s;
}
.project-card:hover { border-color: #ff4081; background: rgba(255, 255, 255, 0.07); }
.project-card h3 a { color: #ff4081; text-decoration: none; font-size: 16px; }
.project-desc { font-size: 13px; opacity: 0.7; margin: 6px 0 12px; }
.project-meta { display: flex; justify-content: space-between; font-size: 12px; color: #888; }

/* 🛰️ Compact Stats Panel */
.system-stats {
    padding: 16px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.stat-value {
    font-size: 14px;
    font-family: 'Courier New', Courier, monospace; /* Digital look */
    color: #ff4081; /* Neon pink */
}

.status-indicator {
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 800;
    color: #3ddc84;
}

.blink-dot {
    width: 6px;
    height: 6px;
    background-color: #3ddc84;
    border-radius: 50%;
    box-shadow: 0 0 8px #3ddc84;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@media (max-width: 900px) { .container { grid-template-columns: 1fr; } }