.comments-section {
    margin-top: 30px;
    font-family: "Segoe UI", sans-serif;
}

.section-title {
    font-size: 22px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

.comment-form {
    margin-bottom: 20px;
}

.comment-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
}

.comment-submit {
    margin-top: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
}

.comment-submit:hover {
    background-color: #0056b3;
}

.comment-error {
    color: red;
    margin-bottom: 10px;
}

.login-reminder {
    color: #777;
    margin-bottom: 15px;
}

.comment-divider {
    margin: 25px 0;
    border: none;
    border-top: 1px solid #ccc;
}

.comment-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.comment-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
}

.comment-body {
    flex: 1;
}

.comment-header {
    margin-bottom: 8px;
}

.comment-user {
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-right: 10px;
}

.comment-date {
    font-size: 12px;
    color: #888;
}

.comment-text {
    font-size: 14px;
    color: #222;
    line-height: 1.5;
    white-space: pre-wrap;
}

.no-comments {
    color: #555;
    font-style: italic;
}

.watch-page {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    font-family: "Segoe UI", sans-serif;
}

.watch-page {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    font-family: "Segoe UI", sans-serif;
}

.video-main {
    flex: 2;
    min-width: 640px;
}

.comments-section {
    flex: 1;
    min-width: 320px;
}

.video-player video {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.video-title {
    font-size: 24px;
    margin: 15px 0 10px;
}

.meta {
    font-size: 14px;
    color: #555;
}

@media (max-width: 900px) {
    .watch-layout {
        flex-direction: column;
    }

    .comments-section {
        margin-top: 30px;
    }
}