/* Pure CSS Styles */
body {
    background-color: #0f172a;
}

/* Custom scrollbar for the page */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tool-card {
    animation: fadeIn 0.5s ease forwards;
}

/* Modal States */
#about-modal.active {
    opacity: 1;
    pointer-events: auto;
}

#about-modal.active #modal-content {
    transform: scale(1);
}

.modal-open {
    overflow: hidden;
}
