* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fdf4e3;
  color: #212529;
  line-height: 1.5;
  text-align: center;
  font-family: sans-serif;
}

.page-container {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
}

header {
  border: 1.5px solid #000;
  background-color: #FCC02E;
  padding: 4px 0;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  margin: 8px auto 0 auto;
  margin-bottom: 25px;
}

header h1 {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

main {
  width: 100%;
}

.headline {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 25px;
}

.headline strong {
  font-weight: 700;
}

.video-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.channels-section {
  margin-top: 30px;
}

.channels-section img {
  max-width: 90%;
  height: auto;
}

.comments-section {
  text-align: left;
  font-family: 'Roboto', sans-serif;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 26px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comments-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.comment {
  display: flex;
  margin-bottom: 15px;
}

.profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  object-fit: cover;
}

.comment-content {
  flex-grow: 1;
}

.comment-content p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 5px;
}

.user-name {
  font-weight: 700;
  color: #050505;

}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.8rem;
  color: #606770;
  font-weight: bold;
}

.comment-actions span:first-child,
.comment-actions span:nth-child(2) {
  cursor: pointer;
}

.comment-actions .likes {
  display: flex;
  align-items: center;
  gap: 5px;
}

.like-icon {
  width: 16px;
  height: 16px;
}

.comment.reply {
  margin-top: 12px;
}

.comment.reply .profile-pic {
  width: 40px;
  height: 40px;
}

footer {
  background-color: #f0f2f5;
  padding: 30px 20px;
  margin-top: 40px;
  color: #65676b;
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-links a {
  color: #65676b;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy {
  margin-top: 15px;
  font-weight: bold;
}

@media (max-width: 768px) {
  footer {
    margin-top: 0;
  }
}