/* Reset some default browser styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Basic page styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.user-profile {
    float: right;
    margin-right: 20px;
}

.user-profile img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
}

.main {
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.video-container video {
    max-width: 100%;
    height: auto;
}

.video-info h1 {
    font-size: 24px;
    margin-top: 10px;
}

.video-info p {
    color: #777;
    font-size: 14px;
}

.rating {
    margin-top: 10px;
}

.rating button {
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    margin-right: 10px;
}

.description {
    margin-top: 20px;
}

.comments h2 {
    font-size: 20px;
    margin-top: 20px;
}

.comment {
    display: flex;
    margin-top: 10px;
}

.comment img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.comment-text p {
    margin: 0;
}

.comment-date {
    color: #777;
    font-size: 12px;
}

.comment-form {
    margin-top: 20px;
}

.comment-form label {
    font-weight: bold;
}

.comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.comment-form button {
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}