.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-bg {
    background-image: linear-gradient(to right, rgba(29, 44, 66, 0.9) 30%, rgba(29, 44, 66, 0.4) 100%), url('../images/hero_bundle.webp');
    background-size: cover;
    background-position: center;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #f37306;
    border-radius: 10px;
    border: 2px solid #f8fafc;
}

::-webkit-scrollbar-thumb:hover {
    background: #e66c05;
}

/* Firefox support */
* {
    scrollbar-width: thin;
    scrollbar-color: #f37306 #f8fafc;
}