/* 

Add here your custom css styles Example: p { text-align: center; color: red; } 

*/

/* ================================================================
   HERO SECTION — Beautify card (keep card, make it look premium)
   ZERO impact on shorts/trending/other sections
   ================================================================ */

/* --- Card: dark glass instead of the ugly gray --- */
.home_feat .feature_wrap {
    background: rgba(0, 0, 0, 0.55) !important;
    backdrop-filter: saturate(140%) blur(20px) !important;
    -webkit-backdrop-filter: saturate(140%) blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    padding: 32px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    transition: background 0.3s ease, box-shadow 0.3s ease !important;
}
.home_feat .feature_wrap:hover {
    background: rgba(0, 0, 0, 0.65) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5) !important;
}

/* --- Badge "精选视频" --- */
.home_feat .feature_wrap > h4 {
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 100px !important;
    padding: 4px 14px !important;
    font-size: 12px !important;
    letter-spacing: 0.05em !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

/* --- Title --- */
.home_feat .feature_text_title a {
    font-weight: 700 !important;
    font-size: 28px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4) !important;
}

/* --- Author avatar --- */
.home_feat .right_feature_wrap img {
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
}

/* --- Share + Copy buttons --- */
.home_feat .share_button button,
.home_feat .share_button.copy button {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 50% !important;
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
}
.home_feat .share_button button:hover,
.home_feat .share_button.copy button:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.06) !important;
}

/* --- Right side poster card --- */
.hero_poster_side {
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 16px 40px rgba(0,0,0,0.5) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.hero_poster_side:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.10), 0 24px 52px rgba(0,0,0,0.65) !important;
}
.hero_sharp_poster {
    border-radius: 14px !important;
}

/* --- Play btn on poster: show on hover --- */
.hero_poster_side .feat_vid_big_play_btn {
    opacity: 0 !important;
    transition: opacity 0.25s ease !important;
}
.hero_poster_side:hover .feat_vid_big_play_btn {
    opacity: 1 !important;
}