@media (max-width: 1023px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    font-family: "Noto Sans", sans-serif;
    scroll-behavior: smooth;
  }
  html {
    font-size: 45%;
  }
  html,
  body {
    width: 100%;
    height: 100%;
  }
  /* ROOT */
  :root {
    /* COLORS */
    --main-bg-color: #0f0f0f;
    --second-bg-color: #222222;
    --font-color: #e4e4e4;
    --second-font-color: #908f8f;
    --border-color: #5b5b5b;
    /* --nav-logo-color:#2020dc00; */
    /* HEIGHTS */
    --top-header-h: 75px;
    /* WIDTHS */
    --side-bar-w: 0px;
  }

  body {
    background-color: var(--main-bg-color);
    color: var(--font-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }

  /* 820 RESPONSIVE DESIGN */

  /* TOP HEADER STYLE */
  .top-header {
    width: clamp(820px, 100%, 1024px); /*  */
    height: var(--top-header-h);
  }
  .nav-bar {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  /* LEFT NAV */
  .left-nav {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 2rem;
  }
  .left-nav > .menu-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: backgroung-color, 0.15s;
    cursor: pointer;
    color: var(--font-color);
    font-weight: 500;
  }
  /* hover */
  .left-nav > .menu-icon:hover {
    background-color: var(--second-bg-color);
    transition: backgroung-color, 0.15s;
  }
  .left-nav > .nav-logo {
    background-color: var(--nav-logo-color);
    padding: 7.5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    color: var(--font-color);
  }
  /* CENTRAL NAV */
  .central-nav {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
  }
  .central-nav > form {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .central-nav > form > input {
    width: 70%;
    height: 100%;
    background-color: var(--second-bg-color);
    border: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-radius: 28px 0 0 28px;
    outline: none;
    padding-left: 15px;
    color: var(--font-color);
  }
  .central-nav > form > button {
    height: 100%;
    width: 10%;
    font-size: 100%;
    border-radius: 0 28px 28px 0;
    background-color: var(--second-bg-color);
    border: 1px solid var(--border-color);
    border-left: 0px solid var(--border-color);
    color: var(--font-color);
    cursor: pointer;
  }
  /* RIGHT NAV */
  .right-nav {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: 500;
    font-size: 2rem;
  }
  .right-nav > a {
    color: var(--font-color);
  }
  .right-nav > .dark-or-light {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: backgroung-color, 0.15s;
    color: var(--font-color);
    cursor: pointer;
  }
  .right-nav > .dark-or-light:hover {
    background-color: var(--second-bg-color);
    transition: backgroung-color, 0.15s;
  }
  .right-nav > .nav-sign-in {
    font-size: 1.8rem; /*  */
    padding: 7.5px 10px; /*  */
    background-color: var(--second-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    font-weight: 550;
    border: 1px solid var(--border-color);
    color: var(--second-font-color);
    transition: color, background-color, 0.15s;
  }
  /* hover */
  .right-nav > .nav-sign-in:hover {
    background-color: #06a8ff1c;
    color: #06a8ff77;
    transition: color, background-color, 0.15s;
  }
  /* MAIN CONTAINER */
  .main-container {
    width: clamp(820px, 100%, 1024px); /*  */
    height: calc(100svh - var(--top-header-h));
    display: flex;
  }
  /* SIDE BAR */
  .side-bar {
    width: var(--side-bar-w);
    height: calc(100svh - var(--top-header-h));
    background-color: var(--main-bg-color);
    transition: width, 0.25s;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    opacity: 0;

    position: absolute;
    z-index: 1000;
  }
  .side-bar a {
    color: var(--font-color);
    padding: 7.5px 15px;
    border-radius: 10px;
  }
  /* hover */
  .side-bar a:hover {
    background-color: var(--second-bg-color);
  }
  /* active */
  .side-bar a:active {
    background-color: var(--second-font-color);
  }
  .side-bar > ul {
    width: 80%;
    height: auto;
    display: none;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .side-bar > ul > li > a {
    display: flex;
    align-items: center;
  }
  .side-bar > ul > li > a > i {
    font-size: 2.5rem;
    font-weight: 400;
  }
  /* CONTENT SECTION */
  .content-section {
    width: 100%;
    height: calc(100svh - var(--top-header-h));
    transition: width, 0.25s;
  }
  /* TOP CONTENT CATEGORIES */
  .content-categories {
    width: 100%;
    height: var(--top-header-h);
    background-color: var(--main-bg-color);
    display: flex;
    align-items: center;
    padding: 0 2%;
    column-gap: 15px;
  }
  .content-categories > .top-contents {
    height: 50%;
    width: auto;
    padding: 0 15px;
    border-radius: 7.5px;
    background-color: var(--second-bg-color);
    color: var(--font-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 500;
    transition: background-color, 0.5s;
  }
  /* hover */
  .content-categories > .top-contents:hover {
    background-color: var(--second-font-color);
    transition: background-color, 0.25s;
  }

  /* 820 RESPONSIVE DESIGN FOR  HOME PAGE */
  /* CONTENTS OF HOME PAGE */
  .contents {
    width: 100%;
    height: calc(100svh - (2 * var(--top-header-h)));
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    overflow-y: scroll;
    gap: 15px;
    padding: 10px 20px;
  }
  /* LANDCSAPE VIDEO CARD */
  .l-cards {
    aspect-ratio: 16/13;
  }
  .l-cards .video-area {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12.5px;
    transition: border-radius, 0.25ms;
  }
  /* hover */
  .l-cards .video-area:hover {
    border-radius: 0px;
    transition: border-radius, 0.25ms;
  }
  .video-area video {
    width: 100%;
    height: 100%;
  }
  .l-cards .video-meta {
    aspect-ratio: 16/4;
    display: flex;
  }
  .l-cards .profile {
    width: 16%;
    height: 100%;
    padding: 15px 0px;
    padding-left: 2.5px;
  }
  .l-cards .profile-pic {
    width: 80%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
  }
  .l-cards .text-info {
    width: 84%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .l-cards .title {
    width: 100%;
    height: auto;
    font-family: "Roboto", "Arial", "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 525;
    padding: 0px 10px;
    margin: 10px 0px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--font-color);
  }
  .l-cards .views-and-dates {
    padding-left: 10px;
    padding-right: 15px;
    height: 30%;
    font-size: 1.2rem;
    color: var(--second-font-color);
    display: flex;
    justify-content: space-between;
    font-weight: 450;
  }
  .l-cards .channel-name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 6ch;
    color: var(--second-font-color);
  }
  .l-cards .views-and-dates > p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 10ch;
  }

  /* 820 RESPONSIVE DESIGN FOR VIDEO PLAYER PAGE */
  /* VIDEO PLAYER PAGE */
  .video-player-page {
    width: 100%;
    height: 100%;
    background-color: var(--main-bg-color);
    display: none;
    grid-template-columns: 2fr 1fr;
    padding: 10px 0;
    padding-left: 15px;
  }
  /* /////////// */
  .left-pac {
    overflow-y: scroll;
    padding-right: 10px;
  }
  /* /////////// */
  /* VIDEO PLAYER STYLE START */
  .video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    margin-inline: auto;
    background-color: black;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
  }

  .video-container.theater,
  .video-container.full-screen {
    max-width: initial;
    width: 100%;
  }

  .video-container.theater {
    max-height: 90vh;
  }

  .video-container.full-screen {
    max-height: 100vh;
  }

  video {
    width: 100%;
    background-color: var(--second-bg-color);
  }

  .video-controls-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    z-index: 100;
    opacity: 0;
    transition: opacity 150ms ease-in-out;
  }

  .video-controls-container::before {
    content: "";
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    width: 100%;
    aspect-ratio: 6 / 1;
    z-index: -1;
    pointer-events: none;
  }

  .video-container:hover .video-controls-container,
  .video-container:focus-within .video-controls-container,
  .video-container.paused .video-controls-container {
    opacity: 1;
  }

  .video-controls-container .controls {
    display: flex;
    gap: 0.5rem;
    padding: 0.25rem;
    align-items: center;
  }

  .video-controls-container .controls button {
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    height: 30px;
    width: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 150ms ease-in-out;
  }

  .video-controls-container .controls button:hover {
    opacity: 1;
  }

  .video-container.paused .pause-icon {
    display: none;
  }

  .video-container:not(.paused) .play-icon {
    display: none;
  }

  .video-container.theater .tall {
    display: none;
  }

  .video-container:not(.theater) .wide {
    display: none;
  }

  .video-container.full-screen .open {
    display: none;
  }

  .video-container:not(.full-screen) .close {
    display: none;
  }

  .volume-high-icon,
  .volume-low-icon,
  .volume-muted-icon {
    display: none;
  }

  .video-container[data-volume-level="high"] .volume-high-icon {
    display: block;
  }

  .video-container[data-volume-level="low"] .volume-low-icon {
    display: block;
  }

  .video-container[data-volume-level="muted"] .volume-muted-icon {
    display: block;
  }

  .volume-container {
    display: flex;
    align-items: center;
  }

  .volume-slider {
    width: 0;
    transform-origin: left;
    transform: scaleX(0);
    transition: width 150ms ease-in-out, transform 150ms ease-in-out;
  }

  .volume-container:hover .volume-slider,
  .volume-slider:focus-within {
    width: 100px;
    transform: scaleX(1);
  }

  .duration-container {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-grow: 1;
  }

  .video-container.captions .captions-btn {
    border-bottom: 3px solid red;
  }

  .video-controls-container .controls button.wide-btn {
    width: 50px;
  }

  .timeline-container {
    height: 7px;
    margin-inline: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
  }

  .timeline {
    background-color: rgba(100, 100, 100, 0.5);
    height: 3px;
    width: 100%;
    position: relative;
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: calc(100% - var(--preview-position) * 100%);
    background-color: rgb(150, 150, 150);
    display: none;
  }

  .timeline::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: calc(100% - var(--progress-position) * 100%);
    background-color: #007508;
  }

  .timeline .thumb-indicator {
    --scale: 0;
    position: absolute;
    transform: translateX(-50%) scale(var(--scale));
    height: 200%;
    top: -50%;
    left: calc(var(--progress-position) * 100%);
    background-color: #007508;
    border-radius: 50%;
    transition: transform 150ms ease-in-out;
    aspect-ratio: 1 / 1;
  }

  .timeline .preview-img {
    position: absolute;
    height: 80px;
    aspect-ratio: 16 / 9;
    top: -1rem;
    transform: translate(-50%, -100%);
    left: calc(var(--preview-position) * 100%);
    border-radius: 0.25rem;
    border: 2px solid white;
    display: none;
  }

  .thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
  }

  .video-container.scrubbing .thumbnail-img {
    display: block;
  }

  .video-container.scrubbing .preview-img,
  .timeline-container:hover .preview-img {
    display: block;
  }

  .video-container.scrubbing .timeline::before,
  .timeline-container:hover .timeline::before {
    display: block;
  }

  .video-container.scrubbing .thumb-indicator,
  .timeline-container:hover .thumb-indicator {
    --scale: 1;
  }

  .video-container.scrubbing .timeline,
  .timeline-container:hover .timeline {
    height: 100%;
  }
  /* VIDEO PLAYER STYLE END */

  /* ////////////////////// comments ///////////// */
  .thing-container {
    height: auto;
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: start;
    margin-inline: auto;
    background-color: var(--main-bg-color);
    border-radius: 10px;
    overflow: hidden;
    flex-direction: column;
    border: 0px;
  }
  .thing-container .playing-video-title {
    width: 100%;
    height: 54px;
    height: 4ch;
    height: auto;
    background-color: var(--main-bg-color);
    font-size: 2rem;
    font-weight: 525;
    font-family: "Roboto", "Arial", "Poppins", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--font-color);
    padding: 0 15px;
    overflow: hidden;
  }
  /* playing-video-info */
  .thing-container .playing-video-info {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 1.2rem;
  }
  .playing-video-info .left-playing-video-info {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 15px;
    font-size: 1.2rem;
    column-gap: 10px;
  }
  .playing-video-info .left-playing-video-info .profile {
    border-radius: 50%;
    overflow: hidden;
    width: 45px;
    height: 45px;
  }
  .playing-video-info .left-playing-video-info .profile-pic {
    width: 100%;
    height: 100%;
  }
  .playing-video-info .left-playing-video-info .c-name-and-follow {
    width: auto;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 5px;
    padding: 0 5px;
    color: var(--second-font-color);
  }
  .playing-video-info
    .left-playing-video-info
    .c-name-and-follow
    .channel-name {
    font-size: 1.5rem;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 15ch;
    color: var(--font-color);
  }
  .playing-video-info .left-playing-video-info .follow-btn {
    position: relative;
    width: 100px;
    height: 50px;
    padding: 0 25px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    border: 0;
  }
  .playing-video-info .left-playing-video-info .follow-btn::after {
    content: "Follow";
    width: 95%;
    border-radius: inherit;
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    background-color: var(--second-bg-color);
    color: var(--font-color);
  }
  .playing-video-info .left-playing-video-info .follow-btn::before {
    content: "";
    background: linear-gradient(45deg, #00ff77, #00e5ff, #ff00e6, #ff006a);
    color: var(--font-color);
    width: 110%;
    border-radius: 50%;
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 0 0;
    height: 245%;
    animation-name: follow-btn-animation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  /* animation for follow button */
  @keyframes follow-btn-animation {
    0% {
      transform: rotate(0deg) translate(-50%, -50%);
    }
    25% {
      transform: rotate(720deg) translate(-50%, -50%);
    }
    50% {
      transform: rotate(360deg) translate(-50%, -50%);
    }
    100% {
      transform: rotate(0deg) translate(-50%, -50%);
    }
  }
  /* right-playing-video-info */
  .playing-video-info .right-playing-video-info {
    width: 35%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 15px;
    font-size: 1.2rem;
    column-gap: 10px;
    overflow: hidden;
  }
  .playing-video-info .right-playing-video-info .like-dislike {
    height: 100%;
    width: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 500;
  }
  .right-playing-video-info .like-dislike .like {
    color: var(--font-color);
    background-color: var(--second-bg-color);
    padding: 8px 20px;
    border-right: 1px solid var(--border-color);
    border-radius: 20px 0px 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .right-playing-video-info .like-dislike .like i {
    font-size: 2rem;
    font-weight: normal;
  }
  .right-playing-video-info .like-dislike .dislike {
    color: var(--font-color);
    background-color: var(--second-bg-color);
    padding: 8px 20px;
    border: 0;
    border-radius: 0px 20px 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .right-playing-video-info .like-dislike .dislike i {
    font-size: 2rem;
    font-weight: normal;
  }
  /* video share button */
  .right-playing-video-info .video-share-btn {
    height: 100%;
    width: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 1.35rem;
  }
  .right-playing-video-info .video-share-btn .share {
    color: var(--font-color);
    background-color: var(--second-bg-color);
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    display: none;          /*  */
  }
  .right-playing-video-info .video-share-btn .share i {
    font-size: 2rem;
    font-weight: normal;
  }
  /* video download button */
  .right-playing-video-info .video-download-btn {
    height: 100%;
    width: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 1.35rem;
  }
  .right-playing-video-info .video-download-btn .download {
    color: var(--font-color);
    background-color: var(--second-bg-color);
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    display: none;          /*  */
  }
  .right-playing-video-info .video-download-btn .download i {
    font-size: 2rem;
    font-weight: normal;
  }
  /* //////////////////////// video-description /////////////////////// */
  .thing-container .playing-video-description {
    height: clamp(2.5rem 5rem auto);
    width: 100%;
    background-color: var(--comment-sec-bg-color);
    font-size: 1.3rem;
    padding: 15px 10px;
    border-radius: 15px;
    margin-top: 15px;
  }
  .playing-video-description .des-viwes-and-date {
    font-weight: 600;
  }
  /* //////////////////////// suggested-videos /////////////////////// */

  .suggested-videos {
    grid-area: 1/2/2/3;
    overflow-y: scroll;
    padding: 0 5px;
  }

  /* 820 RESPONSIVE DESIGN FOR FOLLOWING PAGE */
  /* following page style */
  .following-page {
    width: 100%;
    height: 100%;
    display: none;
    grid-template-columns: 1.5fr 3.5fr;
    padding-left: 15px;
  }
  /* following channels style */
  .following-page .following-channels {
    width: 100%;
    height: 100%;
    background-color: var(--second-bg-color);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 25px 10px;
    row-gap: 7.5px;
    overflow-y: scroll;
    border-radius: 7.5px;
  }
  .following-channels .following-channel-profile-card {
    width: 100%;
    height: 60px;
    background-color: var(--main-bg-color);
    border-radius: 10px;
    padding: 0 2.5px;
    padding-left: 10px;
  }
  .following-channels .following-channel-profile-card a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--font-color);
    font-size: 1.5rem;
    font-weight: 600;
  }
  /* hover */
  .following-channels .following-channel-profile-card:active {
    background-color: var(--comment-sec-bg-color);
  }
  .following-channel-profile-card .following-channel-profile-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
  }
  /* followig channel contents style  */
  .following-page .following-channel-contents {
    width: 100%;
    height: 100;
    background-color: var(--main-bg-color);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 15px 10px;
    column-gap: 10px;
    row-gap: 10px;
    overflow-y: scroll;
    /* grid-template-rows: 2fr; */
  }
  .following-page .following-channel-bannar-profile {
    width: 100%;
    grid-area: 1/1/3/2;
    height: clamp(400px, 500px, 600px);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }
  .following-channel-bannar-profile .following-page-banner {
    width: clamp(1280px, 100%, 100%);
    height: 50%;
    border-radius: 10px;
  }
  .following-channel-bannar-profile .following-page-main-profile-area {
    width: clamp(1280px, 100%, 100%);
    height: 50%;
    position: relative;
  }
  .following-page-main-profile-area .following-page-main-profile-pic {
    width: 177.5px;
    height: 177.5px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -67.5%);
  }
  .following-page-main-profile-area .following-page-main-profile-pic::before {
    content: "";
    /* background-color: red; */
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-clip: text;
    border: 5px solid rgb(255, 0, 149);
    /* display: none; */
  }
  .following-page-main-profile-area .following-page-main-channel-name {
    width: 50%;
    height: auto;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translate(-50%, 0%);
    color: var(--font-color);
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    font-weight: 650;
    /* background-color: #908f8f; */
  }
  .following-page-main-profile-area .following-page-main-channel-name span {
    font-size: 1.75rem;
    color: var(--second-font-color);
  }

  /* following-page-main-btns */
  .following-page-main-btns {
    display: flex;
    column-gap: 50px;
    margin-top: 10px;
  }
  /* following-page-main-follow-btn */
  .following-page-main-follow-btn {
    position: relative;
    width: 100px;
    height: 50px;
    padding: 0 25px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    border: 0;
  }
  .following-page-main-follow-btn::after {
    content: "Follow";
    width: 95%;
    border-radius: inherit;
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    background-color: var(--second-bg-color);
    color: var(--font-color);
  }
  .following-page-main-follow-btn::before {
    content: "";
    background: linear-gradient(45deg, #00ff77, #00e5ff, #ff00e6, #ff006a);
    color: var(--font-color);
    width: 110%;
    border-radius: 50%;
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 0 0;
    height: 245%;
    animation-name: follow-btn-animation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  /* following-page-main-share-btn */
  .following-page-main-share-btn {
    position: relative;
    width: 100px;
    height: 50px;
    padding: 0 25px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    border: 0;
  }
  .following-page-main-share-btn::after {
    content: "Share";
    width: 95%;
    border-radius: inherit;
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    background-color: var(--second-bg-color);
    color: var(--font-color);
  }
  .following-page-main-share-btn::before {
    content: "";
    /* background: linear-gradient(45deg, #00ff77, #00e5ff, #ff00e6, #ff006a); */
    background-color: var(--font-color);
    color: var(--font-color);
    width: 110%;
    border-radius: 50%;
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 0 0;
    height: 245%;
    /* animation-name: share-btn-animation; */
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: reverse;
  }
  /* animation for follow button */
  @keyframes share-btn-animation {
    0% {
      transform: rotate(0deg) translate(-50%, -50%);
    }
    25% {
      transform: rotate(720deg) translate(-50%, -50%);
    }
    50% {
      transform: rotate(360deg) translate(-50%, -50%);
    }
    100% {
      transform: rotate(0deg) translate(-50%, -50%);
    }
  }

  /* 820 DESIGN FOR YOUR CHANNEL PAGE */
  /* your-channel page style */
  .your-channel-page {
    width: 100%;
    height: 100%;
    display: none;
    padding-left: 15px;
  }

  /* your channel contents style  */
  .your-channel-page .your-channel-contents {
    width: 100%;
    height: 100%;
    background-color: var(--main-bg-color);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 15px 10px;
    column-gap: 10px;
    row-gap: 10px;
    overflow-y: scroll;
  }
  .your-channel-page .your-channel-bannar-profile {
    width: 100%;
    grid-area: 1/1/3/3;
    height: clamp(400px, 500px, 600px);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }
  .your-channel-bannar-profile .your-channel-page-banner {
    width: clamp(1280px, 100%, 100%);
    height: 50%;
    border-radius: 10px;
  }

  .your-channel-bannar-profile .your-channel-page-main-profile-area {
    width: clamp(1280px, 100%, 100%);
    height: 50%;
    position: relative;
  }
  .your-channel-page-main-profile-area .your-channel-page-main-profile-pic {
    width: 177.5px;
    height: 177.5px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -67.5%);
  }
  .your-channel-page-main-profile-area
    .your-channel-page-main-profile-pic::before {
    content: "";
    background-color: red;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-clip: text;
    border: 5px solid rgb(255, 0, 149);
    /* display: none; */
  }
  .your-channel-page-main-profile-area .your-channel-page-main-channel-name {
    width: 50%;
    height: auto;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translate(-50%, 0%);
    color: var(--font-color);
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    font-weight: 650;
    /* background-color: #908f8f; */
  }
  .your-channel-page-main-profile-area
    .your-channel-page-main-channel-name
    span {
    font-size: 1.75rem;
    color: var(--second-font-color);
  }

  /* your-channel-page-main-btns */
  .your-channel-page-main-btns {
    display: flex;
    column-gap: 50px;
    margin-top: 10px;
  }
  /* your-channel-page-main-follow-btn */
  .your-channel-page-main-follow-btn {
    position: relative;
    width: 100px;
    height: 50px;
    padding: 0 25px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    border: 0;
  }
  .your-channel-page-main-follow-btn::after {
    content: "Create";
    width: 95%;
    border-radius: inherit;
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    background-color: var(--second-bg-color);
    color: var(--font-color);
  }
  .your-channel-page-main-follow-btn::before {
    content: "";
    background: linear-gradient(45deg, #00ff77, #00e5ff, #ff00e6, #ff006a);
    color: var(--font-color);
    width: 110%;
    border-radius: 50%;
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 0 0;
    height: 245%;
    animation-name: follow-btn-animation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  /* your-channel-page-main-share-btn */
  .your-channel-page-main-share-btn {
    position: relative;
    width: 100px;
    height: 50px;
    padding: 0 25px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    border: 0;
  }
  .your-channel-page-main-share-btn::after {
    content: "Share";
    width: 95%;
    border-radius: inherit;
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    background-color: var(--second-bg-color);
    color: var(--font-color);
  }
  .your-channel-page-main-share-btn::before {
    content: "";
    /* background: linear-gradient(45deg, #00ff77, #00e5ff, #ff00e6, #ff006a); */
    background-color: var(--font-color);
    color: var(--font-color);
    width: 110%;
    border-radius: 50%;
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 0 0;
    height: 245%;
    /* animation-name: share-btn-animation; */
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: reverse;
  }
  /* animation for follow button */
  @keyframes share-btn-animation {
    0% {
      transform: rotate(0deg) translate(-50%, -50%);
    }
    25% {
      transform: rotate(720deg) translate(-50%, -50%);
    }
    50% {
      transform: rotate(360deg) translate(-50%, -50%);
    }
    100% {
      transform: rotate(0deg) translate(-50%, -50%);
    }
  }

  /* 820 DESIGN FOR HISTORY PAGE */
  .watch-history-page {
    width: 100%;
    height: 100%;
    background-color: var(--main-bg-color);
    color: var(--font-color);
    padding: 10px 15px;
    display: none;
  }
  .watch-history-page > h2 {
    font-size: 3rem;
    margin-left: 30px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    padding-right: 90px;
  }
  .watch-history-page > h2 > span {
    font-size: 1.4rem;
    align-self: center;
    cursor: pointer;
    color: var(--second-font-color);
    font-weight: 550;
  }
  .watch-history-page > h2 > span > i {
    font-size: 1.5rem;
  }
  .videos-and-watch-dates {
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    overflow-y: scroll;
  }
  .videos-and-watch-dates > .watched-date {
    font-size: 2rem;
    font-weight: 750;
    margin-left: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .videos-and-watch-dates .watched-videos {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }
}
