/* Smoother Scrolling */
html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Subtle Gradient Text for Highlight Terms */
.gradient-text {
    background: linear-gradient(90deg, #fff, #a1a1a1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Improved Glassmorphism for Navbar to be more distinct */
.site-header {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Refined Typography for Body Text */
p {
    line-height: 1.7;
    letter-spacing: 0.01em;
    font-weight: 300;
    /* Use Poppins Light for cleaner reading */
}

/* Button Subtle Scale on Click */
.btn:active {
    transform: scale(0.98);
}