@font-face {
  font-family: 'MTSans';
  src: url('/fonts/MTSansLCTest3VF.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

/* Reset и базовые стили */
html, body {
  margin: 0;
  padding: 0;
  background-color: #0c0909;
  font-family: 'MTSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  overflow-x: hidden;
}
.home-page {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #0c0909;
  position: relative;
}

/* Snowflake Area */
.snowflake-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -20%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: snow;
  animation: snowfall 10s linear infinite;
  z-index: 10;
}

@keyframes snowfall {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  25% {
    transform: translate(-8vw, 27.5vh) rotate(90deg);
  }
  50% {
    transform: translate(-15vw, 55vh) rotate(180deg);
  }
  75% {
    transform: translate(-23vw, 82.5vh) rotate(270deg);
  }
  100% {
    transform: translate(-30vw, 110vh) rotate(360deg);
  }
}

/* Hero Block */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

/* Фоновое изображение */
.hero-background {
  position: absolute;
  top: -4%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-background.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Контент Hero блока */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Логотип вверху */
.hero-logo {
  width: 200px;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  margin-bottom: 20px;
}

.logo-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Центральное изображение (Операция Сила) */
.hero-title {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  position: absolute;
  top: 5%;
}

.title-image,
.title-video {
  width: 650px;
  height: auto;
  object-fit: contain;
}

.hero-tagline {
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  margin-top: auto;
  padding-bottom: 20px;
  max-width: 35%;
}

.hero-tagline-highlight {
  color: #FF5000;
}

.scroll-arrow {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}

/* Описание игры */
.hero-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  padding: 0 20px 60px;
  gap: 16px;
}

.hero-description-title {
  font-size: 32px;
  font-weight: 500;
  color: #FF5000;
  margin: 0;
}

.hero-description-text {
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

/* Таймер внизу */
.hero-timer {
  width: 100%;
  max-width: 900px;
  padding-bottom: 60px;
  text-align: center;
}

.timer-label {
  font-size: 24px;
  font-weight: 100;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.timer-blocks {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.timer-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-digits {
  display: flex;
  gap: 10px;
}

/* FlipClock 3D стиль */
.flip-card {
  position: relative;
  display: inline-block;
  width: 85px;
  height: 110px;
  perspective: 300px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.flip-card-top,
.flip-card-bottom,
.flip-card-animated-top,
.flip-card-animated-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
}

.flip-card-top,
.flip-card-animated-top {
  top: 0;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(to bottom, #ffffff 0%, #f0f0f0 100%);
}

.flip-card-top span,
.flip-card-animated-top span {
  position: relative;
  top: 50%;
  font-size: 72px;
  font-weight: 500;
  color: #000000;
  line-height: 1;
}

.flip-card-bottom,
.flip-card-animated-bottom {
  bottom: 0;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(to bottom, #e8e8e8 0%, #ffffff 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flip-card-bottom span,
.flip-card-animated-bottom span {
  position: relative;
  top: -50%;
  font-size: 72px;
  font-weight: 500;
  color: #000000;
  line-height: 1;
}

/* Анимация верхней карточки - переворачивается вниз */
.flip-card-animated-top {
  z-index: 3;
  transform-origin: bottom center;
  animation: flipDown 0.3s ease-in forwards;
}

/* Анимация нижней карточки - появляется сверху */
.flip-card-animated-bottom {
  z-index: 2;
  transform-origin: top center;
  animation: flipUp 0.3s ease-out 0.3s forwards;
  transform: rotateX(90deg);
}

@keyframes flipDown {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(-90deg);
  }
}

@keyframes flipUp {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

.timer-unit {
  color: #ffffff;
  font-size: 18px;
  font-weight: 100;
  margin-top: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.timer-separator {
  color: #FF5000;
  font-size: 72px;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Task Section */
.wtask-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 20px 150px 20px;
  background-color: #0c0909;
}

/* About Section */
.about-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0px 20px 20px 20px;
  background-color: #0c0909;
  margin-top: -40px;
}

.about-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.about-content {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-image {
  flex: 1;
  width: 120%;
  margin-left: -5%;
  margin-right: 5%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.about-title {
  font-size: 42px;
  font-weight: 400;
  color: #FF5000;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  width: 80%;
}

.about-description {
  font-size: 16px;
  font-weight: 100;
  color: #ffffff !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.6;
  max-width: 420px;
}

.about-prizes {
  border-left: 3px solid #FF5000;
  padding-left: 20px;
  margin: 10px 0;
  width: 80%;
}

.about-prizes-title {
  font-size: 24px;
  font-weight: 400;
  color: #FF5000;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.about-prizes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-prizes-list li {
  font-size: 16px;
  font-weight: 100;
  color: #ffffff;
  line-height: 1.5;
}

.about-button {
  width: 320px;
  height: 56px;
  margin-top: 10px;
  background-color: #FF5000;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300 !important;
  font-family: 'MTSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.wtask-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.wtask-content {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wtask-image {
  flex: 1;
  width: 100%;
}

.wtask-image img {
  width: 120%;
  height: auto;
  border-radius: 0;
}

.wtask-title {
  font-size: 42px;
  font-weight: 400;
  color: #FF5000;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}



.wtask-description {
  font-size: 16px;
  font-weight: 100;
  color: #ffffff !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.6;
  max-width: 420px;
}

.wtask-warning {
  border-left: 3px solid #FF5000;
  margin: 10px 0;
  background-color: #ff51004c;
  padding: 20px;
}

.wtask-warning-title {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

.wtask-prizes {
  border-left: 3px solid #FF5000;
  padding-left: 20px;
  margin: 10px 0;
}

.wtask-prizes-title {
  font-size: 18px;
  font-weight: 400;
  color: #FF5000;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.wtask-prizes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wtask-prizes-list li {
  font-size: 16px;
  font-weight: 100;
  color: #ffffff;
  line-height: 1.5;
}

.wtask-button {
  width: 320px;
  height: 56px;
  margin-top: 10px;
  background-color: #FF5000;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300 !important;
  font-family: 'MTSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.wtask-button:hover {
  opacity: 0.9;
}

/* Promo Section */
.promo-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  min-height: 700px;
  margin-top: -150px;
}

.promo-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/promo-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.promo-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  width: 40%;
}

.promo-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.promo-title {
  font-size: 42px;
  font-weight: 400;
  color: #FF5000;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

.promo-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-text p {
  font-size: 16px;
  font-weight: 100;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

.promo-button {
  width: 280px;
  height: 60px;
  background-color: #FF5000;
  color: #ffffff;
  font-size: 18px;
  font-weight: 200;
  font-family: 'MTSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.promo-button:hover {
  opacity: 0.9;
}

/* Footer */
.footer {
  width: 100%;
  padding: 40px 20px;
  background-color: #0c0909;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.footer-text {
  font-size: 14px;
  font-weight: 100;
  color: #ffffff;
}

.footer-text a {
  color: #FF5000;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}
.footer-logo-link {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.footer-logo {
  height: 20px;
  width: auto;
}

/* Popup Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  background-color: #0c0909;
  border: 2px solid #FF5000;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  padding: 30px;
  overflow-y: auto;
  box-shadow: 0 0 30px rgba(255, 80, 0, 0.3);
}

.popup-content h2 {
  color: #FF5000;
  font-size: 28px;
  margin-top: 0;
  text-align: center;
}

.popup-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

.popup-text p {
  margin: 10px 0;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-popup:hover {
  color: #FF5000;
}

#rules-link {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

#rules-link:hover {
  color: #FF5000;
}
/* Slider Section */
.slider-section {
  position: relative;
  width: 100%;
  padding: 80px 20px 60px 20px;
  overflow: hidden;
  z-index: 2;
}

.slider-background {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  width: 100%;
  height: 90%;
  background-image: url('../images/slider-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  max-width: 1900px;
}

.slider-title-video {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: auto;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.slider-title-image {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: auto;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.slider-title {
  position: relative;
  z-index: 2;
  font-size: 42px;
  font-weight: 400;
  color: #FF5000;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 60px 0;
}

.slider-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  height: 800px;
  margin: 0 auto;
  gap: 20px;
}

.slider-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slider-arrow:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.slider-arrow img {
  width: 55px;
  height: 55px;
}

.slider-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  height: 400px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.slider-slide {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 500px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              filter 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.slider-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.slider-text {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 20px;
  text-align: center;
}

/* Video Carousel Section */
.video-carousel-section {
  display: none; /* Временно скрыто */
  width: 100%;
  padding: 0px 20px 60px;
  background-color: #0c0909;
}

.video-carousel-title {
  font-size: 42px;
  font-weight: 400;
  color: #FF5000;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 60px 0;
}

.video-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 95px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.video-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-arrow:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.video-arrow img {
  width: 55px;
  height: 55px;
}

.video-carousel-container {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  position: relative;
}

.video-carousel-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

.video-card {
  position: absolute;
  width: 280px;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              filter 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
  filter: brightness(1.1);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.video-card:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.video-social-text {
  font-size: 18px;
  font-weight: 100;
  color: #ffffff;
}

.video-social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Адаптивность для планшетов */
@media (max-width: 1500px) and (min-width: 1025px) {
  .wtask-container {
    position: relative;
  }

  .hero-tagline {
  max-width: 40%;
}


  .wtask-content {
    position: relative;
    z-index: 2;
    align-items: flex-start;
    text-align: left;
    margin-left: 5%;
  }

  .wtask-title {
    text-align: left;
  }

  .wtask-description {
    text-align: left;
  }

  .wtask-prizes {
    text-align: left;
  }

  .wtask-image {
    position: relative;
    z-index: 1;
    margin-left: -100px;
  }

  .wtask-image img {
    width: 100%;
  }

  .about-container {
    position: relative;
  }

  .about-content {
    position: relative;
    z-index: 2;
    align-items: flex-start;
    text-align: left;
  }

  .about-title {
    text-align: left;
  }

  .about-description {
    text-align: left;
  }

  .about-prizes {
    text-align: left;
  }

  .about-image {
    position: relative;
    z-index: 1;
    margin-right: -100px;
  }

  .about-image img {
    width: 80%;
  }
}

@media (max-width: 1200px) {
  .hero-background {
    width: 100%;
    left: 0;
    transform: none;
  }
   .hero-tagline {
  max-width: 50%;
}
  .slider-title-video,
  .slider-title-image {
    width: 60%;
    max-width: 750px;
  }

  .promo-container {
    width: 80%;
  }

  .wtask-image {
    display: flex;
    justify-content: center;
  }

  .wtask-image img {
    width: 100%;
    max-width: 750px;
  }

  .about-image {
    display: flex;
    justify-content: center;
  }

  .about-image img {
    width: 80%;
    max-width: 750px;
  }
}

@media (max-width: 1024px) {
  .wtask-content {
    width: 80%;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .about-content {
    width: 80%;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 1024px) {
   .about-section {
        margin-top: 0px;
    padding: 60px 20px 20px 20px;
   }
   .about-prizes {
  width: 60%;
   }
  .hero-content {
    padding: 30px 15px;
  }

  .logo-image {
    max-width: 250px;
  }

  .title-image {
    max-width: 600px;
  }

  .timer-label {
    font-size: 20px;
  }

  .flip-card {
    width: 70px;
    height: 90px;
  }

  .flip-card-top span,
  .flip-card-animated-top span,
  .flip-card-bottom span,
  .flip-card-animated-bottom span {
    font-size: 56px;
    font-weight: 500;
  }

  .timer-unit {
    font-size: 16px;
  }

  .timer-separator {
    font-size: 56px;
  }

  .wtask-container {
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }

  .wtask-image {
    width: 100%;
  }

  .wtask-title {
    font-size: 32px;
  }

  .wtask-text p {
    font-size: 15px;
  }

  .about-container {
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }

  .about-image {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .about-title {
    font-size: 32px;
  }

  .about-text p {
    font-size: 15px;
  }

  .slider-slide {
    width: 350px;
  }

  .slider-text {
    font-size: 20px;
  }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .slider-arrow {
    display: none;
  }

  .about-prizes {
        width: 90%;
    }

  .hero-tagline {
  max-width: 70%;
}
  .promo-title {
  font-size: 32px;
  }
  .hero {
    min-height: 90vh;
  }
  .hero-content {
    padding: 20px 10px;
  }
.hero-background {
        height: 80%;
        top:10%;
      }
  .hero-logo {
    padding-top: 20px;
  }

  .logo-image {
    max-width: 180px;
  }

   .title-image,
   .title-video {
    max-width: 80%;
  }

  .slider-title-video,
  .slider-title-image {
    width: 80%;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .hero-timer {
    padding-bottom: 40px;
  }

  .timer-label {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .timer-blocks {
    gap: 10px;
  }

  .timer-digits {
    gap: 8px;
  }

  .flip-card {
    width: 55px;
    height: 70px;
  }

  .flip-card-top span,
  .flip-card-animated-top span,
  .flip-card-bottom span,
  .flip-card-animated-bottom span {
    font-size: 40px;
  }

  .timer-unit {
    font-size: 14px;
    margin-top: 8px;
  }

  .timer-separator {
    font-size: 40px;
    padding: 0 5px;
  }

  .wtask-section {
    padding: 60px 15px;
  }

  .wtask-title {
    font-size: 28px;
  }

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

  .about-section {
    padding: 0px 15px;
  }

  .about-title {
    font-size: 28px;
  }

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

  .slider-section {
    padding: 120px 15px;
    height: 800px;
  }

  .slider-background {
    width: 200%;
    height: 100%;
    background-size: contain;
    background-position: center;
    
  }

  .slider-slide {
    width: 100%;
    max-width: 350px;
  }

  .slider-text {
    font-size: 18px;
  }

  .slider-arrow img {
    width: 45px;
    height: 45px;
  }
  .promo-content {
    width: 80%;
  }
}
@media (max-width: 1500px) {
.promo-content {
  width: 80%;}
}
/* Адаптивность для маленьких мобильных */
@media (max-width: 480px) {
   .hero {
    min-height: 600px;
  }

.hero-background {
        height: 60%;
        top:20%;
      }
  .logo-image {
    max-width: 150px;
  }
   .title-image,
.title-video {
    max-width: 450px;
  }

  .timer-label {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .timer-blocks {
    gap: 8px;
  }

  .timer-digits {
    gap: 6px;
  }

  .flip-card {
    width: 45px;
    height: 60px;
  }

  .flip-card-top span,
  .flip-card-animated-top span,
  .flip-card-bottom span,
  .flip-card-animated-bottom span {
    font-size: 32px;
  }

  .timer-unit {
    font-size: 12px;
  }

  .timer-separator {
    font-size: 32px;
  }

  .wtask-section {
    padding: 40px 10px;
  }

  .wtask-title {
    font-size: 24px;
  }

  .wtask-text p {
    font-size: 13px;
  }

  .about-section {
    padding: 40px 10px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-text p {
    font-size: 13px;
  }

  .slider-section {
    padding: 0px 10px;
    height: 700px;
    margin-top: 50px;
  }

  .slider-background {
    width: 300%;
    height: 100%;
    background-size: contain;
  }

  .slider-slide {
    max-width: 280px;
  }

  .slider-text {
    font-size: 16px;
  }

  .slider-arrow img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 600px) {
  .title-video {
        max-width: 120%;
        margin-top: 20px;
    }
  .about-description {
    font-size: 14px;
  }
  .about-prizes-list li {
    font-size: 14px;
  }
  .wtask-description {
    font-size: 14px;
  }
  .wtask-prizes-list li {
    font-size: 14px;
  }
  .promo-text p {
    font-size: 14px;
  }
  .hero-tagline {
    font-size: 20px;
  }
  .wtask-button {
    width: 98%;
    font-size: 16px;
  }
  .promo-button {
    width: 98%;
    font-size: 16px;
  }
    .about-image img {
        width: 100%;
        max-width: 750px;
    }
        .wtask-image img{
        width: 100%;
    }
        .promo-content {
        width: 100%;
    }
        .about-section {
        margin-top: -50px;
    }
}
@media (max-width: 4000px) and (min-width: 2025px)  {
  .title-image, .title-video {
    width: 800px;
  }
}
.footer-text a {
  color: #FF5000 !important;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}