:root {
    font-size: 85%;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #000000;
    color: #e5e7eb;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Card Styles */
.card {
    background-color: rgba(17, 24, 39, 0.55);
    border: 1px solid #1f2937;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
    border-color: #a855f7;
}

/* Utils */
.glow-effect {
    position: absolute;
    filter: blur(120px);
    opacity: 0.2;
    z-index: -1;
}

.search-input-wrapper {
    transition: all 0.2s;
}

.search-input-wrapper:focus-within {
    border-color: #a855f7;
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}