body {
    background: var(--app-body-bg);
    color: var(--phone-text);
}

.phone {
    width: 540px;
    max-width: 100vw;
    margin: 0 auto;
    background: var(--app-phone-bg);
    min-height: 100vh;
    /* 1. 这里控制下移距离，设置 30px-40px 比较合适 */
    padding-top: 30px !important; 
    padding-bottom: 70px;
}

.player-wrap {
    position: relative;
    /* 2. 这里的 top 必须改回 0，否则会扣掉容器的高度 */
    top: 0 !important; 
    background: #000;
    /* 3. 恢复或增加高度，如果你觉得还是矮，可以改成 250px */
    height: 230px; 
    overflow: hidden;
}

.player-wrap video {
    width: 100%;
    height: 100%;
    /* 4. 如果不希望画面被裁切，可以把 cover 改成 contain */
    /* contain 会完整显示画面（左右或上下留黑边），cover 会铺满（画面边缘会被裁） */
    object-fit: contain; 
    display: block;
}

.close-btn {
    position: absolute;
    /* 尝试改为负数，比如 -30px，数值越负，按钮越靠上 */
    top: 10px; 
    left: 10px;
    color: #fff;
    font-size: 24px;
    z-index: 99; /* 提高层级，防止被遮挡 */
    text-decoration: none;
}


.vip-mask {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, .86);
    color: #fff;
    z-index: 4;
}

.vip-mask .tip {
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 600;
}

.vip-mask .btn {
    background: var(--accent);
    color: var(--text-on-accent);
    padding: 8px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.op-bar {
    display: flex;
    justify-content: space-around;
    background: var(--surface);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    color: var(--muted-text);
    font-size: 12px;
}

.op-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: inherit;
}

.op-item i {
    font-size: 22px;
    color: var(--phone-text);
}

.main {
    padding: 12px;
}

.title {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: var(--phone-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    margin: 0 0 8px;
}

.tags {
    margin-bottom: 12px;
}

.tag {
    display: inline-block;
    background: var(--surface-2);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding: 3px 8px;
    font-size: 12px;
    color: var(--muted-text);
}

.sec-title {
    font-size: 18px;
    font-weight: 800;
    margin: 12px 0 10px;
    color: var(--phone-text);
}

.related-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.card {
    text-decoration: none;
    color: var(--phone-text);
}

.thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--thumb-placeholder) center/cover no-repeat;
    background-image: var(--thumb-url);
    border-radius: 6px;
    overflow: hidden;
}

._ribbon_1iglu_71 {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

._ribbonVip_1iglu_106 {
    background: linear-gradient(135deg, #f472b6, #ec4899);
}

._ribbonText_1iglu_82 {
    position: absolute;
    top: 6px;
    right: -14px;
    width: 62px;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    padding: 1.5px 0;
    transform: rotate(45deg);
    transform-origin: center;
    letter-spacing: .3px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}

.meta-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, .05));
}

.card-title {
    font-size: 13px;
    line-height: 1.4;
    margin: 4px 0 0;
    height: 36px;
    color: var(--phone-text);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.video-ribbon--free {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.video-ribbon--vip {
    background: linear-gradient(135deg, #facc15, #f59e0b);
}

.video-ribbon__text {
    position: absolute;
    top: 6px;
    right: -14px;
    width: 62px;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    padding: 1.5px 0;
    transform: rotate(45deg);
    transform-origin: center;
    letter-spacing: .3px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}