/* --- CORE VARIABLES --- */
:root {
    --bg: #050505;
    --terminal: #0d0d0d;
    --neon-green: #00ff41;
    --neon-red: #ff003c;
    --neon-blue: #00f3ff;
    --neon-orange: #ff9d00;
    --text-dim: #008f11;
    --text-muted: #a0aec0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: var(--neon-green);
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    overflow-x: hidden;
    text-transform: uppercase;
}

a {
    color: var(--neon-green);
    text-decoration: none;
    transition: 0.2s;
}

/* --- TAB LOGIC --- */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.active-tab {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- NAVBAR HUD --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 2px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    backdrop-filter: blur(10px);
    font-family: 'VT323', monospace;
    text-transform: uppercase;
}

.nav-brand {
    font-size: 1.5rem;
    color: var(--neon-blue);
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 5px var(--neon-blue);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #4a5568;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    padding: 5px 10px;
    transition: 0.3s;
    letter-spacing: 1px;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

.nav-link.active {
    color: var(--bg);
    background: var(--neon-green);
    font-weight: bold;
    box-shadow: 0 0 15px var(--neon-green);
}

.nav-status {
    font-size: 1.2rem;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.blink {
    color: var(--neon-red);
    animation: blinker 1.5s linear infinite;
    font-size: 0.8rem;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* --- HERO SECTION --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 60vh;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.profile-container {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.profile-img {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    z-index: 2;
    filter: grayscale(20%) contrast(1.2);
}

.ring-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--neon-green);
    animation: spin 10s linear infinite;
    opacity: 0.5;
}

.ring-inner {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border-left: 2px solid var(--neon-red);
    border-right: 2px solid var(--neon-red);
    animation: spin-rev 6s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-rev {
    100% {
        transform: rotate(-360deg);
    }
}

.hero-content {
    flex: 1;
}

.system-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sys-tag {
    background: rgba(0, 255, 65, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--neon-green);
    font-size: 0.9rem;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 6px;
}

.large-name {
    font-size: 4.5rem;
    margin: 0;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.bio-text {
    font-size: 1.3rem;
    color: #a0aec0;
    margin: 1.5rem 0 2.5rem 0;
    line-height: 1.6;
    max-width: 600px;
    text-transform: none;
}

.btn-primary {
    background: var(--neon-blue);
    color: #000;
    padding: 10px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    box-shadow: 0 0 15px var(--neon-blue);
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 25px #fff;
}

/* --- GRID & CARDS --- */
.projects-title {
    margin-top: 1rem;
    color: var(--neon-red);
    margin-bottom: 1rem;
}

.grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* FIX: Allies grid layout */
#friends .grid {
    grid-template-columns: repeat(3, 1fr);
}


.card {
    background: var(--terminal);
    border: 1px solid var(--text-dim);
    padding: 1.5rem;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--text-dim);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neon-blue);
    font-size: 1.8rem;
}

.card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-transform: none;
}

.tags {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.tag::before {
    content: '[';
    color: var(--neon-green);
}

.tag::after {
    content: ']';
    color: var(--neon-green);
}

.card-action {
    color: var(--neon-green);
    margin-top: auto;
}

.card-action a:hover {
    background: var(--neon-green);
    color: var(--bg);
    box-shadow: 0 0 10px var(--neon-green);
}

.corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--neon-green);
    transition: 0.3s;
}

.card:hover .corner {
    width: 100%;
    height: 100%;
}

.top-left {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.btm-right {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

/* --- FRIEND CARD STYLES --- */
.friend-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.friend-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 6px;
}

.icon-box {
    width: 24px;
    text-align: center;
    color: var(--neon-blue);
    margin-top: 2px;
}

.detail-text {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.4;
    text-transform: none;
    font-family: 'Segoe UI', sans-serif;
}

.detail-text strong {
    color: var(--neon-green);
    font-size: 0.85rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.sub-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.card-action-row {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cyber-btn {
    position: relative;
    z-index: 50;
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    text-transform: uppercase;
}

.cyber-btn:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 15px var(--neon-green);
}

.blue-btn {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.1);
}

.blue-btn:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px var(--neon-blue);
}

.red-btn {
    border-color: var(--neon-red);
    color: var(--neon-red);
    background: rgba(255, 0, 60, 0.1);
}

.red-btn:hover {
    background: var(--neon-red);
    color: #fff;
    box-shadow: 0 0 15px var(--neon-red);
}

/* --- CONTACT --- */
.contact-card {
    max-width: 600px;
    margin: 0 auto;
}

.contact-socials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 1rem;
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    color: var(--neon-blue);
    font-size: 0.9rem;
    font-family: 'VT323', monospace;
}

.cyber-form input,
.cyber-form textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-left: 2px solid var(--neon-green);
    color: #fff;
    padding: 10px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    position: relative;
    z-index: 50;
}

.cyber-form input:focus,
.cyber-form textarea:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
    background: rgba(0, 255, 65, 0.05);
}

/* --- EFFECTS & FOOTER --- */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 999;
}

@keyframes flicker {
    0% {
        opacity: 0.97;
    }

    5% {
        opacity: 0.95;
    }

    10% {
        opacity: 0.9;
    }

    15% {
        opacity: 0.95;
    }

    100% {
        opacity: 0.98;
    }
}

.crt-flicker {
    animation: flicker 0.15s infinite;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--neon-red);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--neon-blue);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(14px, 9999px, 122px, 0);
    }

    100% {
        clip: rect(45px, 9999px, 5px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

    100% {
        clip: rect(10px, 9999px, 125px, 0);
    }
}

footer {
    margin-top: auto;
    border-top: 1px solid var(--text-dim);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- MODAL --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #121212;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.red-theme {
    border: 2px solid var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

.close-btn {
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Segoe UI', sans-serif;
}

.modal-body-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.artist-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.artist-img-wrapper {
    flex: 1;
    max-width: 250px;
}

.artist-img-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #333;
    transition: 0.3s;
    cursor: zoom-in;
}

.artist-info {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-name {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    color: var(--neon-red);
    font-family: 'Segoe UI', sans-serif;
    font-weight: 800;
}

.song-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.song-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.song-list li a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.song-list li a:hover {
    color: var(--neon-green);
    text-decoration-color: var(--neon-green);
}

.modal-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
    width: 100%;
}

@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .nav-brand,
    .nav-status {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .large-name {
        font-size: 3.5rem;
    }

    .artist-row {
        flex-direction: column;
    }
}

/* --- FIX PROJECT LINKS --- */
.card-action a {
    position: relative;
    z-index: 50;
    /* Forces link above background/scanlines */
    cursor: pointer;
    /* Shows hand icon */
    display: inline-block;
    padding: 5px 10px;
    /* Adds a small click area */

}

/* ================= ALLY AVATAR ================= */

.friend-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 1.2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.friend-avatar img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    filter: grayscale(25%) contrast(1.15);
    transition: all 0.3s ease;
    z-index: 2;
}

/* ================= SCANLINE OVERLAY ================= */

.scanline-overlay {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 3;

    background: repeating-linear-gradient(to bottom,
            rgba(0, 255, 65, 0.18) 0px,
            rgba(0, 255, 65, 0.18) 1px,
            transparent 2px,
            transparent 4px);
}

/* ================= HOVER EFFECT ================= */

.scanline-avatar:hover img {
    filter: grayscale(0%) contrast(1.3);
    transform: scale(1.05);
    box-shadow:
        0 0 15px rgba(0, 243, 255, 0.8),
        0 0 30px rgba(0, 255, 65, 0.4);
}

.scanline-avatar:hover .scanline-overlay {
    opacity: 1;
    animation: scanMove 1.2s linear infinite;
}

/* ================= SCANLINE ANIMATION ================= */

@keyframes scanMove {
    from {
        background-position-y: 0%;
    }

    to {
        background-position-y: 100%;
    }
}

/* ================= CURRENT TAG ================= */

.current-tag {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    animation: currentPulse 1.8s infinite;
}

@keyframes currentPulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

/* ================= EDUCATION TIMELINE ================= */

.edu-entry {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    margin-bottom: 18px;
}

.edu-icon {
    color: var(--neon-blue);
    margin-top: 4px;
}

.edu-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


/* timeline line */
.edu-content::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 20px;
    width: 2px;
    height: 100%;
    background: rgba(0, 243, 255, 0.4);
}

/* progress bar */
.edu-content::after {
    content: "";
    position: absolute;
    left: -22px;
    top: 20px;
    width: 2px;
    height: var(--progress, 40%);
    background: var(--neon-green);
}

@media (max-width: 1000px) {
    #friends .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    #friends .grid {
        grid-template-columns: 1fr;
    }
}

/* ================= CLEAN EDUCATION LIST ================= */

.edu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1rem;
}

.edu-item {
    display: flex;
    gap: 14px;
    padding: 10px 12px;
    align-items: center;
}

/* past */
.edu-item.past {
    opacity: 0.55
}

/* Current */
.edu-item.current {
    background: rgba(0, 255, 65, 0.04);
}

.edu-item.current .edu-logo {
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

.edu-item.current .edu-text strong {
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.7);
}

/* Future */
.edu-item.future {
    opacity: 0.7;
}

.edu-item.future .edu-logo {
    border-style: dashed;
}

.edu-item.future .edu-text {
    font-style: italic;
}

/* ===== EDUCATION LOGO MICRO-INTERACTIONS ===== */
.edu-logo {
    width: 57px;
    height: 57px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 65, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.25s ease;
}

.edu-logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: grayscale(60%);
    transition: all 0.25s ease;
}

/* Hover (all education) */
.edu-item:hover .edu-logo {
    border-color: var(--neon-green);
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
}

.edu-item:hover .edu-logo img {
    filter: grayscale(0%);
}

/* Current education highlight */
.edu-item.current .edu-logo {
    border-color: var(--neon-green);
    box-shadow: 0 0 12px rgba(0, 255, 65, 0.8);
}

.edu-item.current .edu-logo img {
    filter: grayscale(0%);
}

.edu-item {
    transition: transform 0.25s ease, background 0.25s ease;
}

.edu-item:hover {
    transform: translateX(3px);
}

.edu-text {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.4;
    text-transform: none;
    font-family: 'Segoe UI', sans-serif;
}

.edu-text strong {
    color: var(--neon-green);
    font-size: 0.85rem;
    display: block;
    text-transform: uppercase;
}

.edu-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.current-tag {
    margin-left: 6px;
    padding: 2px 8px;
    font-size: 0.7rem;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    animation: currentPulse 1.6s infinite;
}

.floating-linkedin {
    position: absolute;
    bottom: 14px;
    right: 14px;
    padding: 6px 14px;
    font-family: 'VT323', monospace;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    background: rgba(0, 243, 255, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.25s;
    z-index: 20;
}

.floating-linkedin:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 12px var(--neon-blue);
    transform: translateY(-2px);
}

/* ===== CURRENT EDUCATION SCANLINE SWEEP ===== */

.edu-item.current {
    position: relative;
    overflow: hidden;
}

/* scanline layer */
.edu-item.current::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;

    background: repeating-linear-gradient(to bottom,
            rgba(0, 255, 65, 0.12) 0px,
            rgba(0, 255, 65, 0.12) 1px,
            transparent 2px,
            transparent 5px);

    animation: eduScan 6s linear infinite;
    opacity: 0.4;
}

/* slow sweep */
@keyframes eduScan {
    from {
        transform: translateY(0%);
    }

    to {
        transform: translateY(50%);
    }
}

/* ===== CLICKABLE EDUCATION LOGOS ===== */

.edu-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

/* external link indicator */
.edu-logo-link::after {
    content: "↗";
    position: absolute;
    bottom: -6px;
    right: -6px;
    font-size: 0.6rem;
    color: var(--neon-green);
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* hover feedback */
.edu-logo-link:hover::after {
    opacity: 1;
}

.edu-logo-link:hover .edu-logo {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.7);
}

.edu-logo-link:hover {
    filter: brightness(1.1);
}

/* ===== EDUCATION STATUS BADGES ===== */

.edu-item.completed {
    opacity: 0.85;
}

.completed-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding: 2px 6px;
    font-size: 0.65rem;
    letter-spacing: 1px;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    background: rgba(0, 255, 65, 0.08);
}

.completed-tag i {
    font-size: 0.6rem;
}

/* optional subtle glow on hover */
.edu-item.completed:hover .completed-tag {
    box-shadow: 0 0 6px rgba(0, 255, 65, 0.4);
}

.edu-item[data-status="completed"] {
    opacity: 0.8;
}

.edu-item[data-status="future"] {
    opacity: 0.6;
    filter: grayscale(40%);
}