/* 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(5, 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/6;
  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%);
  }
}
