.elementor-4267 .elementor-element.elementor-element-424b3fe{--display:flex;}.elementor-4267 .elementor-element.elementor-element-bbc3373{--display:flex;}/* Start custom CSS for html, class: .elementor-element-860ed66 */.blog-container {
    max-width: 850px;
    margin: 20px auto;
    background-color: #fffdf5;
    padding: 50px;
    font-family: 'Quicksand', sans-serif;
    color: #444;
    line-height: 1.8;
    border-radius: 12px;
}

.blog-header h1 {
    color: #b71c1c;
    text-align: center;
    font-size: 30px;
    margin-bottom: 5px;
}

.post-date {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.blog-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-content h2 {
    color: #333;
    font-size: 22px;
    border-left: 5px solid #f06292;
    padding-left: 15px;
    margin: 40px 0 20px 0;
}

.blog-content h3 {
    font-size: 18px;
    color: #d81b60;
    margin-top: 25px;
}

.blog-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.blog-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 10px;
}
/* --- PHẦN CSS CHO HOA BAY BAY (BÀ DÁN NỐI TIẾP VÀO NHÉ) --- */

/* Khung chứa hiệu ứng hoa bay */
.dy-flower-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Để chuột vẫn click được vào bài viết */
    z-index: -1; /* Cho nó bay sau lưng nội dung */
    overflow: hidden;
}

/* Định hình bông hoa */
.dy-flower {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8; /* Độ trong suốt nhẹ */
    animation: dyFlowerFall linear infinite; /* Gọi hiệu ứng bay */
}

/* Định nghĩa hiệu ứng bay và xoay */
@keyframes dyFlowerFall {
    0% {
        transform: translate(0, -100px) rotate(0deg); /* Bắt đầu ở trên cùng */
        opacity: 0; /* Ẩn đi khi mới xuất hiện */
    }
    10% {
        opacity: 0.8; /* Hiện rõ dần */
    }
    90% {
        opacity: 0.8; /* Giữ độ rõ */
    }
    100% {
        transform: translate(100px, 110vh) rotate(360deg); /* Bay xuống và qua phải, xoay vòng vòng */
        opacity: 0; /* Ẩn đi khi bay hết màn hình */
    }
}
/* --- CSS MỚI CHO HOA HIỆN LÊN TRÊN --- */
.dy-flower-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Quan trọng: Để bà vẫn cuộn trang và bấm link được */
    z-index: 9999; /* Cho bay lên trên cùng luôn */
    overflow: hidden;
}

.dy-flower {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6; /* Cho hoa hơi mờ tí để không chướng mắt */
    top: -50px; /* Bắt đầu từ ngoài màn hình phía trên */
}

/* Hiệu ứng bay chéo chéo cho nó tự nhiên */
@keyframes dyFlowerFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(110vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}/* End custom CSS */