body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.menu-slide {
    transition: transform 0.3s ease-in-out;
}

.ck-editor__editable {
    min-height: 160px !important;
}

.hero-bg {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.4) 100%), url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.pastel-green {
    background-color: #e8f5e9;
    color: #2e7d32;
}

/* Hiệu ứng chuyển động logo nhà tài trợ */
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-run 25s linear infinite;
}

@keyframes marquee-run {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}