/* Play page custom styles - Apple (extracted from inline styles) */

/* Movie detail two-column grid (poster + info) */
[class~="movie-detail-grid"] {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: var(--space-xl);
}

@media (max-width: 640px) {
    [class~="movie-detail-grid"] {
        grid-template-columns: 1fr;
    }
}

/* Template copyright style - attribute selector for class prefix compatibility */
[class~="vt-template-copyright"] {
    margin-top: 36px;
    padding: 18px 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 13px;
    line-height: 1.9;
    color: #8b949e;
    text-align: center;
}

/* ===== Play Page Disclaimer Section ===== */
.play-disclaimer-section {
    background: rgba(255, 69, 58, 0.1);
    border: 1px solid rgba(255, 69, 58, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
}

.play-disclaimer-title {
    color: var(--color-rating-low);
    margin-bottom: var(--space-sm);
}

.play-disclaimer-text {
    color: var(--color-text-secondary);
    font-size: var(--font-size-small);
}

/* ===== Play Page Content Paragraphs ===== */
.play-content-paragraph {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.play-content-paragraph:last-child {
    margin-bottom: 0;
}

/* ===== Section Header Inline ===== */
.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

/* ===== Hot Keywords Flex Container ===== */
.hot-keywords-flex {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* ===== Virtual Hot Links ===== */
.virtual-hot-link {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 6px;
    color: #007aff;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.virtual-hot-link:hover {
    background: rgba(0, 122, 255, 0.2);
    border-color: #007aff;
    transform: translateY(-1px);
}

.virtual-hot-link:active {
    transform: translateY(0);
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .virtual-hot-link {
        background: rgba(0, 122, 255, 0.15);
        border-color: rgba(0, 122, 255, 0.4);
    }

    .virtual-hot-link:hover {
        background: rgba(0, 122, 255, 0.25);
    }
}

