        body { background-color: #030303;font-family: 'Plus Jakarta Sans', sans-serif; color: #94a3b8; background-image: radial-gradient(circle at 50% 50%, #111 0%, #020202 100%);}
        .mono { font-family: 'Fira Code', monospace; }
        /* The Precision Viewport Logic */
        .viewport { position: relative; overflow: hidden; background: #000;border-radius: 12px;transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);}
        .scanning-animation {background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);background-size: 200% 100%;animation: scan 2s infinite;}
        @keyframes scan { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
        #personal-bio { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.4s ease; }
        #personal-bio.open { max-height: 250px; opacity: 1; margin-top: 1rem; }
        .panel { background: rgba(15, 23, 42, 0.4); border: 1px solid rgba(255, 255, 255, 0.05); }
        .glow-emerald:hover { border-color: #10b981; box-shadow: 0 0 20px rgba(16, 185, 129, 0.1); }
        /* Custom scrollbar for terminal */
        #terminal-output::-webkit-scrollbar { width: 4px; }
        #terminal-output::-webkit-scrollbar-track { background: transparent; }
        #terminal-output::-webkit-scrollbar-thumb { background: #10b98133; border-radius: 10px; }
         .card:hover .viewport { flex-grow: 1.5; }
        .card:hover .cert-img { transform: scale(1.1); filter: grayscale(0); opacity: 1; }
         /* Unified Portal Styling */
        .badge-portal {width: 100%; height: 140px; overflow: hidden;background: rgba(0,0,0,0.4); border-radius: 1.5rem;display: flex; align-items: center; justify-content: center;
            border: 1px solid rgba(255,255,255,0.05); margin: 1.5rem 0;transition: all 0.5s ease;}
        .badge-img {height: 75%; object-fit: contain; filter: grayscale(1) opacity(0.4);transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);}
        .group:hover .badge-portal { border-color: rgba(255,255,255,0.15); background: rgba(0,0,0,0.7); }
        .group:hover .badge-img { filter: grayscale(0) opacity(1); transform: scale(1.1) rotate(2deg); }
        /* Unified Tactical Button */
        .verify-trigger {position: relative; width: 100%; padding: 14px;background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 1rem; overflow: hidden; cursor: pointer;transition: all 0.3s ease; display: flex; align-items: center; justify-content: center;}
        .verify-trigger::after {content: ''; position: absolute; top: 0; left: -100%;width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);transition: 0.6s;}
        .verify-trigger:hover::after { left: 100%; }
        .verify-trigger:hover { background: rgba(255,255,255,0.07); letter-spacing: 0.1em; }
        .status-dot { width: 6px; height: 6px; border-radius: 50%; margin-right: 10px; }

/* Triple Column Grid */
.projects-triple-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stacked on mobile */
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .projects-triple-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 Equal Columns on Desktop */
    }
}

/* Category-specific accent borders */
.border-infra { border-top: 2px solid #10b981; } /* Emerald */
.border-cloud { border-top: 2px solid #3b82f6; } /* Blue/Azure */
.border-security { border-top: 2px solid #ef4444; } /* Red/Alert */

.panel-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.panel-card:hover {
    transform: translateY(-5px);
}
    
