/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 110vh;
}

/* Container for Video */
.video-container {
    text-align: center;
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    max-width: 800px;
    width: 90%;
    border: 4px solid yellow;
    border-radius: 12px;
}

/* Video Player */
.video-container video {
    width: 100%;
    height: auto;
    border" 2px solid red
    border-radius: 12px;
}

/* Video Title - Centered Below Video with Breathing Space */
.video-title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px; /* Breathing space */
    margin-bottom: 10px;
    text-align: center;
}

/* Video Description */
.video-description {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 20px;
    text-align: center;
}

/* Comments Section */
.comments-container {
    margin-top: 30px;
    text-align: left;
    background: #232323;
    padding: 15px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
}

.comments-container h3 {
    text-align: center;
    margin-bottom: 10px;
}

/* Comment Input */
.comment-box {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: white;
    margin-bottom: 10px;
}

/* Comment Button */
.comment-button {
    width: 100%;
    padding: 10px;
    background: #ff5722;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.comment-button:hover {
    background: #e64a19;
}
