/* VOD Plugin Supplemental Styles */

/* Checkout Page */
.vod-checkout-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
}

.vod-checkout-page h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.checkout-video-info {
    display: flex;
    gap: 20px;
    align-items: center;
    background-color: var(--bg-secondary, #1e293b);
    border: 1px solid var(--border-color, #334155);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.checkout-video-info img {
    width: 120px;
    height: 68px;
    object-fit: cover;
    border-radius: 4px;
}

.checkout-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-amber, #f59e0b);
}

.vod-notice {
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 16px;
    color: var(--text-secondary, #94a3b8);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* No thumbnail placeholder */
.no-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}

.no-thumbnail::after {
    content: '▶';
    font-size: 2rem;
    color: #334155;
}
