.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.shorts-player-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.shorts-player {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
}

.shorts-details {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.shorts-title {
    font-size: 1.5rem;
    margin: 0 0 10px;
    color: #333;
}

.shorts-stats {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.shorts-stats .views::after {
    content: " • ";
    margin: 0 5px;
}

.shorts-description {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.main-content {
    margin-bottom: 30px;
}

.video-player {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px;
}

.video-title {
    font-size: 1.8rem;
    margin: 0 0 10px;
    color: #333;
}

.video-stats {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.video-stats .views::after {
    content: " • ";
    margin: 0 5px;
}

.video-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.related-videos h2 {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #333;
}

.related-video-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.related-video {
    display: flex;
    text-decoration: none;
    color: inherit;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.related-video:hover {
    transform: translateY(-3px);
}

.related-video img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.related-video-details {
    padding: 10px;
}

.related-video-details h3 {
    font-size: 0.9rem;
    margin: 0 0 5px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-video-channel,
.related-video-views {
    font-size: 0.8rem;
    color: #666;
}

.tags {
    margin-bottom: 10px;
}

.tag-link {
    display: inline-block;
    font-size: 0.85rem;
    color: #007bff;
    margin-right: 5px;
    text-decoration: none;
}

.tag-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .shorts-player-container {
        flex-direction: column;
    }
    .shorts-player {
        max-width: 100%;
    }
    .video-player iframe {
        height: 300px;
    }
    .video-title {
        font-size: 1.5rem;
    }
    .related-video-list {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}
