/* assets/css/single-chinese.css - FINAL FIX BLUR */

/* 1. NỀN & MÀU SẮC CHỦ ĐẠO */
.style-eastern { 
    background-color: #fcf8e3; 
}

/* 2. HERO SECTION */
.zodiac-hero-section {
    background: radial-gradient(circle, #a00000 0%, #600000 100%);
    color: #ffcc00; 
    padding: 60px 0;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    border-bottom: 5px solid #ffcc00;
}

/* Ảnh đại diện (Line Art) */
.zodiac-icon-wrapper img {
    width: 120px; 
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255,204,0,0.5)); 
    margin-bottom: 15px;
}

.zodiac-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 10px;
    text-shadow: 2px 2px 0 #330000;
    line-height: 1.2;
}

.zodiac-years {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
    letter-spacing: 1px;
    margin-top: 10px;
}
.zodiac-years .label { color: #ffcc00; font-weight: bold; text-transform: uppercase; }

/* 3. NỘI DUNG GIẤY GIÓ */
.paper-style {
    background: #fff;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.1);
    border: 1px solid #e0d0b0;
    position: relative;
    border-radius: 4px;
}
.paper-style::before {
    content: ""; position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 2px solid #8b0000; opacity: 0.1; pointer-events: none;
}
.paper-style h2 {
    color: #8b0000;
    font-family: 'Playfair Display', serif;
    border-bottom: 1px solid #e0d0b0;
    padding-bottom: 10px;
    margin-top: 30px;
}
.paper-style p {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .zodiac-title { font-size: 2.5rem; }
    .paper-style { padding: 25px; }
}


/* =========================================================
   HIỆU ỨNG CHUYỂN ĐỘNG SIÊU NÉT (NO BLUR FIX)
   Bí quyết: Không dùng Rotate, chỉ dùng Translate3D
   ========================================================= */

/* 1. Định nghĩa chuyển động: CHỈ LÊN VÀ XUỐNG */
@keyframes sharp-float-vertical {
    0% {
        transform: translate3d(0, 0, 0); /* Vị trí gốc */
    }
    50% {
        transform: translate3d(0, -12px, 0); /* Bay lên 12px */
    }
    100% {
        transform: translate3d(0, 0, 0); /* Về gốc */
    }
}

/* 2. Áp dụng cho Icon Header */
.style-eastern .zodiac-icon-wrapper img {
    /* Animation 3s (Nhanh) */
    animation: sharp-float-vertical 3s ease-in-out infinite;
    
    /* Ép trình duyệt dùng GPU để vẽ ảnh */
    will-change: transform;
    transform: translateZ(0); 
    -webkit-backface-visibility: hidden; /* Chống rung cho Chrome */
}

/* 3. Áp dụng cho Ảnh trong bài viết */
.style-eastern .entry-content img {
    /* Animation 4s */
    animation: sharp-float-vertical 4s ease-in-out infinite;
    
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    
    /* Box shadow tĩnh giúp ảnh nổi bật mà không gây lag/mờ */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}