* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.video-container {
    max-width: 960px;
    margin: 20px auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.video-player {
    position: relative;
    padding-top: 1%; /* 16:9 视频比例 */
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #18191c;
}

.video-meta {
    font-size: 14px;
    color: #61666d;
    margin-bottom: 20px;
}

.video-meta span {
    margin-right: 15px;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-quote, .btn-share {
    padding: 10px 24px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-quote {
    background-color: #ffd700;
    color: #333;
}

.btn-quote:hover {
    background-color: #ffc107;
}

.btn-share {
    background-color: #007bff;
    color: white;
}

.btn-share:hover {
    background-color: #0056b3;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .video-title {
        font-size: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-quote, .btn-share {
        width: 100%;
    }
}
