body {
    background-color: #0b0f19;
    color: #dfe2f1;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.glass-card {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(78, 222, 163, 0.3);
    box-shadow: 0 0 20px rgba(78, 222, 163, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #4edea3 0%, #3131c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78, 222, 163, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
    z-index: -1;
    filter: blur(40px);
}

.terminal-box {
    background: #080c14;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Courier New', Courier, monospace;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4edea3;
    box-shadow: 0 0 10px #4edea3;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.active-nav {
    color: #4edea3;
    font-weight: 700;
    border-bottom: 2px solid #4edea3;
    padding-bottom: 4px;
}

.zoom-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-container:hover .zoom-overlay {
    opacity: 1;
}

.zoom-container:hover img {
    transform: scale(1.05);
}

.workflow-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -24px;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, #4edea3, transparent);
    display: none;
}

@media (min-width: 768px) {
    .workflow-step:not(:last-child)::after {
        display: block;
    }
}

.project-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-table tr:last-child {
    border-bottom: none;
}