/* 纯CSS图片占位器 - 零存储占用 */

/* 基础占位图样式 */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    position: relative;
    overflow: hidden;
}

/* 彩虹渐变背景 */
.rainbow-gradient {
    background: linear-gradient(
        45deg,
        #FF6B9D 0%,
        #7C73E6 25%,
        #4ECDC4 50%,
        #FFB347 75%,
        #FF6B9D 100%
    );
    background-size: 400% 400%;
    animation: rainbowShift 10s ease infinite;
}

@keyframes rainbowShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 《面子》电影专用占位 */
.poster-saving-face {
    background: linear-gradient(135deg, #FF6B9D, #7C73E6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    padding: 20px;
    text-align: center;
}

.poster-saving-face::before {
    content: "面子";
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-saving-face::after {
    content: "Saving Face";
    font-size: 24px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.poster-saving-face .year {
    font-size: 18px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    margin-top: 15px;
}

/* 《同心难改》电影专用占位 */
.poster-cant-think {
    background: linear-gradient(135deg, #7C73E6, #4ECDC4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    padding: 20px;
    text-align: center;
}

.poster-cant-think::before {
    content: "同心难改";
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-cant-think::after {
    content: "I Can't Think Straight";
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.poster-cant-think .year {
    font-size: 16px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    margin-top: 15px;
}

/* 通用电影海报占位器 */
.movie-poster {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}

.movie-poster .title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.movie-poster .subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.movie-poster .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

/* 博客卡片图片占位 */
.blog-image-placeholder {
    background: linear-gradient(45deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    text-align: center;
    padding: 20px;
}

.blog-image-placeholder::before {
    content: "📝";
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

/* 响应式占位图 */
@media (max-width: 768px) {
    .poster-saving-face::before {
        font-size: 36px;
    }

    .poster-saving-face::after {
        font-size: 18px;
    }

    .poster-cant-think::before {
        font-size: 32px;
    }

    .poster-cant-think::after {
        font-size: 16px;
    }

    .movie-poster .title {
        font-size: 24px;
    }
}

/* 图片加载失败的统一处理 */
img {
    transition: opacity 0.3s ease;
}

img:not([src]), img[src=""], img[src="data:,"], img[src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"] {
    opacity: 0;
}

/* CSS生成的图片容器 */
.css-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.css-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        #FF6B9D 0deg,
        #7C73E6 60deg,
        #4ECDC4 120deg,
        #FFB347 180deg,
        #FF6B9D 240deg,
        #7C73E6 300deg,
        #4ECDC4 360deg
    );
    animation: rotate 10s linear infinite;
}

.css-image::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    font-weight: bold;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 各剧集海报的CSS样式 */
.poster-les1 {
    background: linear-gradient(135deg, #FF6B9D, #7C73E6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-les1::before {
    content: "Secret Love";
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-les1::after {
    content: "办公室恋情";
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

/* The L Word Article (2024) */
.poster-the-l-word-2024 {
    background: linear-gradient(135deg, #7C73E6 0%, #4ECDC4 50%, #FF6B6B 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.poster-the-l-word-2024::before {
    content: '🌈';
    font-size: 60px;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

.poster-the-l-word-2024 .year {
    font-size: 28px;
    font-weight: bold;
    color: white;
    background: rgba(0,0,0,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    margin-top: 20px;
}

.poster-les2 {
    background: linear-gradient(135deg, #7C73E6, #4ECDC4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-les2::before {
    content: "The L Word";
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-les2::after {
    content: "Generation Q";
    font-size: 18px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-les3 {
    background: linear-gradient(135deg, #4ECDC4, #FFB347);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-les3::before {
    content: "两棵树";
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-les3::after {
    content: "青春成长";
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-les4 {
    background: linear-gradient(135deg, #FFB347, #FF6B9D);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-les4::before {
    content: "绅士杰克";
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-les4::after {
    content: "Gentleman Jack";
    font-size: 18px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-les5 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-les5::before {
    content: "Bad Buddy";
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-les5::after {
    content: "欢喜冤家";
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-les6 {
    background: linear-gradient(135deg, #a8e6cf, #dcedc1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-les6::before {
    content: "First Love";
    font-size: 30px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.poster-les6::after {
    content: "初恋";
    font-size: 18px;
    opacity: 0.8;
    margin-top: 10px;
}

.poster-two-trees {
    background: linear-gradient(135deg, #4caf50, #82d8b2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-two-trees::before {
    content: "两棵树";
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.poster-two-trees::after {
    content: "青春校园";
    font-size: 20px;
    opacity: 0.9;
    margin-top: 15px;
}

.poster-gentleman-jack {
    background: linear-gradient(135deg, #4a5a6a, #774c60);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-gentleman-jack::before {
    content: "绅士杰克";
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.poster-gentleman-jack::after {
    content: "Gentleman Jack";
    font-size: 24px;
    opacity: 0.9;
    margin-top: 15px;
    font-family: Georgia, serif;
}

/* Gay剧集海报 */
.poster-gay1 {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-gay1::before {
    content: "黑帮的我家会长";
    font-size: 26px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-gay1::after {
    content: "KinnPorsche";
    font-size: 18px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-gay2 {
    background: linear-gradient(135deg, #3498db, #9b59b6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-gay2::before {
    content: "语义错误";
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-gay2::after {
    content: "Semantic Error";
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-gay3 {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-gay3::before {
    content: "刻在你心底";
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-gay3::after {
    content: "的名字";
    font-size: 20px;
    opacity: 0.9;
    margin-top: 5px;
}

.poster-gay4 {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-gay4::before {
    content: "两小无拆";
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-gay4::after {
    content: "2gether";
    font-size: 18px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-gay5 {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-gay5::before {
    content: "以你的心";
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-gay5::after {
    content: "诠释我的爱";
    font-size: 20px;
    opacity: 0.9;
    margin-top: 5px;
}

.poster-gay6 {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-gay6::before {
    content: "人生是美丽的";
    font-size: 26px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-gay6::after {
    content: "Life is Beautiful";
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

/* 首页推荐海报 */
.poster-featured-1 {
    background: linear-gradient(135deg, #FF6B9D, #7C73E6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
    position: relative;
}

.poster-featured-1::before {
    content: "以你的心诠释我的爱";
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-featured-1::after {
    content: "评分 9.2";
    font-size: 16px;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 15px;
}

.poster-featured-2 {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
    position: relative;
}

.poster-featured-2::before {
    content: "黑帮的我家会长";
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-featured-2::after {
    content: "评分 8.8";
    font-size: 16px;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 15px;
}

.poster-featured-3 {
    background: linear-gradient(135deg, #FF6B9D, #4ECDC4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
    position: relative;
}

.poster-featured-3::before {
    content: "她的私生活";
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-featured-3::after {
    content: "评分 9.0";
    font-size: 16px;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 15px;
}


/* 博客文章占位图 */
.poster-world-unseen {
    background: linear-gradient(135deg, #e74c3c, #c0392b, #85476b);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
    position: relative;
}

.poster-world-unseen::before {
    content: "看不见的世界";
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.poster-world-unseen::after {
    content: "The World Unseen";
    font-size: 18px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-world-unseen .year {
    font-size: 16px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    margin-top: 15px;
}

.poster-lan-yu {
    background: linear-gradient(135deg, #34495e, #2c3e50, #3498db);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
    position: relative;
}

.poster-lan-yu::before {
    content: "蓝宇";
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.poster-lan-yu::after {
    content: "LAN YU";
    font-size: 24px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-lan-yu .year {
    font-size: 16px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    margin-top: 15px;
}

/* Blog页面海报样式 */
.poster-saving-face {
    background: linear-gradient(135deg, #f8b500, #fceabb);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-saving-face::before {
    content: "面子";
    font-size: 36px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.poster-saving-face::after {
    content: "Saving Face";
    font-size: 18px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-cant-think {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-cant-think::before {
    content: "同心难改";
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-cant-think::after {
    content: "I Can't Think Straight";
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-the-l-word {
    background: linear-gradient(135deg, #7C73E6, #4ECDC4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-the-l-word::before {
    content: "The L Word";
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-the-l-word::after {
    content: "拉拉群体的真实写照";
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

/* 2024 Thai BL Series Poster */
.poster-thai-bl-2024 {
    background: linear-gradient(135deg, #FF7423 0%, #FFA724 50%, #FF9584 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.poster-thai-bl-2024::before {
    content: '🇹🇭';
    font-size: 60px;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

.poster-thai-bl-2024 .year {
    font-size: 28px;
    font-weight: bold;
    color: white;
    background: rgba(0,0,0,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    margin-top: 20px;
}

.poster-thai-bl {
    background: linear-gradient(135deg, #FF6B9D, #C44569);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-thai-bl::before {
    content: "泰剧推荐";
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-thai-bl::after {
    content: "2024最受欢迎";
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

/* Japanese BL Culture Article */
.poster-japanese-bl-culture {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.poster-japanese-bl-culture::before {
    content: '🍱';
    font-size: 60px;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

.poster-japanese-bl-culture .year {
    font-size: 28px;
    font-weight: bold;
    color: white;
    background: rgba(0,0,0,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    margin-top: 20px;
}

.poster-japanese-bl {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-japanese-bl::before {
    content: "日本BL剧";
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-japanese-bl::after {
    content: "昨日的美食";
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

/* Korean LGBTQ+ Drama Article */
.poster-korean-lgbtq-drama {
    background: linear-gradient(135deg, #ee9ca7 0%, #ffdde1 50%, #a8edea 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.poster-korean-lgbtq-drama::before {
    content: '🇰🇷';
    font-size: 60px;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

.poster-korean-lgbtq-drama .year {
    font-size: 28px;
    font-weight: bold;
    color: #d63384;
    background: rgba(255,255,255,0.7);
    padding: 8px 20px;
    border-radius: 20px;
    margin-top: 20px;
}

.poster-korean-lgbt {
    background: linear-gradient(135deg, #ee9ca7, #ffdde1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-korean-lgbt::before {
    content: "韩国LGBTQ+";
    font-size: 28px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.poster-korean-lgbt::after {
    content: "剧集的突破与困境";
    font-size: 16px;
    opacity: 0.8;
    margin-top: 10px;
}

.poster-western-lgbt {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-western-lgbt::before {
    content: "好莱坞同志电影";
    font-size: 26px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-western-lgbt::after {
    content: "30年发展历程";
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-thai-culture {
    background: linear-gradient(135deg, #FA8BFF, #2BD2FF);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-thai-culture::before {
    content: "泰国耽美文化";
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-thai-culture::after {
    content: "从小说到荧幕";
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-taiwan-lgbt {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-taiwan-lgbt::before {
    content: "台湾同志影视";
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.poster-taiwan-lgbt::after {
    content: "亚洲多元文化的先锋";
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

.poster-chinese-lgbt {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

.poster-chinese-lgbt::before {
    content: "华语LGBTQ+";
    font-size: 28px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.poster-chinese-lgbt::after {
    content: "电影的生存与突破";
    font-size: 16px;
    opacity: 0.8;
    margin-top: 10px;
}

/* 图标占位符 */
.icon-favicon {
    width: 32px;
    height: 32px;
    /* 小尺寸 favicon 采用蓝粉渐变，呼应全站主题 */
    background: linear-gradient(135deg, #22d3ee, #4f46e5, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.icon-favicon::before {
    content: "🌈";
}

/* Open Graph 图片 */
.og-image {
    width: 1200px;
    height: 630px;
    /* Open Graph 预览图采用冷暖蓝粉霓虹渐变 */
    background: linear-gradient(
        135deg,
        #22d3ee 0%,
        #4f46e5 30%,
        #ec4899 65%,
        #22d3ee 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
    padding: 40px;
}

.og-image::before {
    content: "彩虹影集";
    font-size: 72px;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.og-image::after {
    content: "发现最新、最热门的Les与Gay剧集";
    font-size: 32px;
    opacity: 0.9;
    margin-top: 20px;
}
