/* ============================================
   果冻5.1天美影视 - hofoqi.cn
   Modern Glassmorphism Video Streaming UI
   Unique CSS Fingerprint: _h9p4x
   ============================================ */

:root {
    --primary-h9p4x: #00b894;
    --secondary-h9p4x: #55efc4;
    --accent-h9p4x: #e17055;
    --dark-h9p4x: #0d1117;
    --darker-h9p4x: #060a0f;
    --glass-bg-h9p4x: rgba(255, 255, 255, 0.05);
    --glass-border-h9p4x: rgba(255, 255, 255, 0.08);
    --text-h9p4x: #e8ecf1;
    --text-muted-h9p4x: #8b95a5;
    --gradient-h9p4x: linear-gradient(135deg, #00b894 0%, #55efc4 50%, #e17055 100%);
    --shadow-h9p4x: 0 10px 40px rgba(0, 0, 0, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body._body_h9p4x {
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--darker-h9p4x);
    color: var(--text-h9p4x);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Background Mesh */
._bg_mesh_h9p4x {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(ellipse 600px 400px at 15% 20%, rgba(0, 184, 148, 0.15), transparent),
        radial-gradient(ellipse 500px 500px at 85% 80%, rgba(225, 112, 85, 0.12), transparent);
    animation: _meshShift_h9p4x 30s ease-in-out infinite alternate;
}

@keyframes _meshShift_h9p4x {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Header */
._topbar_h9p4x {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border-h9p4x);
    transition: all 0.35s ease;
}

._topbar_wrap_h9p4x {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

._brand_h9p4x {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

._brand_h9p4x svg {
    width: 40px;
    height: 40px;
}

._brand_name_h9p4x {
    font-size: 1.05rem;
    font-weight: 700;
    background: var(--gradient-h9p4x);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
._menu_h9p4x {
    display: flex;
    align-items: center;
    gap: 4px;
}

._menu_h9p4x a {
    color: var(--text-muted-h9p4x);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

._menu_h9p4x a:hover,
._menu_h9p4x a._sel_h9p4x {
    color: var(--text-h9p4x);
    background: var(--glass-bg-h9p4x);
}

._menu_h9p4x a._sel_h9p4x::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%);
    width: 18px; height: 3px;
    background: var(--gradient-h9p4x);
    border-radius: 2px;
}

/* Search */
._finder_h9p4x {
    position: relative;
    width: 220px;
}

._finder_h9p4x input {
    width: 100%;
    padding: 10px 38px 10px 14px;
    background: var(--glass-bg-h9p4x);
    border: 1px solid var(--glass-border-h9p4x);
    border-radius: 10px;
    color: var(--text-h9p4x);
    font-size: 0.84rem;
    outline: none;
    transition: all 0.3s ease;
}

._finder_h9p4x input:focus {
    border-color: var(--primary-h9p4x);
    box-shadow: 0 0 18px rgba(0, 184, 148, 0.2);
}

._finder_h9p4x input::placeholder { color: var(--text-muted-h9p4x); }

._finder_ico_h9p4x {
    position: absolute;
    right: 10px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted-h9p4x);
    cursor: pointer;
    transition: color 0.3s;
}

._finder_ico_h9p4x:hover { color: var(--primary-h9p4x); }

/* Mobile Hamburger */
._hamburger_h9p4x {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

._hamburger_h9p4x span {
    width: 22px;
    height: 2px;
    background: var(--text-h9p4x);
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Main */
._content_h9p4x {
    position: relative;
    z-index: 1;
    padding-top: 88px;
    min-height: 100vh;
}

._wrap_h9p4x {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Hero Banner */
._banner_h9p4x {
    text-align: center;
    padding: 50px 0 36px;
}

._banner_h9p4x h1 {
    font-size: 2.6rem;
    font-weight: 800;
    background: var(--gradient-h9p4x);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    line-height: 1.35;
}

._banner_sub_h9p4x {
    font-size: 1.05rem;
    color: var(--text-muted-h9p4x);
    max-width: 680px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

/* Breadcrumb */
._crumbs_h9p4x {
    padding: 14px 0;
    font-size: 0.84rem;
}

._crumbs_h9p4x ol {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

._crumbs_h9p4x li + li::before {
    content: '/';
    margin-right: 8px;
    color: var(--text-muted-h9p4x);
}

._crumbs_h9p4x a {
    color: var(--text-muted-h9p4x);
    text-decoration: none;
    transition: color 0.3s;
}

._crumbs_h9p4x a:hover { color: var(--primary-h9p4x); }

._crumbs_h9p4x ._here_h9p4x { color: var(--text-h9p4x); }

/* Section Heading */
._heading_h9p4x {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 22px;
    padding-left: 16px;
    border-left: 4px solid;
    border-image: var(--gradient-h9p4x) 1;
}

/* Video Cards */
._card_grid_h9p4x {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
    margin-bottom: 44px;
}

._card_h9p4x {
    background: var(--glass-bg-h9p4x);
    border: 1px solid var(--glass-border-h9p4x);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    cursor: pointer;
}

._card_h9p4x:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-h9p4x);
    border-color: rgba(0, 184, 148, 0.3);
}

._card_visual_h9p4x {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #111;
}

._card_visual_h9p4x img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

._card_h9p4x:hover ._card_visual_h9p4x img {
    transform: scale(1.06);
    filter: brightness(0.8);
}

._hover_mask_h9p4x {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

._card_h9p4x:hover ._hover_mask_h9p4x { opacity: 1; }

._play_circle_h9p4x {
    width: 56px; height: 56px;
    background: rgba(0, 184, 148, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.85);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 184, 148, 0.4);
}

._card_h9p4x:hover ._play_circle_h9p4x { transform: scale(1); }

._play_circle_h9p4x svg {
    width: 22px; height: 22px;
    fill: white;
    margin-left: 2px;
}

._time_badge_h9p4x {
    position: absolute;
    bottom: 8px; right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 0.73rem;
    font-weight: 600;
}

._card_body_h9p4x {
    padding: 14px 16px;
}

._card_body_h9p4x h3 {
    font-size: 0.93rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

._card_stats_h9p4x {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted-h9p4x);
}

._card_eye_h9p4x {
    display: flex;
    align-items: center;
    gap: 4px;
}

._label_h9p4x {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 184, 148, 0.12);
    color: var(--secondary-h9p4x);
    border-radius: 6px;
    font-size: 0.7rem;
    margin-top: 8px;
    font-weight: 500;
}

/* Testimonials */
._testimonials_h9p4x {
    margin-bottom: 44px;
}

._testi_grid_h9p4x {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}

._testi_h9p4x {
    background: var(--glass-bg-h9p4x);
    border: 1px solid var(--glass-border-h9p4x);
    border-radius: 14px;
    padding: 22px;
    transition: all 0.3s ease;
}

._testi_h9p4x:hover {
    border-color: rgba(0, 184, 148, 0.3);
    transform: translateY(-3px);
}

._testi_top_h9p4x {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

._testi_pic_h9p4x {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--gradient-h9p4x);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

._testi_who_h9p4x { font-weight: 600; font-size: 0.93rem; }

._testi_rate_h9p4x {
    color: #f9ca24;
    font-size: 0.83rem;
    letter-spacing: 2px;
}

._testi_msg_h9p4x {
    color: var(--text-muted-h9p4x);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* Share Bar */
._sharebar_h9p4x {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0;
    padding: 18px 22px;
    background: var(--glass-bg-h9p4x);
    border: 1px solid var(--glass-border-h9p4x);
    border-radius: 14px;
}

._sharebar_h9p4x span {
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
}

._share_btns_h9p4x {
    display: flex;
    gap: 10px;
}

._share_btns_h9p4x a {
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg-h9p4x);
    border: 1px solid var(--glass-border-h9p4x);
    border-radius: 10px;
    color: var(--text-muted-h9p4x);
    text-decoration: none;
    transition: all 0.3s ease;
}

._share_btns_h9p4x a:hover {
    background: var(--primary-h9p4x);
    color: white;
    border-color: var(--primary-h9p4x);
    transform: translateY(-2px);
}

/* FAQ */
._qa_h9p4x { margin-bottom: 44px; }

._qa_block_h9p4x {
    background: var(--glass-bg-h9p4x);
    border: 1px solid var(--glass-border-h9p4x);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}

._qa_block_h9p4x[open] { border-color: rgba(0, 184, 148, 0.3); }

._qa_block_h9p4x summary {
    padding: 16px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: background 0.3s;
}

._qa_block_h9p4x summary::-webkit-details-marker { display: none; }

._qa_block_h9p4x summary::after {
    content: '▸';
    font-size: 1rem;
    color: var(--primary-h9p4x);
    transition: transform 0.3s;
}

._qa_block_h9p4x[open] summary::after { transform: rotate(90deg); }

._qa_block_h9p4x summary:hover { background: rgba(255, 255, 255, 0.02); }

._qa_text_h9p4x {
    padding: 0 22px 16px;
    color: var(--text-muted-h9p4x);
    font-size: 0.88rem;
    line-height: 1.8;
    animation: _slideDown_h9p4x 0.3s ease;
}

@keyframes _slideDown_h9p4x {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact */
._info_section_h9p4x { margin-bottom: 44px; }

._info_boxes_h9p4x {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

._info_box_h9p4x {
    background: var(--glass-bg-h9p4x);
    border: 1px solid var(--glass-border-h9p4x);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    transition: all 0.3s ease;
}

._info_box_h9p4x:hover {
    border-color: rgba(0, 184, 148, 0.3);
    transform: translateY(-3px);
}

._info_box_h9p4x h4 { margin-bottom: 6px; font-size: 0.93rem; }

._info_box_h9p4x p { color: var(--text-muted-h9p4x); font-size: 0.84rem; }

/* Footer */
._bottom_h9p4x {
    position: relative;
    z-index: 1;
    background: rgba(6, 10, 15, 0.92);
    border-top: 1px solid var(--glass-border-h9p4x);
    padding: 44px 0 20px;
    margin-top: 56px;
}

._bottom_wrap_h9p4x {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
}

._bottom_cols_h9p4x {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
    margin-bottom: 28px;
}

._bottom_col_h9p4x h4 {
    font-size: 0.93rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-h9p4x);
}

._bottom_col_h9p4x a {
    display: block;
    color: var(--text-muted-h9p4x);
    text-decoration: none;
    font-size: 0.84rem;
    padding: 3px 0;
    transition: color 0.3s;
}

._bottom_col_h9p4x a:hover { color: var(--primary-h9p4x); }

._copyright_h9p4x {
    border-top: 1px solid var(--glass-border-h9p4x);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--text-muted-h9p4x);
}

._timestamp_h9p4x {
    font-size: 0.78rem;
    color: var(--text-muted-h9p4x);
}

/* Responsive */
@media (max-width: 768px) {
    ._topbar_wrap_h9p4x { height: 58px; }

    ._menu_h9p4x {
        position: fixed;
        top: 0; right: 0;
        width: 280px; height: 100vh;
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    ._menu_h9p4x._show_h9p4x { transform: translateX(0); }

    ._menu_h9p4x a { font-size: 1.1rem; padding: 12px 20px; }

    ._hamburger_h9p4x { display: flex; }

    ._finder_h9p4x { display: none; }

    ._banner_h9p4x h1 { font-size: 1.7rem; }

    ._banner_sub_h9p4x { font-size: 0.92rem; }

    ._card_grid_h9p4x {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 14px;
    }

    ._testi_grid_h9p4x { grid-template-columns: 1fr; }

    ._sharebar_h9p4x { flex-direction: column; align-items: flex-start; }

    ._copyright_h9p4x { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    ._banner_h9p4x h1 { font-size: 1.35rem; }
    ._card_grid_h9p4x { grid-template-columns: 1fr; }
    ._wrap_h9p4x { padding: 0 14px; }
}
