@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent !important;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  cursor: pointer;
}

img {
  max-width: 100%;
}

span, label {
  display: inline-block;
}

html {
  scroll-behavior: smooth;
}

input, textarea {
  outline: none;
  border: 0;
  background: transparent;
  font-weight: 400;
}

button, select {
  border: none;
  cursor: pointer;
  background: transparent;
  outline: 0;
  font-weight: 400;
}

address {
  font-style: normal;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  min-height: 100svh;
}

ul, ol, dl {
  list-style: none;
  padding: 0;
  margin: 0;
}

p, h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
  font-weight: 400;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

body {
  background: white;
  color: black;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

button, input, textarea, li, div {
  font-weight: 400;
  line-height: 150%;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1152px;
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .container {
    width: calc(100% - 32px);
  }
}

.accordion {
  border: 1px solid rgba(228, 228, 231, 0.5);
  border-radius: 12px;
}
.accordion-btn {
  padding: 22px 25px;
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  color: #22222a;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}
.accordion-btn span {
  margin: -5px 0;
  display: inline-block;
}
.accordion-btn svg {
  flex-shrink: 0;
  transition: 0.2s ease-in-out all;
}
.accordion-btn.active svg {
  transform: rotateZ(180deg);
}
.accordion-body {
  padding: 0 22px 25px;
}
.accordion-body__wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}
.accordion-body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #71717a;
}

.sec-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  text-align: center;
  color: #22222a;
}
@media screen and (max-width: 992px) {
  .sec-title {
    font-size: 36px;
    line-height: 111%;
  }
}
.sec-title span {
  display: inline;
  background: linear-gradient(175deg, #c44dff 0%, #f69 50%, #f83 100%);
  color: #FFF;
}

.form-search {
  border: 1px solid rgba(228, 228, 231, 0.5);
  border-radius: 16px;
  max-width: 672px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px;
}
@media screen and (max-width: 992px) {
  .form-search {
    flex-direction: column;
  }
}
.form-search__inp {
  width: 100%;
  height: 56px;
  padding: 0 12px;
  font-weight: 400;
  font-size: 14px;
  color: #71717A;
}
@media screen and (max-width: 992px) {
  .form-search__inp {
    height: 38px;
    font-size: 18px;
  }
}
.form-search__inp::placeholder {
  color: rgba(113, 113, 122, 0.6);
}
@media screen and (max-width: 992px) {
  .form-search .btn-grd {
    width: 100%;
  }
}

.btn-grd {
  box-shadow: 0 4px 6px -2px rgba(113, 113, 122, 0.05), 0 10px 15px -3px rgba(113, 113, 122, 0.1);
  background: linear-gradient(162deg, #c44dff 0%, #f69 50%, #f83 100%);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 27px 0 32px;
  border-radius: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #fff;
  transition: 0.2s ease-in-out all;
}
.btn-grd:hover {
  transform: scale(1.05);
}
.btn-grd.disabled {
  opacity: 0.5 !important;
  pointer-events: none !important;
  cursor: not-allowed;
  transform: none !important;
}
.btn-outline {
  border-radius: 8px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-size: 12px;
  color: #22222a;
  font-weight: 500;
  line-height: 1;
  border: 1px solid #f4f4f5;
  gap: 8px;
  cursor: pointer;
  transition: 0.2s ease-in-out all;
}
.btn-outline svg path {
  transition: 0.2s ease-in-out all;
}
.btn-outline:hover {
  color: #9900e6;
  background: #f7e5ff;
}
.btn-outline:hover svg path {
  stroke: #9900e6;
}
.btn-light {
  padding: 0 16px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #22222a;
  transition: 0.2s ease-in-out all;
  border-radius: 10px;
}
.btn-light svg path {
  transition: 0.2s ease-in-out all;
}
.btn-light:hover {
  color: #9900e6;
  background: #f7e5ff;
}
.btn-light:hover svg path {
  stroke: #9900e6;
}

.lang {
  position: absolute;
  top: 16px;
  right: 16px;
}
.lang.active .lang-list {
  display: block;
}
.lang-btn input {
  display: none !important;
}
.lang-list {
  padding: 4px;
  max-height: 384px;
  width: 175px;
  overflow-y: scroll;
  background: #FFF;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border: 1px solid hsl(240, 6%, 90%);
  border-radius: 10px;
  position: absolute;
  bottom: -4px;
  right: 0;
  transform: translateY(100%);
  display: none;
  z-index: 9999;
}
.lang-list::-webkit-scrollbar {
  display: none;
}
.lang-list h3 {
  padding: 6px 8px;
  font-size: 14px;
  font-weight: 600;
  color: #71717A;
}
.lang-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  font-size: 14px;
  line-height: 20px;
  transition: 0.2s ease-in-out all;
  cursor: pointer;
  user-select: none;
  border-radius: 8px;
}
.lang-list li:hover {
  color: #9900e6;
  background: #f7e5ff;
}

.header {
  border-bottom: 1px solid rgba(228, 228, 231, 0.2);
}
.header-container {
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .header-container {
    padding: 32px 0 36px;
  }
}
.header-title {
  font-size: 60px;
  line-height: 100%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .header-title {
    font-size: 36px;
    line-height: 111%;
  }
}
.header p {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #71717a;
}

.home-container {
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 896px;
}
@media screen and (max-width: 992px) {
  .home-container {
    padding: 70px 0 64px;
    min-height: inherit;
  }
}
.home-title {
  font-size: 72px;
}
@media screen and (max-width: 992px) {
  .home-title {
    font-size: 48px;
    line-height: 125%;
  }
}
.home-description {
  font-weight: 400;
  font-size: 24px;
  line-height: 133%;
  text-align: center;
  color: #71717a;
  margin: 20px auto 36px;
  max-width: 782px;
}
@media screen and (max-width: 992px) {
  .home-description {
    font-size: 20px;
    line-height: 140%;
  }
}
.home-lists {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home-lists {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .home-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
  box-shadow: 0 2px 4px -1px rgba(113, 113, 122, 0.06), 0 4px 6px -1px rgba(113, 113, 122, 0.1);
  background: linear-gradient(133deg, #f7e6ff 0%, #fff5ff 100%);
  padding: 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #22222a;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.home-list:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px hsla(240, 4%, 46%, 0.1), 0 4px 6px -2px hsla(240, 4%, 46%, 0.05);
}
.home-bottom {
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.user-data {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(228, 228, 231, 0.5);
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.user-data__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .user-data__head {
    flex-direction: column;
    gap: 16px;
  }
}
.user-data__info {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .user-data__info {
    width: 100%;
  }
}
.user-data__info h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #22222a;
}
.user-data__info h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #71717a;
}
.user-data__img {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  overflow: hidden;
}
.user-data__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-data__btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 600px) {
  .user-data__btn {
    flex-direction: column;
    width: 100%;
  }
}
.user-data__btn a, .user-data__btn button {
  height: 40px;
  padding: 0 12px 0 16px;
}
@media screen and (max-width: 600px) {
  .user-data__btn a, .user-data__btn button {
    width: 100%;
  }
}
.user-data__stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
}
.user-data__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #71717a;
}
.user-data__stats li b {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #22222a;
}
.user-data__bio {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #71717a;
}

.tab-head {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f4f4f5;
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  margin: 16px 0;
}
.tab-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #71717a;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.tab-btn.active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  color: #22222a;
}
.tab-body__item:not(.active) {
  display: none !important;
}
.tab-body__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tab-body__head .btn-grd {
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
}
@media screen and (max-width: 576px) {
  .tab-body__head {
    gap: 8px;
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .tab-body__head a, .tab-body__head button {
    width: 100%;
  }
}
.tab-body__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.tab-body__bottom a, .tab-body__bottom button {
  height: 36px;
  padding: 8px 24px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.tab-body .posts-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0 16px;
}
@media screen and (max-width: 992px) {
  .tab-body .posts-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .tab-body .posts-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tab-body .posts-card {
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  overflow: hidden;
  aspect-ratio: auto;
}
.tab-body .posts-card__head {
  position: relative;
  z-index: 1;
  height: 210px;
}
@media screen and (max-width: 576px) {
  .tab-body .posts-card__head {
    height: 174px;
  }
}
.tab-body .posts-card__head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.tab-body .posts-card__head input {
  background: #fff;
  border: 1px solid #767676;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  position: absolute;
  z-index: 3;
  left: 8px;
  top: 8px;
}
.tab-body .posts-card__head .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tab-body .posts-card__head .icon {
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 4px;
  width: 26px;
  height: 18px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-body .posts-card__head .carousel-indicator {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}
.tab-body .posts-card__head .btn-grd {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 36px;
  padding: 0 8px 0 12px;
  display: none;
}
.tab-body .posts-card__head .btn-grd:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.tab-body .posts-card__head .play-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
}
.tab-body .posts-card__body {
  padding: 12px;
}
.tab-body .posts-card__body-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
@media screen and (max-width: 576px) {
  .tab-body .posts-card__body-top {
    flex-wrap: wrap;
  }
}
.tab-body .posts-card__body-top ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
}
.tab-body .posts-card__body-top li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 143%;
  text-align: center;
  color: #71717a;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-body .posts-card__body-top svg {
  flex-shrink: 0;
}
.tab-body .posts-card__body h3 {
  margin: 8px 0 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #22222a;
}
.tab-body .posts-card__body p {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: #71717a;
}
.tab-body .posts-card__type {
  font-weight: 400;
  font-size: 11px;
  line-height: 133%;
  text-transform: capitalize;
  text-align: center;
  color: #22222a;
  border-radius: 4px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  background: #f4f4f5;
  flex-shrink: 0;
  white-space: nowrap;
}
.tab-body .posts-card:hover .posts-card__head::after {
  display: block;
}
.tab-body .posts-card:hover .posts-card__head .btn-grd {
  display: inline-flex;
}
.tab-body .stories-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 16px 0 32px;
}
@media screen and (max-width: 900px) {
  .tab-body .stories-cards {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .tab-body .stories-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .tab-body .stories-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .tab-body .stories-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tab-body .stories-cards .posts-card__head {
  height: auto !important;
  aspect-ratio: 1/1;
}
.tab-body .stories-cards .posts-card__body {
  padding: 10px 8px 8px;
}
.tab-body .stories-cards .posts-card__body-top li {
  font-size: 12px;
  line-height: 133%;
}
.tab-body .stories-cards .posts-card__body-top svg {
  width: 12px;
  flex-shrink: 0;
}
.tab-body .stories-cards .posts-card__body h3 {
  font-size: 14px;
}
.tab-body .stories-cards .posts-card__body p {
  font-size: 12px;
  line-height: 133%;
}
.tab-body .stories-cards .btn-grd {
  padding: 0 12px;
}

.choose {
  padding: 40px 0 80px;
}
.choose-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #71717a;
  margin: 24px 0 64px;
}
.choose-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 4px -1px rgba(113, 113, 122, 0.06), 0 4px 6px -1px rgba(113, 113, 122, 0.1);
  background: #fff;
  border: 1px solid rgba(228, 228, 231, 0.5);
  border-radius: 16px;
  padding: 33px 23px 38px;
  transition: 0.2s ease-in-out all;
}
@media screen and (max-width: 576px) {
  .choose-card {
    padding: 33px 26px 38px;
  }
}
.choose-card:hover {
  transform: scale(1.05);
}
.choose-card__wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media screen and (max-width: 992px) {
  .choose-card__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .choose-card__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.choose-card img {
  max-width: inherit;
  display: inline;
}
.choose-card h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #22222a;
  margin: 16px 0 21px;
}

.faq {
  padding: 81px 0 64px;
  border-top: 1px solid rgba(228, 228, 231, 0.2);
}
@media screen and (max-width: 992px) {
  .faq {
    padding: 84px 0 64px;
  }
}
.faq-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 111%;
  text-align: center;
  color: #22222a;
  margin-bottom: 48px;
}
@media screen and (max-width: 992px) {
  .faq-title {
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 51px;
  }
}
.faq-accordion {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media screen and (max-width: 992px) {
  .faq-accordion {
    gap: 16px;
  }
}

.disclaimer-box {
  padding: 48px 0;
}
.disclaimer-box .container {
  max-width: 896px;
}
.disclaimer-box .disclaimer-content {
  background: #fff;
  border: 1px solid rgba(228, 228, 231, 0.5);
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 24px 32px;
}
.disclaimer-box .disclaimer-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #71717a;
  margin-bottom: 4px;
}
.disclaimer-box .disclaimer-content .disclaimer-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #A855F7;
  transition: 0.2s ease-in-out all;
}
.disclaimer-box .disclaimer-content .disclaimer-link:hover {
  color: #9333EA;
}

.footer-container {
  max-width: 896px;
  margin: 0 auto;
  border-top: 1px solid rgba(228, 228, 231, 0.2);
  padding: 33px 0 80px;
}
.footer-content {
  max-width: 672px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(1, 1fr);
    padding-left: 82px;
  }
}
@media screen and (max-width: 430px) {
  .footer-content {
    padding-left: 0;
  }
}
.footer-content h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #22222a;
  margin-bottom: 16px;
}
@media screen and (max-width: 430px) {
  .footer-content h3 {
    text-align: center;
  }
}
.footer-content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 430px) {
  .footer-content ul {
    align-items: center;
    text-align: center;
  }
}
.footer-content a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #71717a;
  transition: 0.2s ease-in-out all;
}
.footer-content a:hover {
  color: #A855F7;
}
.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(228, 228, 231, 0.2);
  padding-top: 25px;
}
.footer-bottom h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #71717a;
}
.footer-bottom p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #71717a;
}

.network {
  padding: 64px 0;
}
.network-container {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.network .network-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(228, 228, 231, 0.5);
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 33px;
}
.network .network-form h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  text-align: center;
  color: #22222a;
  margin: 16px 0 8px;
}
@media screen and (max-width: 768px) {
  .network .network-form h2 {
    margin: 20px 0 12px;
  }
}
.network .network-form p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #71717a;
  margin-bottom: 24px;
}
.network .network-form .form-search {
  max-width: 100%;
}

.video-result {
  border: 1px solid rgba(228, 228, 231, 0.5);
  border-radius: 12px;
  padding: 25px 25px 28px;
}
@media screen and (max-width: 768px) {
  .video-result {
    padding: 20px;
  }
}
.video-result__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #22222a;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .video-result__title {
    font-size: 18px;
    gap: 12px;
    justify-content: center;
  }
}
.video-result__title svg {
  flex-shrink: 0;
}
.video-result__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .video-result__content {
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    gap: 16px;
  }
}
.video-result__content .video-block {
  width: 160px;
  height: 112px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .video-result__content .video-block {
    width: 100%;
    max-width: 280px;
    height: 180px;
    border-radius: 16px;
  }
}
.video-result__content .video-block__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-result__content .video-block button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.2s ease-in-out all;
}
@media screen and (max-width: 768px) {
  .video-result__content .video-block button {
    width: 48px;
    height: 48px;
  }
  .video-result__content .video-block button img {
    width: 20px;
    height: 20px;
  }
}
.video-result__content .video-block button:hover {
  transform: translate(-50%, -50%) scale(1.5);
}
.video-result__content-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .video-result__content-text {
    align-items: center;
    text-align: center;
    width: 100%;
  }
}
.video-result__content h3 {
  padding-right: 173px;
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  color: #22222a;
}
@media screen and (max-width: 768px) {
  .video-result__content h3 {
    padding: 0;
    font-size: 16px;
    line-height: 140%;
  }
}
.video-result__content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #71717a;
  max-width: 384px;
}
@media screen and (max-width: 768px) {
  .video-result__content p {
    font-size: 13px;
    max-width: 100%;
  }
}
.video-result__content ul {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .video-result__content ul {
    justify-content: center;
    gap: 8px 16px;
  }
}
.video-result__content li {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .video-result__content li {
    font-size: 13px;
  }
}
.video-result__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .video-result__buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 12px;
  }
}
.video-result__buttons .btn-grd {
  position: static;
  height: 40px;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .video-result__buttons .btn-grd {
    width: 100%;
    height: 48px;
    justify-content: center;
  }
}
.video-result__buttons .btn-outline {
  height: 40px;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .video-result__buttons .btn-outline {
    width: 100%;
    height: 44px;
    justify-content: center;
  }
}

.info {
  padding-bottom: 64px;
}
.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto 64px;
}
@media screen and (max-width: 768px) {
  .info-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.info-list__item h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  color: #22222a;
  margin-bottom: 24px;
}
.info-list__item ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.info-list__item li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-list__item li.items-start {
  align-items: flex-start;
  gap: 16px;
}
.info-list__item svg {
  flex-shrink: 0;
}
.info-list__item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #71717a;
}
.info-list__item .number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #fff;
  flex-shrink: 0;
}
.info-list__item .number.bg-green {
  background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
}
.info-list__item .number.bg-orange {
  background: linear-gradient(135deg, #f97316 0%, #eab308 100%);
}
.info-list__item .number.bg-pink {
  background: linear-gradient(135deg, #ef4444 0%, #ec4899 100%);
}
.info-list__item h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #22222a;
}
.info-list__item h5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #71717a;
}
.info-faq {
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(228, 228, 231, 0.5);
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 33px;
}
@media screen and (max-width: 768px) {
  .info-faq {
    padding: 37px 33px;
  }
}
.info-faq__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #22222a;
  margin-bottom: 24px;
}
.info-faq ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.info-faq li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .info-faq li {
    gap: 12px;
  }
}
.info-faq h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #22222a;
}
.info-faq p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #71717a;
}

.carousel-result {
  border: 1px solid rgba(228, 228, 231, 0.5);
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 25px;
}
.carousel-result__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #22222a;
  margin-bottom: 19px;
}
.carousel-result__title svg {
  flex-shrink: 0;
}
.carousel-result__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #71717a;
  margin-bottom: 19px;
}
.carousel-result__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: 0.2s ease-in-out all;
  border-radius: 12px;
  background: transparent;
}
.carousel-result__card:hover {
  transform: scale(1.1);
  background: #e4e4e7;
}
.carousel-result__card-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .carousel-result__card-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .carousel-result__card-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .carousel-result__card-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.carousel-result__card-img {
  border-radius: 12px;
  width: 100%;
  height: 96px;
  overflow: hidden;
  position: relative;
}
.carousel-result__card-img .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-result__card-img .icon {
  position: absolute;
  top: 8px;
  right: 8px;
}
.carousel-result__card-img button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: 0.2s ease-in-out all;
}
.carousel-result__card-img button:hover {
  transform: translate(-50%, -50%) scale(1.5);
}
.carousel-result__card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.carousel-result__card-text p {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  text-align: center;
  color: #71717a;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.carousel-result .line {
  background: #e4e4e7;
  height: 1px;
  width: 100%;
  flex-shrink: 0;
  margin: 16px 0;
}
.carousel-result__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 410px) {
  .carousel-result__bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.carousel-result__bottom h4 {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #22222a;
  margin-bottom: 3px;
}
.carousel-result__bottom p {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #71717a;
}
.carousel-result__bottom .btn-grd {
  height: 40px;
  padding: 0 12px 0 16px;
  font-size: 14px;
}
@media screen and (max-width: 410px) {
  .carousel-result__bottom .btn-grd {
    width: 100%;
  }
}
.carousel-result__card .card-img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: #f4f4f5;
}
.carousel-result__card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-result__card .card-img .icon {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-result__card .card-img .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out all;
  border: none;
  cursor: pointer;
}
.carousel-result__card .card-img .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 0, 0, 0.7);
}
.carousel-result__card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}
.carousel-result__card .card-body .item-number {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #71717a;
}
.carousel-result__card .card-body .btn-grd {
  width: 100%;
  height: 32px;
  font-size: 12px;
  padding: 0 12px;
  gap: 6px;
}
.carousel-result__card .card-body .btn-grd svg {
  width: 14px;
  height: 14px;
}
.carousel-result__buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media screen and (max-width: 410px) {
  .carousel-result__buttons {
    width: 100%;
    flex-direction: column;
  }
  .carousel-result__buttons .btn-grd,
  .carousel-result__buttons .btn-outline {
    width: 100%;
  }
}

.reels-result {
  border: 1px solid rgba(228, 228, 231, 0.5);
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 25px;
}
@media screen and (max-width: 768px) {
  .reels-result {
    padding: 20px;
  }
}
.reels-result__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #22222a;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .reels-result__title {
    font-size: 18px;
    gap: 12px;
    justify-content: center;
  }
}
.reels-result__title svg {
  flex-shrink: 0;
}
.reels-result__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .reels-result__content {
    padding-bottom: 0;
    flex-direction: column;
    align-items: center;
  }
}
.reels-result__video {
  width: 144px;
  height: 192px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8px;
}
@media screen and (max-width: 768px) {
  .reels-result__video {
    width: 200px;
    height: 267px;
    border-radius: 16px;
  }
}
.reels-result__video .main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.reels-result__video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 9999px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out all;
}
@media screen and (max-width: 768px) {
  .reels-result__video .play-btn {
    width: 48px;
    height: 48px;
  }
  .reels-result__video .play-btn img {
    width: 20px;
    height: 20px;
  }
}
.reels-result__video .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.5);
}
.reels-result__video p {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  padding: 6px 6px 6px 8px;
}
@media screen and (max-width: 768px) {
  .reels-result__video p {
    font-size: 14px;
    padding: 8px 10px;
  }
}
.reels-result__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .reels-result__text {
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 10px;
  }
}
.reels-result__text h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  color: #22222a;
  padding-right: 174px;
  margin-bottom: -8px;
}
@media screen and (max-width: 768px) {
  .reels-result__text h3 {
    padding-right: 0;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 0;
  }
}
.reels-result__text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #71717a;
  max-width: 385px;
}
@media screen and (max-width: 768px) {
  .reels-result__text p {
    font-size: 13px;
    max-width: 100%;
  }
}
.reels-result__text ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .reels-result__text ul {
    justify-content: center;
    gap: 8px 16px;
  }
}
.reels-result__text ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .reels-result__text ul li {
    gap: 6px;
    font-size: 13px;
  }
}
.reels-result__text .hash-link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .reels-result__text .hash-link {
    justify-content: center;
  }
}
.reels-result__text .hash-link a {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #3b82f6;
}
.reels-result__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .reels-result__buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 12px;
  }
}
.reels-result__buttons .btn-grd {
  position: static;
  height: 40px;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .reels-result__buttons .btn-grd {
    width: 100%;
    height: 48px;
    justify-content: center;
  }
}
.reels-result__buttons .btn-outline {
  height: 40px;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .reels-result__buttons .btn-outline {
    width: 100%;
    height: 44px;
    justify-content: center;
  }
}

.stories-alert {
  border: 1px solid #fed7aa;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: linear-gradient(90deg, #fff7ed 0%, #fefce8 100%);
  max-width: 1120px;
  width: calc(100% - 100px);
  margin: 0 auto 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
}
@media screen and (max-width: 992px) {
  .stories-alert {
    width: calc(100% - 32px);
  }
}
.stories-alert svg {
  flex-shrink: 0;
  margin-top: 4px;
}
.stories-alert h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #9a3412;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .stories-alert h3 {
    margin-bottom: 11px;
  }
}
.stories-alert p {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #c2410c;
}

.stories-result {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  border: 1px solid rgba(228, 228, 231, 0.5);
  border-radius: 12px;
  padding: 25px;
}
.stories-result__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #22222a;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.stories-result__title svg {
  flex-shrink: 0;
}
.stories-result__avatar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.stories-result__avatar .avatar-img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  overflow: hidden;
}
.stories-result__avatar .avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stories-result__avatar .avatar-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
}
.stories-result__avatar .avatar-info h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #22222a;
}
.stories-result__avatar .avatar-info p {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #71717a;
}
.stories-result__card-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .stories-result__card-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stories-result__card:hover .stories-result__card-head,
.stories-result__card:hover .card-img {
  transform: scale(1.02);
}
.stories-result__card {
  cursor: pointer;
}
.stories-result__card .card-img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: 0.2s ease-in-out all;
}
.stories-result__card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stories-result__card .card-img .icon {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stories-result__card .card-img .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out all;
  border: none;
  cursor: pointer;
}
.stories-result__card .card-img .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 0, 0, 0.7);
}
.stories-result__card .card-body {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stories-result__card .card-body .date {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #71717a;
  text-align: center;
}
.stories-result__card .card-body .btn-grd {
  width: 100%;
  height: 36px;
  font-size: 13px;
  justify-content: center;
}
.stories-result__card-head {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: 0.2s ease-in-out all;
}
.stories-result__card-head .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stories-result__card-head .icon {
  position: absolute;
  top: 8px;
  right: 8px;
}
.stories-result__card-head .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out all;
}
.stories-result__card-head .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.5);
}
.stories-result__card-body {
  padding-top: 10px;
  position: relative;
}
.stories-result__card-body h4 {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 6px 8px;
  border-radius: 4px;
}
.stories-result__card-body p {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #71717a;
}
.stories-result .line {
  background: #e4e4e7;
  width: 100%;
  height: 1px;
  margin: 16px 0;
}
.stories-result__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .stories-result__bottom {
    flex-direction: column-reverse;
    width: 100%;
  }
  .stories-result__bottom .btn-grd,
  .stories-result__bottom .btn-outline {
    width: 100%;
    height: 48px;
    justify-content: center;
    margin: 0 !important;
  }
}
.stories-result__bottom .btn-grd {
  height: 40px;
  padding: 0 8px 0 16px;
}

.rules {
  padding: 64px 0;
}
.rules-container {
  max-width: 864px;
}
.rules-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.rules-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color: #22222a;
}
@media screen and (max-width: 768px) {
  .rules-title {
    font-size: 36px;
    line-height: 111%;
  }
}
.rules-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #71717a;
}
.rules-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.rules-list__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.rules-list__item h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #22222a;
}
.rules-list__item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #71717a;
  margin: -5px 0;
}
.rules-list__item ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: disc;
  padding-left: 24px;
}
.rules-list__item li {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #71717a;
}

.contact {
  padding: 64px 0;
}
.contact-container {
  max-width: 1120px;
}
.contact-head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color: #22222a;
}
@media screen and (max-width: 800px) {
  .contact-title {
    font-size: 36px;
    line-height: 111%;
  }
}
.contact-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #71717a;
}
.contact-content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
@media screen and (max-width: 800px) {
  .contact-content {
    flex-direction: column;
  }
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 352px;
  flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .contact-list {
    width: 100%;
  }
}
.contact-list__item {
  padding: 24px;
  transition: 0.2s ease-in-out all;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(228, 228, 231, 0.5);
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-list__item:hover {
  box-shadow: 0 10px 15px -3px hsla(240, 4%, 46%, 0.1), 0 4px 6px -2px hsla(240, 4%, 46%, 0.05);
}
.contact-list__item .icon {
  flex-shrink: 0;
  width: 48px;
}
.contact-list__item h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #22222a;
}
.contact-list__item p, .contact-list__item a {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  color: #71717a;
}
.contact-form {
  border: 1px solid rgba(228, 228, 231, 0.5);
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  width: 100%;
  padding: 33px;
}
.contact-form h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #22222a;
  margin-bottom: 24px;
}
.contact-form__group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 992px) {
  .contact-form__group {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-form__group .form-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__group .form-control:nth-child(3), .contact-form__group .form-control:nth-child(4), .contact-form__group .form-control:nth-child(5) {
  grid-column: span 2;
}
@media screen and (max-width: 992px) {
  .contact-form__group .form-control:nth-child(3), .contact-form__group .form-control:nth-child(4), .contact-form__group .form-control:nth-child(5) {
    grid-column: span 1;
  }
}
.contact-form__group label {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #22222a;
}
.contact-form__group input, .contact-form__group textarea {
  border: 1px solid #f4f4f5;
  border-radius: 10px;
  width: 100%;
  height: 48px;
  padding: 0 13px;
  font-weight: 400;
  font-size: 14px;
  color: #22222a;
}
.contact-form__group input:hover, .contact-form__group input:focus, .contact-form__group textarea:hover, .contact-form__group textarea:focus {
  outline: 2px solid #c44dff;
}
.contact-form__group input::placeholder, .contact-form__group textarea::placeholder {
  color: #71717a;
}
.contact-form__group textarea {
  height: 138px;
  resize: none;
  padding: 9px 13px;
}
.contact-form__group .btn-grd {
  grid-column: span 2;
  height: 48px;
}
@media screen and (max-width: 992px) {
  .contact-form__group .btn-grd {
    grid-column: span 1;
  }
}
.contact-form__group .error-message {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
}
.contact-form__group .required {
  color: #dc2626;
}
.contact-form .alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 150%;
}
.contact-form .alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}
.contact-form .alert-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.contact-form .alert-error ul {
  margin: 0;
  padding-left: 20px;
}

.posts-cards .posts-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.posts-cards .posts-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.posts-cards .posts-card:hover > img {
  transform: scale(1.05);
}
.posts-cards .posts-card .media-type-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 2;
}
.posts-cards .posts-card .carousel-indicator {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}
.posts-cards .posts-card__hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.posts-cards .posts-card__hover .left .container-checkbox {
  display: block;
}
.posts-cards .posts-card__hover .left .container-checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.posts-cards .posts-card__hover .right .download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #22222a;
  transition: all 0.2s ease;
}
.posts-cards .posts-card__hover .right .download-btn:hover {
  background: white;
  transform: scale(1.1);
}
.posts-cards .posts-card:hover .posts-card__hover {
  opacity: 1;
}
.posts-cards .posts-card__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  gap: 12px;
  color: white;
  font-size: 12px;
  z-index: 2;
}
.posts-cards .story-card {
  aspect-ratio: 9/16;
}
.posts-cards .reel-card {
  aspect-ratio: 9/16;
}
.posts-cards .highlight-card {
  aspect-ratio: 1/1;
}
.posts-cards .highlight-card .highlight-title {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.posts-cards .highlight-card .highlight-count {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  z-index: 2;
}
.posts-cards .highlight-card > img {
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(45deg, #f69, #c44dff, #f83);
}

.no-content,
.no-posts {
  text-align: center;
  padding: 60px 20px;
  color: #71717a;
  font-size: 16px;
  grid-column: 1/-1;
}

.tab-loading-placeholder,
.tab-click-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  grid-column: 1/-1;
  min-height: 200px;
}
.tab-loading-placeholder p,
.tab-click-placeholder p {
  font-size: 14px;
  color: #6b7280;
  margin: 12px 0 0;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #f56565;
  border-radius: 50%;
  animation: spinner-rotate 0.8s linear infinite;
}

@keyframes spinner-rotate {
  to {
    transform: rotate(360deg);
  }
}
.tab-btn.loading {
  position: relative;
  color: transparent;
}
.tab-btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #e5e7eb;
  border-top-color: #f56565;
  border-radius: 50%;
  animation: spinner-rotate 0.8s linear infinite;
}

.private-account-notice {
  text-align: center;
  padding: 60px 20px;
  color: #71717a;
  font-size: 18px;
  grid-column: 1/-1;
  background: #f5f5f5;
  border-radius: 12px;
}

.verified-badge {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

/* Direct media card styles (for single post/reel/story display) */
.direct-media-container {
  display: flex;
  justify-content: center;
  padding: 0;
  margin-top: 24px;
}

/* Direct media card - enlarged version of post card style */
.direct-media-card {
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  aspect-ratio: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.direct-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.direct-media-card .posts-card__head {
  position: relative;
  z-index: 1;
  height: 400px;
}

.direct-media-card .posts-card__head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.direct-media-card:hover .posts-card__head::after {
  display: block;
}

.direct-media-card .posts-card__head .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.direct-media-card .posts-card__head .icon {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 6px;
  width: 32px;
  height: 24px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.direct-media-card .posts-card__head .btn-grd {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 44px;
  padding: 0 16px;
  display: none;
}

.direct-media-card:hover .posts-card__head .btn-grd {
  display: inline-flex;
}

.direct-media-card .posts-card__head .btn-grd:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.direct-media-card .posts-card__head .play-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.direct-media-card .posts-card__body {
  padding: 16px 20px;
}

.direct-media-card .posts-card__body-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.direct-media-card .posts-card__body-top ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  min-width: 0;
}

.direct-media-card .posts-card__body-top li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #71717a;
  white-space: nowrap;
}

.direct-media-card .posts-card__body-top svg {
  flex-shrink: 0;
}

.direct-media-card .posts-card__body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #71717a;
  margin-top: 12px;
}

.direct-media-card .posts-card__type {
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  text-transform: capitalize;
  color: #22222a;
  border-radius: 6px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  background: #f4f4f5;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Responsive adjustments for direct media card */
@media (max-width: 540px) {
  .direct-media-card {
    max-width: 100%;
    border-radius: 12px;
  }

  .direct-media-card .posts-card__head {
    height: 320px;
  }

  .direct-media-card .posts-card__body {
    padding: 14px 16px;
  }

  .direct-media-card .posts-card__body-top {
    flex-wrap: wrap;
  }

  .direct-media-card .posts-card__body-top ul {
    gap: 12px;
  }

  .direct-media-card .posts-card__body-top li {
    font-size: 13px;
  }
}

/* Legacy direct-media-card styles - keeping for backwards compatibility */
.direct-media-card .posts-card__hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.direct-media-card:hover .posts-card__hover {
  opacity: 1;
}

/* Story type direct media card */
.direct-media-card[data-type="story"] .posts-card__head {
  height: 500px;
}

/* Reel type direct media card */
.direct-media-card[data-type="reel"] .posts-card__head,
.direct-media-card[data-type="tv"] .posts-card__head {
  height: 500px;
}

/* Video type direct media card */
.direct-media-card[data-type="video"] .posts-card__head {
  height: 350px;
}

/* Small loading spinner for buttons */
.loading-spinner-small {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spinner-rotate 0.8s linear infinite;
}

/* Direct media view - disable grid layout and reduce margins */
.posts-cards.direct-media-view {
  display: block !important;
  margin: 0 !important;
}

.tab-body .posts-cards.direct-media-view {
  margin: 0 !important;
}

.posts-cards.direct-media-view .direct-media-container {
  padding: 0 !important;
}

/* Hide bottom margin on home-bottom when showing direct media */
.home-bottom.direct-media-mode {
  gap: 16px;
}

.home-bottom.direct-media-mode .tab-body__item {
  padding: 0;
}

/* Remove min-height on home-container when showing direct media */
.home-container:has(.direct-media-mode) {
  min-height: auto;
}

/* Fallback for browsers that don't support :has() - add class via JS */
.home-container.direct-media-active {
  min-height: auto;
}

/* Override for tab-body posts to show caption/body section */
.tab-body .posts-cards .posts-card {
  aspect-ratio: auto;
  background: #fff;
}

/* Home page: hide selection checkboxes and "select all" buttons */
.page-home .tab-body__head #selectAllBtn,
.page-home .tab-body__head .select-all-btn,
.page-home .tab-body__head .highlight-select-all-btn {
  display: none !important;
}

.page-home .posts-cards input[type="checkbox"],
.page-home .highlight-story-card input[type="checkbox"] {
  display: none !important;
}

/* Carousel/Album items header and grid styling */
.carousel-items-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.carousel-items-header h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #1f2937;
}

.carousel-items-header .carousel-items-count {
  font-size: 14px;
  color: #6b7280;
}

.carousel-items-header .carousel-items-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .carousel-items-header .carousel-items-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Carousel item card styling (same as posts-card) */
.carousel-item-card {
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  overflow: hidden;
  aspect-ratio: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-item-card:hover .posts-card__head::after {
  display: block;
}

.carousel-item-card:hover .posts-card__head .btn-grd {
  display: inline-flex;
}

/* Hide selection controls (checkboxes, select all, download selected, clear buttons) */
.posts-card__head input[type="checkbox"],
.highlight-story-card input[type="checkbox"],
.carousel-item-card input[type="checkbox"],
.reel-card input[type="checkbox"],
.story-card input[type="checkbox"],
input[name="post-select"],
input[name="story-select"],
input[name="reel-select"],
input[name="highlight-story-select"] {
  display: none !important;
}

.tab-body__head,
.highlight-stories-actions,
.carousel-items-actions,
#selectAllBtn,
.select-all-btn,
.highlight-select-all-btn,
.carousel-select-all-btn,
.download-selected-btn,
.highlight-download-selected-btn,
.carousel-download-selected-btn,
.clear-selected-btn,
#downloadSelectedBtn,
#highlightDownloadAllBtn,
#carouselDownloadAllBtn {
  display: none !important;
}

