/* Glassmorphism User Interface Component Blocks */
.glass-card {
    background:#030f26 (221, 234, 250, 0.918);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); /* Safari Support */
    border: 1px solid rgba(223, 144, 144, 0.05);
}

/* Linear Gradient Background Text Shading Engine */
.gradient-text {
    background: linear-gradient(135deg, #95a54d 0%, #b1dd12 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar Styling Architecture */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #10121b;
}

button{
    background-color: #000000;
}

h3{
    color: rgb(139, 190, 190);
}