body { 
    font-family: 'Inter', sans-serif; 
    background-color: #050505; 
    color: #e2e8f0; 
}
.font-mono { font-family: 'JetBrains Mono', monospace; }

/* Glass Card Style */
.card {
    background: rgba(20, 20, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    background: rgba(30, 30, 35, 0.8);
}

/* Tech Badge Style */
.tech-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}
.tech-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}
.tech-badge i { margin-right: 8px; }
