/* CSS เพิ่มเติมสำหรับการตกแต่งพิเศษ */
.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #d4af37 100%);
}
/* Animation สำหรับ Slide */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
