:root {
--neon: #00ff41;
--dark-bg: #050505;
--glass: rgba(15, 15, 15, 0.9);
--border: rgba(0, 255, 65, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--dark-bg); color: #fff; font-family: 'Space Grotesk', sans-serif; overflow-x: hidden; scroll-behavior: smooth; }

#matrix { position: fixed; top: 0; left: 0; z-index: -1; opacity: 0.15; }

/* NAV */
nav { height: 80px; display: flex; align-items: center; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.nav-container { width: 90%; max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; }
.logo { font-family: 'JetBrains Mono'; font-weight: 800; color: #fff; letter-spacing: 2px; }
.logo span { color: var(--neon); }
.nav-links a { color: #888; text-decoration: none; font-size: 0.75rem; margin-left: 30px; font-family: 'JetBrains Mono'; transition: 0.3s; }
.nav-links a:hover { color: var(--neon); text-shadow: 0 0 10px var(--neon); }

/* TERMINAL HERO */
.hero { height: 85vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.terminal-container { width: 100%; max-width: 850px; background: var(--glass); border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 50px 100px rgba(0,0,0,0.5); overflow: hidden; }
.terminal-bar { background: #1a1a1a; padding: 12px; display: flex; align-items: center; border-bottom: 1px solid #333; }
.btn-t { width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }
.title { font-size: 0.7rem; color: #666; font-family: 'JetBrains Mono'; margin-left: 10px; }
.terminal-content { padding: 40px; font-family: 'JetBrains Mono', monospace; }
.cmd { color: var(--neon); margin-bottom: 10px; }
h1 { font-size: clamp(1.5rem, 5vw, 3rem); margin-bottom: 20px; letter-spacing: -2px; }
.res { color: #888; margin-bottom: 20px; }
.neon-glow { color: var(--neon); text-shadow: 0 0 10px rgba(0, 255, 65, 0.5); }
.cta-btns { display: flex; gap: 20px; margin-top: 30px; }
button { padding: 12px 25px; background: var(--neon); border: none; font-family: 'JetBrains Mono'; font-weight: 800; cursor: pointer; transition: 0.3s; }
button:hover { background: #fff; transform: scale(1.05); }
.btn-ghost { padding: 12px 25px; border: 1px solid var(--neon); color: var(--neon); text-decoration: none; font-family: 'JetBrains Mono'; font-size: 0.8rem; }

/* CONTAINERS */
.container { padding: 80px 5%; max-width: 1400px; margin: 0 auto; }
.section-label { font-family: 'JetBrains Mono'; color: var(--neon); font-size: 0.8rem; margin-bottom: 30px; letter-spacing: 4px; }
.glass-card { background: var(--glass); border: 1px solid var(--border); padding: 40px; border-radius: 4px; }

/* REPORT GRID */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.report-card { background: var(--glass); border: 1px solid var(--border); transition: 0.4s; position: relative; }
.report-card:hover { border-color: var(--neon); transform: translateY(-10px); }
.card-img { width: 100%; height: 200px; object-fit: cover; opacity: 0.4; filter: grayscale(1); transition: 0.4s; }
.report-card:hover .card-img { opacity: 1; filter: grayscale(0); }
.card-body { padding: 25px; }
.sev-badge { position: absolute; top: 15px; right: 15px; font-size: 0.6rem; padding: 4px 10px; font-weight: 800; border-radius: 2px; }
.CRITICAL { background: #ff3e3e; } .HIGH { background: #ff9d00; }

/* MODALS */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 2000; align-items: center; justify-content: center; }
.modal-content { background: #111; border: 1px solid var(--neon); padding: 40px; width: 90%; max-width: 500px; display: flex; flex-direction: column; gap: 15px; }
.modal-content input, .modal-content textarea, .modal-content select { background: #000; border: 1px solid #333; color: #fff; padding: 12px; font-family: 'JetBrains Mono'; }

/* ACHIEVEMENT CARDS */
.achievement-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.ach-card { border: 1px solid var(--border); padding: 30px; text-align: center; }
.ach-card h3 { color: var(--neon); margin-bottom: 10px; }

/* FOOTER */
footer { text-align: center; padding: 100px 5%; border-top: 1px solid var(--border); }
.footer-links { margin-bottom: 20px; display: flex; justify-content: center; gap: 30px; }
.footer-links a { color: var(--neon); text-decoration: none; font-family: 'JetBrains Mono'; font-size: 0.8rem; }
/* --- ABOUT & SKILLS ENHANCEMENTS --- */
.about-grid {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 40px;
margin-top: 20px;
}

.terminal-header {
font-family: 'JetBrains Mono', monospace;
font-size: 0.9rem;
color: var(--neon);
margin-bottom: 25px;
opacity: 0.8;
}

.edu-terminal {
border-right: 1px solid var(--border);
padding-right: 20px;
}

.edu-item {
margin-bottom: 25px;
padding-left: 15px;
border-left: 2px solid var(--neon);
}

.edu-item .year {
font-size: 0.7rem;
color: var(--neon);
font-family: 'JetBrains Mono', monospace;
display: block;
margin-bottom: 5px;
}

.edu-item .degree {
font-weight: 700;
font-size: 1.1rem;
color: #fff;
}

.edu-item .loc {
font-size: 0.85rem;
color: #888;
}

.bio-text {
line-height: 1.6;
color: #ccc;
margin-bottom: 30px;
}

.skill-tags {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

.tag {
background: rgba(0, 255, 65, 0.05);
border: 1px solid var(--border);
color: var(--neon);
padding: 6px 14px;
font-size: 0.75rem;
font-family: 'JetBrains Mono', monospace;
border-radius: 2px;
transition: all 0.3s ease;
}

.tag:hover {
background: var(--neon);
color: var(--dark-bg);
box-shadow: 0 0 15px var(--neon);
cursor: default;
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
.about-grid {
grid-template-columns: 1fr;
}
.edu-terminal {
border-right: none;
border-bottom: 1px solid var(--border);
padding-bottom: 30px;
padding-right: 0;
}
}

/* --- Admin Page Styles --- */
.admin-container {
padding: 40px;
max-width: 800px;
margin: 0 auto;
}

input, textarea, select {
display: block;
width: 100%;
background: #000;
color: #00ff00;
border: 1px solid #00ff00;
padding: 10px;
margin: 10px 0;
font-family: 'Courier New', monospace;
}

.admin-btn {
background: #00ff00;
color: #000;
border: none;
padding: 10px 20px;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
}

.admin-btn:hover {
background: #003300;
color: #00ff00;
}
