.voj-vip-box,
.voj-vip-profile,
.voj-vip-status {
    box-sizing: border-box;
}

.voj-vip-profile {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
}

.voj-vip-profile-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.voj-vip-profile-head img {
    border-radius: 50%;
}

.voj-vip-profile-head h2 {
    margin: 0 0 8px;
}

.voj-vip-badge,
.voj-vip-comment-badge {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 999px;
    background: #f3b233;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.voj-vip-badge.is-normal {
    background: #555;
    color: #fff;
}

.voj-vip-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.voj-vip-box,
.voj-vip-status {
    padding: 14px;
    border-radius: 12px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.08);
}

.voj-vip-section-title {
    margin: 20px 0 12px;
}

.voj-vip-watchlist-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.voj-vip-watch-card {
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0,0,0,.2);
    border: 1px solid rgba(255,255,255,.08);
}

.voj-vip-watch-thumb {
    display: block;
    aspect-ratio: 2 / 3;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}

.voj-vip-watch-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voj-vip-no-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

.voj-vip-watch-card h3 {
    margin: 10px;
    font-size: 14px;
    line-height: 1.35;
}

.voj-vip-watch-card h3 a {
    color: inherit;
    text-decoration: none;
}

.voj-watchlist-toggle,
.voj-watchlist-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 0;
    border-radius: 8px;
    background: #222;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
}

.voj-watchlist-toggle.is-saved {
    background: #a71d2a;
}

.voj-vip-watch-card .voj-watchlist-toggle {
    width: calc(100% - 20px);
    margin: 0 10px 10px;
}

.voj-vip-empty {
    padding: 18px;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    text-align: center;
}

@media (max-width: 1024px) {
    .voj-vip-watchlist-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .voj-vip-profile-grid {
        grid-template-columns: 1fr;
    }
    .voj-vip-watchlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
