/* Tech Stack Cards - Dark Mode Fix */
.tech-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

body.dark-mode .tech-card {
    background: #1e293b;
    border-color: #334155;
}

.tech-card-name {
    font-weight: 600;
    color: #0f172a;
    margin-top: 12px;
}

body.dark-mode .tech-card-name {
    color: #f1f5f9;
}

/* Stat Cards - Better Text Visibility */
.stat-card .stat-label {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

body.dark-mode .stat-card .stat-label {
    color: rgba(255, 255, 255, 0.95) !important;
}