*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-decoration: none;
  color: inherit;
}

body {
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

/* .header {
   display: flex;
   justify-content: center;
   max-width: 800px;
   margin: 0 auto;
} */

.core-title {
  font-size: 46px;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
  margin-top: 20px;
  max-width: 800px;
  text-align: center;
}

.div-video {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}

.video {
  max-width: 900px;
  width: 100%;
  cursor: pointer;
}

.full-video {
  z-index: 1;
  position: fixed;
  top: 0;
  bottom: -4%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(1, 1, 1, 0.7);
}

.close {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 40px;
}

.close div {
  font-size: 52px;
  color: white;
  cursor: pointer;
}

.close div:hover {
  font-size: 52px;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.relative {
  position: relative;
}

.notification {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
}

.notification div {
  background-color: rgba(49, 202, 79, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  padding: 10px;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  border: 1px solid white;
}

.notification img {
  width: 70px;
}

@media (max-width: 390px) {
  .notification div {
    width: 100%;
  }
}

.subheader-read-time {
  background-image: url("clock.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center left;
  padding-left: 25px;
}
.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border: 4px solid lightblue;
}

.form-title {
  margin-top: 10px;
  margin-bottom: 5px;
}

.form img {
  width: 100%;
  max-width: 250px;
  margin: 20px 0;
}

.form-price {
  font-size: 24px;
  margin-bottom: 20px;
}

.form-text {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  color: rgb(113, 113, 113);
}

input {
  font-size: 18px;
  padding: 4px 10px;
  border: 1px solid rgba(53, 130, 237, 0.5);
  margin-bottom: 20px;
  width: 60%;
  outline: none;
}

.btn-submit {
  background-color: #3580ed;
  color: white;
  border: none;
  width: 50%;
  padding: 15px 20px;
  margin-bottom: 30px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.4s ease;
}

@media (hover: hover) {
  .btn-submit:hover {
    transform: scale(0.9);
    transition: 0.4s ease;
  }
}

.banner-chanels {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;

  padding: 10px;
  margin-bottom: 10px;
}

.banner-chanels p {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-chanels div {
  display: flex;
  gap: 20px;
}

.banner-chanels img {
  width: 100%;
  max-width: 320px;
  /* height: fit-content; */
  height: 100%;
}

.all-coments {
  border: 1px solid rgb(187, 187, 187);
}

.text-all-coments {
  padding: 10px;
  font-weight: 700;
  font-size: 16px;
}

.place-coment {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coment {
  margin-top: 10px;
  display: flex;
  width: 95%;
  margin-bottom: 20px;
  opacity: 1;
  transition: 0.4s ease;
  transform: translateY(0);
}

.ava-coment {
  border-radius: 100px;
  width: 70px;
  height: 70px;
  padding: 10px 10px;
}

.name-coment {
  color: #365899;
  font-size: 16px;
  font-weight: 700;
  padding: 5px;
}

.info-coment {
  width: 100%;
}

.text-coment {
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #eaebef;
  width: 100%;
}

.all-buttons-coment {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-react-coment {
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 10px;
  color: rgb(105, 105, 105);
}

.btn-react-coment p:last-child {
  color: rgb(105, 105, 105);
}

/* .react-coment {
  cursor: pointer;
}

.react-coment:hover {
  text-decoration: underline;
} */

.btn-like-coment {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 3px 1px rgba(1, 1, 1, 0.3);
  border-radius: 100px;
  padding: 2px 5px;
}

@media (max-width: 900px) {
  .core-title {
    font-size: 38px;
  }

  /* .banner-chanels img {
      width: 90px;
   } */

  .banner-chanels p {
    font-size: 20px;
    text-align: center;
  }

  .text-coment {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #eaebef;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .subheader-title span {
    font-size: 16px;
    font-weight: 500;
  }
  .subheader-read-time span {
    font-size: 16px;
    font-weight: 500;
  }
  .subheader-date span {
    font-size: 16px;
    font-weight: 500;
  }
}

@media (max-width: 500px) {
  .subheader-title span {
    font-size: 15px;
    font-weight: 500;
  }
  .subheader-read-time span {
    font-size: 15px;
    font-weight: 500;
  }
  .subheader-read-time {
    margin-left: -4px;
    margin-top: 1px;
    padding-left: 22px;
  }
  .subheader-date span {
    font-size: 15px;
    font-weight: 500;
  }
}

@media (max-width: 390px) {
  .all-buttons-coment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.animate-show {
  opacity: 0;
  transition: 0.4s ease;
  transform: translateY(20px);
}

.input-container {
  position: relative;
  width: 60%;
}

.input-container input {
  width: 100%;
}

.input-container input[name="phone"] {
  padding-left: 35px;
  /* Добавляем отступ слева для изображения */
}

.input-container img {
  width: 25px;
  position: absolute;
  left: 5px;
  top: -5px;
  transform: translateY(-50%);
}

.div__popup-form {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(1, 1, 1, 0.8);

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  cursor: pointer;
}

@keyframes animPopupForm {
  0% {
    transform: translateY(-500%);
  }

  100% {
    transform: translateY(0%);
  }
}

.popup-form {
  background-color: white;
  overflow: auto;
  width: 90%;
  max-width: 500px;
  max-height: 90%;
  cursor: default;
  animation: animPopupForm 0.5s ease forwards;
}

.popup-form .form-title,
.popup-form .img-form_cert,
.popup-form .footer-title_form,
.popup-form .termina-form,
.popup-form .timer,
.popup-form .form-text {
  display: none;
}

.popup-form .btn-submit {
  margin: 0;
}

.popup-form .prod-form-img {
  margin-top: 0px;
}

.popup-form .div-img-form_cert {
  margin: 0;
  display: none;
}

.popup-form__btn-close {
  position: absolute;
  right: 2%;
  top: 3%;
  z-index: 1;
  font-size: 64px;
  cursor: pointer;
  color: rgb(172, 172, 172);
  transition: 0.3s ease;
  line-height: 1px;
}

.popup-form__btn-close:hover {
  transform: scale(0.9);
  transition: 0.3s ease;
}

.div-section-form {
  margin: 20px auto;
  width: 100%;
}

.popup-form .div-section-form {
  margin: 0px auto;
  width: 100%;
}

.none {
  display: none;
}

.wrap-prod-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.smartplayer-mobile-container {
  max-width: 700px !important;
}



.wiget-container {
  margin: 20px auto;
  gap: 15px;
  margin: 20px 0 7px;
  border-bottom: 2px solid black;
  padding-bottom: 10px;
}

.wget-text {
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 900;
  color: #df0002;
  animation: colorChange 1s infinite;
  text-align: center;

  text-transform: uppercase;

  padding-left: 10px;
  border-left: 8px solid black;
}

#news {
  text-decoration: underline;
  white-space: nowrap;
}

@keyframes colorChange {
  0% {
    color: #df0002;
  }
  50% {
    color: #000000;
  }
  100% {
    color: #df0002;
  }
}

@media screen and (max-width: 500px) {
  .wiget-container img {
    width: 100%;
    max-width: 65px;
  }
  .wiget-container .logo-wrapper {
    width: 100px;
  }

  .wget-text {
    font-size: 1.1rem;
    line-height: 1.1rem;
    border-left: 6px solid black;
  }
}


@media (max-width: 550px) {
  .core-title {
    font-size: 28px;
  }
}

        /* CSS Reset for spacing issues */
        html, body {
          margin: 0;
          padding: 0;
          border: 0;
          width: 100%;
          overflow-x: hidden;
      }
      
      /* Fix spacing above header */
      body > *:first-child {
          margin-top: 0;
      }
      
      /* Base container styles */
      .container {
          width: 100%;
          max-width: 800px;
          margin: 0 auto;
          box-sizing: border-box;
          padding: 0 15px;
      }
      
      /* Main structure containers */
      .wrapper {
          width: 100%;
          max-width: 100%;
          overflow-x: hidden;
      }
      
      .main {
          width: 100%;
          max-width: 100%;
          overflow-x: hidden;
      }
      
      /* Headline styling */
      .core-title {
          font-size: 32px;
          line-height: 1.2;
      }
      
      /* Mobile adjustments */
      @media (max-width: 768px) {
          .core-title {
              font-size: 24px;
              line-height: 1.1;
              margin: 10px 0 !important;
          }
          
          .container-title {
              padding: 0 15px !important;
              margin-top: 20px !important;
          }
          
          .subheader-container {
              font-size: 12px;
              padding: 5px;
          }
          
          .subheader-title span,
          .subheader-read-time span,
          .subheader-date span {
              font-size: 12px;
          }
          
          .container {
              padding: 0 10px;
          }
      }
      
      /* Header Styles */
      .header {
          padding: 8px 0;
          border-bottom: 2px solid #000;
          background-color: #fff;
          width: 100%;
          position: sticky;
          top: 0;
          z-index: 1000;
      }
      
      .header-container {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 6px 20px;
          width: 100%;
          max-width: 1200px;
          margin: 0 auto;
      }
      
      .header-left {
          display: flex;
          align-items: center;
          gap: 10px;
      }
      
      .header-center {
          display: flex;
          align-items: center;
          gap: 30px;
      }
      
      .header-right {
          display: flex;
          align-items: center;
          gap: 15px;
      }
      
      .nav-link {
          color: #0c0c0c;
          text-decoration: none;
          font-weight: 600;
          font-size: 14px;
          padding: 8px 0;
          transition: color 0.3s ease;
          cursor: default;
          pointer-events: none;
          display: flex;
          align-items: center;
          gap: 6px;
      }
      
      .nav-link:hover {
          color: #0c0c0c;
      }
      
      .live-tv {
          position: relative;
      }
      
      .live-dot {
          width: 6px;
          height: 6px;
          background-color: #c00;
          border-radius: 50%;
          animation: blink 1s infinite;
          margin-right: 6px;
          flex-shrink: 0;
      }
      
      @keyframes blink {
          0%, 50% { opacity: 1; }
          51%, 100% { opacity: 0; }
      }
      
      .subscribe-button {
          background-color: #c00;
          color: white;
          border: none;
          padding: 8px 16px;
          border-radius: 4px;
          font-weight: 600;
          font-size: 14px;
          cursor: default;
          text-decoration: none;
          display: inline-block;
          pointer-events: none;
      }
      
      .signin-button {
          color: #0c0c0c;
          text-decoration: none;
          font-weight: 500;
          font-size: 14px;
          padding: 8px 0;
          transition: color 0.3s ease;
          cursor: default;
          pointer-events: none;
      }
      
      .signin-button:hover {
          color: #0c0c0c;
      }
      
      .subscribe-button:hover {
          background-color: #a00;
      }
      
      .nav-icon {
          width: 16px;
          height: 16px;
          fill: currentColor;
      }
      
      .search-icon {
          width: 18px;
          height: 18px;
          fill: currentColor;
          cursor: default;
          pointer-events: none;
      }
      
      /* Urgency message styling */
      .urgency-message {
          font-size: 12px !important;
          font-weight: bold !important;
          font-style: italic !important;
          line-height: 1.3;
          padding: 4px 0;
          animation: blinkBlackGrey 1s infinite;
      }
      
      @keyframes blinkBlackGrey {
          0%, 50% { color: #000; }
          51%, 100% { color: #666; }
      }
      
      .header__menu-icon-svg {
          height: 24px;
          width: 24px;
          fill: #0c0c0c;
      }

      .brand-logo__icon {
          width: 45px;
          height: 22px;
          fill: #c00;
      }

      .brand-logo__theme {
          font-family: Arial, Helvetica, sans-serif;
          font-weight: 700;
          font-size: 18px;
          color: #0c0c0c;
          margin-left: -8px;
      }
      
      /* Subheader styles */
      .subheader-container {
          padding: 10px;
          color: #818181;
          text-align: left;
      }
      
      .subheader-title,
      .subheader-read-time,
      .subheader-date {
          text-align: left;
          margin: 0;
          padding: 0;
      }
      /* Video section spacing */
      .section-video {
          margin: 30px 0;
      }
      
      /* Article body styling to match CNN reference exactly */
      .article-body {
          margin: 0;
          padding: 0;
          font-family: "CNN Sans", Arial, Helvetica, sans-serif;
          font-size: 16px;
          line-height: 1.5;
          color: #0c0c0c;
          font-weight: 400;
          letter-spacing: 0;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          text-rendering: optimizeLegibility;
      }
      
      .article-body p {
          display: block;
          margin: 0 0 1em 0;
          padding: 0;
          font-size: 16px;
          line-height: 1.5;
          color: #0c0c0c;
          font-weight: 400;
          box-sizing: border-box;
      }
      
      .article-body p:last-child {
          margin-bottom: 0;
      }
      
  
      
      /* Comments Section Styling - Facebook Style */
      #fb-comments {
          font-family: "Segoe UI Historic", "Segoe UI", Helvetica, Arial, sans-serif;
          font-size: 13px;
          width: 100%;
          margin: auto;
      }

      #fb-comments .fb-heading {
          margin: 2.125em 0 0.625em;
          font-size: 1.1em;
          color: #555;
          font-weight: 400;
          text-align: left;
      }

      #fb-comments .comments-container {
          display: flex;
          flex-direction: column;
          gap: 1.25em;
          border: 0.0625em solid #e9ebee;
          border-radius: 1.25em;
          padding: 1.25em 1.25em 0;
      }

      #fb-comments .comment {
          display: flex;
          align-items: flex-start;
          justify-content: flex-start;
          position: relative;
          width: 100%;
          max-width: 100%;
          gap: 0.625em;
      }

      #fb-comments .comment.answer {
          margin-left: 3.625em;
          max-width: calc(100% - 3.625em);
          margin-bottom: 0.75em;
      }

      #fb-comments .comment.answer+.answer {
          margin-top: -0.75em;
      }

      #fb-comments .comment .user-avatar {
          max-width: 3em;
          max-height: 3em;
          border-radius: 1.5625em;
          -o-object-fit: cover;
          object-fit: cover;
      }

      #fb-comments .comment .comment-data {
          width: 100%;
      }

      #fb-comments .comment .comment-data .user {
          font-weight: 400;
          color: #050505;
          border-radius: 0.75em;
          background-color: #f0f2f5;
          padding: 0.375em 0.75em 0.75em;
      }

      #fb-comments .comment .comment-data .user .name {
          margin: 0;
          color: #365899;
          text-decoration: none;
          font-weight: 700;
          font-size: 16px;
          line-height: 24px;
          cursor: pointer;
          max-width: -webkit-max-content;
          max-width: -moz-max-content;
          max-width: max-content;
      }

      #fb-comments .comment .comment-data .user .text {
          margin: 0;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #050505;
          width: fit-content;
          text-align: left;
      }

      #fb-comments .comment .comment-data .buttons {
          margin: 0.125em 0 0 0.75em;
          display: flex;
          align-items: center;
          justify-content: flex-start;
          gap: 0.3125em;
      }

      #fb-comments .comment .comment-data .buttons time,
      #fb-comments .comment .comment-data .buttons like,
      #fb-comments .comment .comment-data .buttons answer,
      #fb-comments .comment .comment-data .buttons span {
          font-size: 0.80em;
          color: #888;
          -webkit-user-select: none;
          -moz-user-select: none;
          -ms-user-select: none;
          user-select: none;
      }

      #fb-comments .comment .comment-data .buttons like,
      #fb-comments .comment .comment-data .buttons answer {
          font-weight: 600;
          cursor: pointer;
      }

      #fb-comments .comment .comment-data .buttons like[liked] {
          color: #365899;
      }

      #fb-comments .comment .comment-data .buttons answer {
          cursor: default;
          position: relative;
      }

      #fb-comments .comment .comment-data .buttons answer:hover::after {
          content: "You cannot comment on this post";
          position: absolute;
          left: 50%;
          top: -0.625em;
          width: 11.25em;
          background-color: #f0f2f5;
          color: #4c4c4c;
          transform: translate(-50%, -100%);
          z-index: 10;
          border-radius: 0.25em;
          padding: 0.375em;
          text-align: center;
          font-weight: 400;
          box-shadow: 0.125em 0.125em 0.5em 0.125em rgba(0, 0, 0, 0.1803921569);
      }

      #fb-comments .comment .comment-data .buttons answer:hover::before {
          content: "";
          position: absolute;
          left: 50%;
          top: -0.625em;
          width: 0;
          height: 0;
          border-left: 0.5em solid rgba(0, 0, 0, 0);
          border-right: 0.5em solid rgba(0, 0, 0, 0);
          border-top: 0.5em solid #f0f2f5;
          z-index: 11;
          transform: translateX(-50%);
          filter: drop-shadow(0 0.1875em 0.125em rgba(0, 0, 0, 0.1));
      }

      #fb-comments .comment likes {
          position: absolute;
          bottom: -0.625em;
          right: 0;
          background-color: #fff;
          border: 0.125em solid #eaebef;
          display: flex;
          align-items: center;
          font-size: 0.875em;
          line-height: 1;
          color: #888;
          border-radius: 6.25em;
          padding: 0.0625em 0.25em 0.0625em 0;
      }

      #fb-comments .comment likes::before {
          content: url('../img/likes.png');
          cursor: pointer;
      }

      #fb-comments .comments-closed {
          font-size: 0.875em;
          font-weight: 600;
          text-align: center;
          margin: 0.9375em 0 5px;
          color: #555;
      }

      @media (min-width: 576px) {
          #fb-comments {
              font-size: 16px;
          }

          #fb-comments .comment likes {
              bottom: 0;
          }
      }
  