body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: rgba(49, 52, 55, 1);
  max-width: 100%;
  background-color: #e2f9fe;
  height: 100vh;
  overflow-y: auto;
}

body::-webkit-scrollbar {
  display: none;
}

.btn,
.btn-download,
a {
  -webkit-tap-highlight-color: transparent; /* Для iOS/Safari */
  -webkit-tap-highlight-color: transparent; /* Для других браузеров */
  outline: none; /* Убирает контур при фокусе */
  user-select: none; /* Предотвращает выделение текста */
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  width: 1280px;
  margin: 0 auto;
}

.header {
  width: 100vw;
  height: 240px;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.header-bg {
  width: 100vw;
  height: 240px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-icon {
  padding-left: 40px;
  display: flex;
  align-items: center;
  z-index: 5;
}

.icon {
  width: 64px;
  height: 64px;
}

.logo {
  width: 125px;
  height: 48px;
}

.header-btn {
  padding-right: 40px;
  z-index: 5;
}

.btn {
  width: auto;
  height: 60px;
  padding: 0 30px;

  background-color: #2e86de;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 35px;

  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #1a73e8;
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-text {
  position: fixed;
  gap: 22px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  transition: top 0.9s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.content-text-visible {
  top: -20%;
}

.content-text h5 {
  text-align: center;
  margin: 0;
  font-size: 32px;
  font-weight: 500;
}

.content-text p {
  text-align: center;
  margin: 0;
  font-size: 22px;
  font-weight: 400;
}

.box-girls {
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  z-index: auto;
  position: absolute;
  bottom: 0;
}

.girl1 {
  display: flex;
  height: 95%;
  width: 28%;
}

.girl2 {
  display: flex;
  height: 95%;
  width: 35%;
}

.box-girls-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  width: 40%;
}

.downloads {
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  height: 206px;
  width: 480px;
  margin-top: 120px;
  background-image: url("assets/downloads.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 4;
  transition: top 0.9s ease;
}

.download-visible {
  top: -18%;
}

.btn-download {
  position: fixed;
  top: 75%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  font-size: 32px;
  margin-top: 40px;
  background: linear-gradient(
    90deg,
    hsl(332, 92%, 49%) 0%,
    hsl(247, 88%, 48%) 25%,
    hsl(332, 92%, 49%) 50%,
    hsl(247, 88%, 48%) 75%,
    hsl(332, 92%, 49%) 100%
  );
  background-size: 400% auto;
  animation: gradientFlow 15s linear infinite;
  z-index: 4;
  transition: background-position 0.5s ease;
  transition: top 0.9s ease;
}

.btn-visible {
  top: 20%;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 400% center;
  }
}

.btn-download:hover {
  box-shadow: 0 0 20px 0 rgba(239, 10, 118, 0.5);
}

.btn-download:active {
  transform: translateY(2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 470px;
  background: linear-gradient(
    to top,
    hsla(0, 0%, 0%, 1) 0%,
    hsla(0, 0%, 0%, 0.6) 30%,
    hsla(0, 0%, 0%, 0) 90%
  );
  z-index: 3;
}

.footer-text {
  position: fixed;
  transition: top 0.9s ease;
  color: white;
  z-index: 3;
  top: 97%;
  text-align: center;
  padding: 0 1px;
}

.footer-text-visible {
  top: 35%;
}

.comments-wrapper {
  margin: 0 auto;
  padding: 0;
  position: fixed;
  top: 100%;
  z-index: 4;
  transition: top 0.9s ease;
  display: flex;
  align-self: center;
  left: 50%;
  transform: translateX(-50%);
}

.visible {
  top: 30%;
}

.block {
  height: 5px;
  background-color: black;
}

.comments {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 60px 0;
}

.comment-title {
  font-size: 26px;
  font-weight: 600;
  color: white;
}

.comment-block {
  display: flex;
  flex-direction: column;
  width: 703px;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 16px;
  background-color: white;
}

.block-avatar {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.avatar-title {
  display: flex;
  flex-direction: column;
}

.block-text {
  line-height: 1.6;
}

/******************************************   ********************************************/

/* GENERAL STYLES */

@media (max-width: 1280px) {
  .container,
  .comments-wrapper {
    width: auto;
  }
}

@media (max-width: 1025px) {
  .header {
    height: 168px;
  }

  .header-bg {
    height: 168px;
  }

  .icon {
    width: 55px;
    height: 55px;
  }

  .btn {
    font-size: 18px;
  }

  .content-text {
    top: 10%;
    gap: 15px;
  }

  .content-text-visible {
    top: -10%;
  }

  .downloads {
    position: absolute;
    bottom: 20%;
    height: 330px;
  }

  .btn-download {
    position: absolute;
    bottom: 12%;
    font-size: 36px;
    height: 72px;
    left: 50%;
    transform: translateX(-50%);
  }

  .btn-download:active {
    left: 50%;
    transform: translateX(-51%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .girl1 {
    position: absolute;
    left: 0;
    height: 75vh;
    width: auto;
    z-index: 2;
  }

  .girl2 {
    position: absolute;
    height: 75vh;
    right: 0;
    width: auto;
  }

  .visible {
    top: 50%;
  }

  .footer-text {
    top: 98%;
  }

  .footer-text-visible {
    top: 50%;
  }

  .comment-block {
    width: 650px;
    font-size: 14px;
  }
}

@media (max-width: 1366px) and (orientation: landscape) {
  .footer-text-visible{
    top: 32%;
  }
}

@media (max-width: 1112px) and (orientation: landscape) {
  .btn-visible {
    top: 18%;
  }
}

@media (max-width: 1024px) and (orientation: landscape) {

  .content-text{
    top: 16%;
  }

  .content-text-visible {
    top: -30%;
  }

  .downloads {
    top: 8%;
  }

  .download-visible {
    top: -75%;
  }

  .btn-download {
    top: 70%;
  }

  .btn-visible {
    top: -10%;
  }

  .footer-text {
    top: 96%;
  }


  .footer-text-visible {
    top: 30%;
  }

  .visible{
    top: 30%;
  }
}

@media (max-width: 932px) and (orientation: landscape) {
  .header {
    height: 80px;
  }

  .header-bg {
    height: 80px;
  }

  .icon {
    height: 25px;
    width: 25px;
  }

  .logo {
    height: 30px;
    width: 70px;
  }

  .btn {
    width: auto;
    font-size: 10px;
    height: 25px;
  }

  .content-text h5 {
    font-size: 16px;
  }

  .content-text p {
    font-size: 12px;
  }

  .content-text {
    top: 10%;
  }

  .content-text-visible {
    top: -20%;
  }

  .downloads {
    top: 10%;
    height: 120px;
  }

  .download-visible {
    top: -100%;
  }

  .btn-download {
    top: 69%;
    font-size: 14px;
    height: 32px;
  }

  .btn-visible {
    top: -100%;
  }

  .footer-text {
    font-size: 12px;
    top: 94%;
  }

  .footer-text-visible {
    top: -100%;
  }

  .avatar-title span {
    font-size: 14px;
  }

  .block-text {
    font-size: 12px;
  }

  .visible {
    top: -15%;
  }

  .girl1 {
    left: 20%;
  }

  .girl2 {
    right: 20%;
  }

  .comment-title {
    font-size: 18px;
  }

  .comment-block {
    width: 660px;
  }
}

@media (max-width: 927px) and (orientation: landscape) {
  .header {
    height: 80px;
  }

  .header-bg {
    height: 80px;
  }

  .icon {
    height: 25px;
    width: 25px;
  }

  .logo {
    height: 30px;
    width: 70px;
  }

  .btn {
    width: auto;
    font-size: 10px;
    height: 25px;
  }

  .content-text h5 {
    font-size: 16px;
  }

  .content-text p {
    font-size: 12px;
  }

  .girl1 {
    left: 20%;
  }

  .content-text {
    top: 10%;
  }

  .content-text-visible {
    top: -20%;
  }

  .downloads {
    top: 10%;
    height: 120px;
  }

  .download-visible {
    top: -100%;
  }

  .btn-download {
    top: 70%;
    font-size: 14px;
    height: 32px;
  }

  .btn-visible {
    top: -100%;
  }

  .footer-text {
    top: 95%;
    font-size: 12px;
  }

  .footer-text-visible {
    top: -100%;
  }

  .avatar-title span {
    font-size: 14px;
  }

  .block-text {
    font-size: 12px;
  }

  .visible {
    top: -15%;
  }

  .girl2 {
    right: 20%;
  }

  .comment-title {
    font-size: 18px;
  }

  .comment-block {
    width: 660px;
  }
}


@media (max-width: 835px) {
  
  .header {
    height: 168px;
  }

  .header-bg {
    height: 168px;
  }

  .icon {
    width: 55px;
    height: 55px;
  }

  .btn {
    font-size: 18px;
  }

  .girl1 {
    position: absolute;
    left: 0;
    height: 75vh;
    width: auto;
    z-index: 2;
  }

  .girl2 {
    position: absolute;
    height: 75vh;
    right: 0;
    width: auto;
  }

  .content-text {
    top: 13%;
    gap: 15px;
  }

  .content-text-visible {
    top: -10%;
  }

  .content-text h5 {
    font-size: 26px;
  }

  .content-text p {
    font-size: 18px;
  }

  .downloads{
    height: 230px;
    top: 38%;
  }

  .download-visible{
    top: -15%;
  }

  .btn-download {
    font-size: 36px;
    height: 72px;
    top: 75%;
  }

  .btn-visible{
    top: 23%;
  }

  .footer-text-visible{
    top: 50%;
  }

  .visible {
    top: 50%;
  }
}

@media (max-width: 821px) {
    
  .header {
    height: 168px;
  }

  .header-bg {
    height: 168px;
  }

  .icon {
    width: 55px;
    height: 55px;
  }

  .btn {
    font-size: 18px;
  }

  .girl1 {
    position: absolute;
    left: 0;
    height: 75vh;
    width: auto;
    z-index: 2;
  }

  .girl2 {
    position: absolute;
    height: 75vh;
    right: 0;
    width: auto;
  }

  .content-text {
    top: 13%;
    gap: 15px;
  }

  .content-text-visible {
    top: -10%;
  }

  .content-text h5 {
    font-size: 26px;
  }

  .content-text p {
    font-size: 18px;
  }

  .downloads{
    height: 230px;
    top: 38%;
  }

  .download-visible{
    top: -15%;
  }

  .btn-download {
    font-size: 36px;
    height: 72px;
    top: 75%;
  }

  .btn-visible{
    top: 23%;
  }

  .footer-text-visible{
    top: 50%;
  }

  .visible {
    top: 50%;
  }
}

@media (max-width: 768px) {
  .header {
    height: 168px;
  }

  .header-bg {
    height: 168px;
  }

  .icon {
    width: 55px;
    height: 55px;
  }

  .btn {
    font-size: 18px;
  }

  .girl1 {
    position: absolute;
    left: 0;
    height: 75vh;
    width: auto;
    z-index: 2;
  }

  .girl2 {
    position: absolute;
    height: 75vh;
    right: 0;
    width: auto;
  }

  .content-text {
    top: 13%;
    gap: 15px;
  }

  .content-text-visible {
    top: -10%;
  }

  .content-text h5 {
    font-size: 26px;
  }

  .content-text p {
    font-size: 18px;
  }

  .downloads{
    height: 230px;
    top: 36%;
  }

  .download-visible{
    top: -20%;
  }

  .btn-download {
    font-size: 36px;
    height: 72px;
    top: 75%;
  }

  .btn-visible{
    top: 19%;
  }

  .footer-text-visible{
    top: 47%;
  }

  .visible {
    top: 47%;
  }
}

@media (max-width: 736px) and (orientation: landscape) {
  .header-bg{
    height: 80px;
  }

  .header{
    height: 80px;
  }

  .icon{
    width: 25px;
    height: 25px;
  }

  .btn {
    font-size: 14px;
  }

  .content-text h5 {
    font-size: 18px;
  }

  .content-text p {
    font-size: 14px;
  }

  .girl1 {
    left: 10%;
  }

  .girl2 {
    right: 10%;
  }

  .content-text {
    top: 15%;
    gap: 10px;;
  }

  .content-text-visible {
    top: -20%;
  }

  .downloads {
    height: 120px;
    top: 8%;
  }

  .download-visible {
    top: -100%;
  }

  .btn-download {
    top: 70%;
    font-size: 14px;
    height: 32px;
  }

  .btn-visible {
    top: -100%;
  }

  .footer-text {
    top: 96%;
  }

  .footer-text-visible {
    top: -100%;
  }

  .avatar-title span {
    font-size: 14px;
  }

  .comment-block {
    width: 650px;
  }

  .block-text {
    font-size: 12px;
  }

  .visible {
    top: -15%;
  }
}

@media (max-width: 667px) and (orientation: landscape) {
  .downloads {
    height: 120px;
    top: -5%;
  }

  .download-visible {
    top: -100%;
  }

  .btn-download {
    top: 65%;
    font-size: 14px;
    height: 32px;
  }

  .btn-visible {
    top: -100%;
  }

  .footer-text {
    font-size: 8px;
    top: 96%;
  }

  .footer-text-visible {
    top: -100%;
  }

  .comment-block {
    width: 600px;
  }

  .visible { 
    top: 3%;
  }
}

@media (max-width: 568px) and (orientation: landscape) {
  .btn {
    font-size: 12px;
  }
  .content-text h5 {
    font-size: 16px;
  }

  .content-text p {
    font-size: 12px;
  }

  .content-text {
    top: 17%;
  }

  .content-text-visible {
    top: -20%;
  }

  .downloads {
    height: 110px;
    top: -18%;
  }

  .download-visible {
    top: -110%;
  }

  .btn-download {
    top: 60%;
    font-size: 14px;
    height: 32px;
  }

  .btn-visible {
    top: -100%;
  }

  .footer-text {
    font-size: 8px;
    top: 95%;
  }

  .footer-text-visible {
    top: -100%;
  }

  .comment-block {
    width: 500px;
  }

  .visible { 
    top: -17%;
  }

}

 /* @media (min-width: 430px) and (max-width: 760px) {
  .header-bg {
    height: 90px;
  }

  .header-bg {
    height: 90px;
  }

  .icon {
    height: 25px;
    width: 25px;
  }

  .logo {
    height: 30px;
    width: 70px;
  }

  .btn {
    width: auto;
    font-size: 16px;
    height: 32px;
  }

  .girl1 {
    left: -15%;
  }

  .girl2 {
    right: -25%;
  }

  .comment-block {
    width: 290px;
    font-size: 12px;
  }

  .content-text {
    top: 15%;
    width: max-content;
  }

  .content-text-visible {
    top: -10%;
  }

  .content-text h5 {
    font-size: 18px;
  }

  .content-text p {
    font-size: 14px;
  }

  .downloads {
    top: 30%;
    height: 140px;
  }

  .download-visible {
    top: -47%;
  }

  .btn-download {
    font-size: 18px;
    height: 54px;
    top: 70%;
  }

  .btn-visible {
    top: -7%;
  }

  .footer-text {
    top: 98%;
    font-size: 8px;
  }

  .footer-text-visible {
    top: 28%;
  }

  .comments-wrapper {
    top: 100%;
  }

  .visible {
    top: 23%;
  }

  .comment-title {
    font-size: 20px;
  }

  .comment-block {
    width: 350px;
    font-size: 12px;
  }
}  */

@media (max-width: 429px) {
  .header-bg {
    height: 90px;
  }

  .header-bg {
    height: 90px;
  }

  .icon {
    height: 25px;
    width: 25px;
  }

  .logo {
    height: 30px;
    width: 70px;
  }

  .btn {
    width: auto;
    font-size: 16px;
    height: 32px;
  }

  .girl1 {
    left: -5%;
  }

  .girl2 {
    left: 40%;
  }

  .comment-block {
    width: 290px;
    font-size: 12px;
  }

  .content-text {
    top: 15%;
    width: max-content;
  }

  .content-text-visible {
    top: -10%;
  }

  .content-text h5 {
    font-size: 18px;
  }

  .content-text p {
    font-size: 14px;
  }

  .downloads {
    top: 30%;
    height: 140px;
  }

  .download-visible {
    top: -47%;
  }

  .btn-download {
    font-size: 18px;
    height: 54px;
    top: 70%;
  }

  .btn-visible {
    top: -7%;
  }

  .footer-text {
    top: 98%;
    font-size: 8px;
  }

  .footer-text-visible {
    top: 28%;
  }

  .comments-wrapper {
    top: 100%;
  }

  .visible {
    top: 23%;
  }

  .comment-title {
    font-size: 20px;
  }

  .comment-block {
    width: 350px;
    font-size: 12px;
  }
}

@media (max-width: 414px) {
  .header{
    height: 90px;
  }

  .header-bg {
    height: 90px;
  }

  .icon {
    height: 25px;
    width: 25px;
  }

  .logo {
    height: 30px;
    width: 70px;
  }

  .btn {
    width: auto;
    font-size: 16px;
    height: 32px;
  }

  .girl1 {
    left: -5%;
  }

  .girl2 {
    left: 35%;
  }

  .content-text h5 {
    font-size: 20px;
  }

  .content-text p {
    font-size: 14px;
  }

  .content-text {
    width: max-content;
  }

  .content-text-visible {
    top: -20%;
  }

  .downloads {
    top: 40%;
    height: 130px;
  }

  .download-visible {
    top: -45%;
  }

  .btn-download {
    width: auto;
    top: 77%;
    font-size: 18px;
    height: 52px;
  }

  .btn-visible {
    top: -5%;
  }

  .footer-text {
    font-size: 8px;
    top: 98.5%;
  }

  .footer-text-visible {
    top: 30%;
  }

  .comments-wrapper {
    top: 100%;
  }

  .visible {
    top: 25%;
  }

  .comment-title {
    font-size: 18px;
  }

  .comment-block {
    width: 350px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .girl1 {
    left: -15%;
  }

  .girl2 {
    left: 30%;
  }

  .content-text {
    width: max-content;
  }

  .content-text-visible {
    top: -20%;
  }

  .downloads {
    top: 40%;
    height: 130px;
  }

  .download-visible {
    top: -30%;
  }

  .btn-download {
    width: auto;
    top: 75%;
    font-size: 18px;
    height: 64px;
  }

  .btn-visible {
    top: 5%;
  }

  .footer-text {
    font-size: 8px;
    top: 98.4%;
  }

  .footer-text-visible {
    top: 37%;
  }

  .comments-wrapper {
    top: 100%;
  }

  .visible {
    top: 35%;
  }

  .comment-block {
    width: 330px;
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .header {
    height: 80px;
  }

  .header-bg {
    height: 80px;
  }

  .icon {
    height: 25px;
    width: 25px;
  }

  .logo {
    height: 30px;
    width: 70px;
  }

  .btn {
    width: auto;
    font-size: 10px;
    height: 25px;
  }

  .girl1 {
    left: -8%;
  }

  .girl2 {
    left: 40%;
  }

  .content-text {
    width: max-content;
  }

  .content-text-visible {
    top: -20%;
  }

  .downloads {
    top: 30%;
    height: 130px;
  }

  .download-visible {
    top: -59%;
  }

  .btn-download {
    width: auto;
    top: 73%;
    font-size: 16px;
    height: 52px;
  }

  .btn-visible {
    top: -18%;
  }

  .footer-text {
    font-size: 8px;
    top: 98%;
  }

  .footer-text-visible {
    top: 20%;
  }

  .comments-wrapper {
    top: 100%;
  }

  .visible {
    top: 17%;
  }

  .comment-title {
    font-size: 18px;
  }

  .avatar-title span {
    font-size: 14px;
  }

  .block-text {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .girl1 {
    left: -10%;
  }
  .girl2 {
    left: 40%;
  }

  .header {
    height: 70px;
  }

  .header-bg {
    height: 70px;
  }

  .header-icon{
    padding-left: 10px;
  }

  .header-btn {
    padding-right: 10px;
  }
  

  .icon {
    height: 25px;
    width: 25px;
  }

  .logo {
    height: 30px;
    width: 70px;
  }

  .btn {
    width: auto;
    font-size: 10px;
    height: 25px;
  }

  .content-text h5 {
    font-size: 14px;
  }

  .content-text p {
    font-size: 10px;
  }

  .content-text {
    top: 13%;
    width: max-content;
  }

  .content-text-visible {
    top: -20%;
  }

  .downloads {
    top: 25%;
    height: 100px;
  }

  .download-visible {
    top: -80%;
  }

  .btn-download {
    width: auto;
    top: 70%;
    font-size: 12px !important;
    height: 38px !important;
  }

  .btn-visible {
    top: -50%;
  }

  .footer-text {
    font-size: 8px;
    top: 97%;
  }

  .footer-text-visible {
    top: 10%;
  }

  .comments-wrapper {
    top: 100%;
  }

  .visible {
    top: 5%;
  }

  .comment-title {
    font-size: 16px;
  }

  .comment-block {
    width: 250px;
  }
  .avatar-title span {
    font-size: 12px;
  }

  .block-text {
    font-size: 10px;
  }
} 

/******************************************   *******************************************/
