
    .yt-lt {
      background-color: #0f0f0f;
      color: #fff;
      font-family: Arial, sans-serif;
      min-height: 100vh;

    }

    .yt-lt .container {
      max-width: 1640px;
    }

    @media (max-width: 1140px) {
      .yt-lt {
        min-height: 90vh;
      }
    }

    .video-section {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      padding: 20px 0px 60px 0px;
    }

.video-thumbnail {
  width: 100%;
  /* max-width: 720px; */
  background: #000;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

    .chat-box {
      width: 100%;
      max-width: 370px;
      background-color: #0f0f0f;
      border: 1px solid #383838;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      height: 650px;
      font-family: 'Roboto', sans-serif;
    }

    .chat-message {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.username {
  display: block;
  font-weight: bold;
  margin-bottom: 2px;
}

.message-text {
  display: block;
}
    .chat-header {
      padding: 12px 16px;
      border-bottom: 1px solid #383838;
      font-weight: 500;
      font-size: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #f1f1f1;
    }
    .chat-header svg path {
      fill: #f1f1f1;
    }
    .title-group {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .icons {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .icons svg {
      cursor: pointer;
    }

    .chat-messages {
      flex-grow: 1;
      overflow-y: auto;
      padding: 16px;
      font-size: 14px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .chat-messages::-webkit-scrollbar {
      width: 8px;
    }
    .chat-messages::-webkit-scrollbar-thumb {
      background: #555;
      border-radius: 4px;
    }

    .chat-message {
      display: flex;
      align-items: flex-start;
      line-height: 1.4;
    }
    .chat-message img {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      margin-top: 2px;
    }
    .username {
      font-weight: 500;
      margin-right: 8px;
      font-size: 13px;
    }
    .username-gray { color: #aaaaaa; }
    .username-blue { color: #5c8fdb; }
    .message-text { color: #f1f1f1; }

    .chat-input {
      border-top: 1px solid #383838;
      padding: 12px 16px;
    }
    .chat-input-wrapper {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .chat-input-wrapper img {
      width: 24px;
      height: 24px;
      border-radius: 50%;
    }
    .input-container {
      flex-grow: 1;
      background-color: #282828;
      border-radius: 18px;
      padding: 8px 12px;
    }
    #chat-input {
      width: 100%;
      background: transparent;
      border: none;
      color: white;
      outline: none;
      font-size: 14px;
    }
    .chat-input button {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }
    .chat-input button svg path {
      fill: #aaaaaa;
    }

    .badge-member {
      background-color: #3ea6ff;
      font-size: 10px;
      padding: 2px 6px;
      border-radius: 4px;
      color: #000;
    }

    /* --- VIDEO INFO --- */
    /* .video-info-container {
      max-width: 1080px;
      margin: 0 auto 40px;
      padding: 0 16px;
    } */
    .video-title {
      font-size: 20px;
      font-weight: bold;
      color: #fff;
    }
    .channel-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-top: 12px;
    }
    .channel-info {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .channel-info img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
    }

    .channel-subscription{
      display: flex;
      flex-direction: column;
    }

    .fw-bold { font-weight: bold; }
    .text-muted { color: #aaa !important; }

    .btn-subscribe {
      background-color: red;
      color: white;
      font-weight: bold;
      border-radius: 20px;
      padding: 6px 16px;
      margin-left: 1rem;
      border: none;
      font-size: 14px;
      transition: background-color .3s;
    }
    .btn-subscribe:hover {
      background-color: #cc0000;
    }

    .video-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;
    }
    .btn-action {
      background-color: #222;
      color: #fff;
      border: none;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 14px;
      transition: background-color .2s;
    }
    .btn-action:hover {
      background-color: #333;
    }
    .btn-like, .btn-dislike {
      gap: 4px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 6px 8px;
      border-radius: 4px;
      transition: background-color .2s;
    }
    .btn-like:hover {
      background-color: rgba(255,255,255,0.1);
    }
    .icon-like {
      width: 20px;
      height: 20px;
      fill: #aaa;
    }
    .btn-like:hover .icon-like {
      fill: #fff;
    }
    .like-count {
      color: #aaa;
      font-size: 14px;
      font-weight: 500;
    }

    .video-wrapper {
			display: flex;
			flex-direction: column;
			gap: 40px;
			flex: 1;
		}

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {

        .yt-lt{
            min-height: auto;
        }

      .video-section { 
        flex-direction: column; align-items: center; 
        padding-top: 0px;
        gap: 30px;
        padding-bottom: 20px;
        
      }

      .video-wrapper {
        gap: 20px;
      }

      .video-thumbnail { 
        max-width: 100%; 
        height: 100%;
      }
      .chat-box { 
        max-width: 100%; 
      }

     /*  .video-info-container { 
        padding: 0 12px; 
      } */
      
      
      .video-title{ 
        font-size: 18px; margin-bottom: 10px; 
      }
      
      
      .channel-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      
    .channel-subscription{
      flex-direction: row;
      gap: 0.5rem;
    }
      .like-count{
        display: none ;
      }

      .video-actions {
        justify-content: center;
        width: 100%;
      }
      .btn-action,
      .btn-like,
      .btn-dislike {
        flex: 1 1 auto;
        text-align: center;
        font-size: 13px;
      }
      .btn-like, 
      .btn-dislike {
        padding: 0px;
      }

      
      .icon-like {
        width: 18px;
        height: 18px;
      }
      .like-count {
        font-size: 13px;
      }
    }
