body {
    font-family: "Bai Jamjuree", serif;
    font-optical-sizing: auto;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(56, 189, 248, 0.8);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(56, 189, 248, 1);
}

@keyframes floatParticles {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translate(26px, -32px);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }
}

.particle {
    position: fixed;
    width: 3px;
    height: 3px;
    background: cyan;
    border-radius: 50%;
    opacity: 0.5;
    animation: floatParticles 6s infinite ease-in-out;
}

@supports (font: -apple-system-body) and (-webkit-appearance: none) {
    .backdrop-blur-lg,
    .backdrop-blur-xl {
        backdrop-filter: none !important;
    }
}

.post-content a {
    color: #38bdf8;
    text-decoration: none;
    transition: color 0.2s;
}
.post-content a:hover {
    color: #38bdf8;
    text-decoration: underline;
}
