@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: url(./Assets/PrimaryBackground.jpg);
  position: relative;
  background-size: cover;
  background-position: center;
}

.special_btn {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  height: 46px;
  width: 230px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.special_btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: none;
  height: 80%;
  width: 95%;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}

.special_btn button box-icon {
  margin-right: 7px;
}

.special_btn:hover {
  box-shadow: 0 0 17px #0088cc;
}

.special_btn::before {
  content: "";
  height: 230px;
  width: 230px;
  position: absolute;
  background: linear-gradient(135deg, #32B0ED, #8F68BD);
  animation: animate 1s linear infinite;
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.row .brandicon {
  width: 70px;
  border-radius: 50px;
}

.title_texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.title_texts::before {
  content: "";
  width: 4px;
  height: 87%;
  background: linear-gradient(135deg, #32B0ED, #8F68BD);
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
}

.channel_name {
  background: linear-gradient(135deg, #32B0ED, #8F68BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
}

.subs_count {
  color: #b1b1b1;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.desc {
  font-size: 0.87rem;
  color: #777777;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.feature_section {
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.467);
  background: transparent;
  backdrop-filter: blur(0.1rem);
  padding: 30px;
  border-radius: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature_section .title {
  background: linear-gradient(135deg, #32B0ED, #8F68BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature_section ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.feature_section ul li {
  list-style: none;
  font-size: 1rem;
  font-weight: 400;
  color: #777777;
}

footer {
  width: 100%;
  height: 37px;
  position: fixed;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, #32B0ED, #8F68BD);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.87rem;
  font-weight: 300;
}

footer a {
  font-weight: 400;
  color: #ffffff;
}

@media only screen and (max-width: 900px) {
  body {
    padding: 0 16px;
  }

  .desc {
    width: 80%;
    text-align: center;
  }
}
