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

/* Sidebar news grid */
[class~="sidebar-news-grid"] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.faq-section h2 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 4px solid var(--primary-color);
    color: var(--text-main);
}

.faq-list {
    display: grid;
    gap: 15px;
}

.faq-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #e0e0e0;
}

.faq-item:hover {
    border-left-color: var(--primary-color);
    background: #f0f8ff;
}

.faq-question {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 15px;
}

.faq-answer {
    color: var(--text-sec);
    font-size: 14px;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* 新增推荐区块样式 */
.section {
    margin-bottom: 25px;
}

.section h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.section h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    margin-right: 10px;
    border-radius: 2px;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

@media (max-width: 768px) {
    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
