.glass-panel {
    background-color: rgba(13, 59, 42, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-panel:hover {
    border-color: rgba(200, 155, 45, 0.5);
}

.glass-dark {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.text-glow {
    text-shadow: 0 0 20px rgba(200, 155, 45, 0.5);
}

.shadow-glow {
    box-shadow: 0 0 15px rgba(200, 155, 45, 0.3);
}

.shadow-glow:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

/* Scrollbar */
html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background-color: #0D3B2A;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(200, 155, 45, 0.5);
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #C89B2D;
}

/* Hide scrollbar for horizontal scroll areas */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
