body {
  background-color: #000;
}
.header {
  
  padding: 20px 40px;
}
input[type=tel] {
  width: 100%;
}

.iti__country-name {
  color: black !important;
}
  /* Анімація блимання */
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  .blink {
    animation: blink 1s step-start 3; /* 3 повтори блимання по 1 секунді */
  }
  .arrow {
    display: inline-block;
    transform: rotate(45deg);
    margin-left: 5px;
    animation: arrowMove 1.2s ease-in-out infinite;
  }
/* Контейнер для внутрішнього вирівнювання */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ліва частина: логотип + назва */
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
}

.site-name {
  text-transform: uppercase;
  color: white;
  margin: 0;
}

/* Права частина: посилання */
.header-right a {
   font-size: 20px;
    cursor: pointer;
  color: white;
  text-decoration: none;
  margin-left: 15px;
}
.timer-text h2 {
  text-align: right;
}
.header-right a:first-child {
  margin-left: 0;
  font-size: 20px;
    cursor: pointer;
}
.header-right a:hover {
  color: #adff2f; /* Салатовий (GreenYellow) */
}
.video-wrapper {
  position: relative;
 
}

#player {
  width: 90%; 
  border-radius: 8px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
   
}
.unmute-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 2;
}

.unmute-button:hover {
  opacity: 0.8;
}

.unmute-button svg {
  display: block;
}
svg {
  width: 80px;
}
.container {
      display: flex;
      padding: 25px;
     
    }
    .right-block h1 {
      margin:auto;
      color: white;
    text-transform: uppercase;
    font-size: 40px;
  }
  .right-block span {
    color: #9bdd55;
  }
  .mytext span {
    color: rgb(255 255 255);
  }
  .left-block h2 {
    margin: auto;
    color: rgb(186 186 186);
    font-size: 24px;
    text-align: left;
   
  }

    .left-block, .right-block {
      flex: 1;
      padding: 20px;
    }

    .left-block {
      
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .button-wrapper {
    padding: 12px 24px;
    font-size: 24px;
    color: white;
    background-color: transparent;
    border: 2px solid #a8f15a; /* Салатовий бордер */
    border-radius: 8px;
    cursor: pointer;
    width: 90%;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .left {
    color: white;
    flex: 1 1 55%;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .left .highlight {
    color: #9bdd55;
  }

  .right {
    color: rgb(186 186 186);
    flex: 1 1 40%;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.5;
    text-transform: uppercase;
   
  }

  .right strong {
    color: white;
  }

  .btn-watch {
    width: 100%;
    display: inline-block;
    margin-top: 50px;
    padding: 20px 60px;
    border: 1px solid #9bdd55;
    color: #9bdd55;
    font-size: 1.1rem;
    cursor: pointer;
    text-align: center;
    background: transparent;
    transition: background-color 0.3s, color 0.3s;
    text-transform: none;
    text-transform: uppercase;
  }

  .btn-watch:hover {
    background-color: #9bdd55;
    color: #000;
  }
.form__arrows {
    display: flex;
    justify-content: space-around; /* рівномірно розподіляє стрілки */
    align-items: center;
    margin-top: 30px;
    
  }

  .form__arrow-down {
    fill: #43c300;
    width: 2.4rem; /* менше: ~40px */
    transform: rotate(90deg);
    animation: arrow-horizontal 1.5s ease-in-out infinite;
  }

  @keyframes arrow-horizontal {
    0% {
      transform: rotate(90deg) translateX(0);
    }
    50% {
      transform: rotate(90deg) translateX(6px); /* трохи менше зміщення */
    }
    100% {
      transform: rotate(90deg) translateX(0);
    }
  }
  
.avatars {
      display: flex;
      grid-template-columns: repeat(10, 1fr);
      gap: 10px;
    
      margin: 0 auto 30px;
      background-color: #1a1a1a;
      padding: 20px;
    }

    .avatar {
      text-align: center;
      width: 80px;
      margin: 0 auto;
    }

    .avatar img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: block;
    }

    .avatar.taken img {
      filter: grayscale(100%) brightness(0.5);
    }

    .avatar.free img {
      filter: none;
      border: 2px solid rgb(159 232 112);
      box-shadow: 0 0 10px rgb(159 232 112);
    }

    .label {
      margin-top: 6px;
      font-size: 14px;
      padding: 4px 8px;
      border-radius: 3px;
      display: inline-block;
    }

    .taken .label {
      background-color: #222;
      color: white;
    }

    .free .label {
      background-color: rgb(159 232 112);
      color: black;
      font-weight: bold;
    }

   .warning-box {

  padding: 20px;
  border-radius: 10px;
  margin: 30px auto;
  text-align: left;
}

.warning-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
 
  padding: 16px 20px;
  border-radius: 10px;
 
  margin: 30px auto;
  gap: 20px;
  flex-wrap: wrap;
}

.icon {
  width: 34px;
  height: 34px;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.text {
 display: flex;
 align-items: center;
 gap: 20px;
}

.hurry {
  color: rgb(159 232 112);
  font-weight: bold;
  font-size: 30px;
  line-height: 1.2;
}

.spots {
  color: #fff;
  font-size: 30px;
}
.access-button {
  display: flex; 
  align-items: center;
  justify-content: space-between;
  width: 400px;
  height: 60px;
  text-align: left;
  background-color: rgb(159 232 112);
  color: #000;
  font-weight: bold;
  font-size: 25px;
 
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.access-button .arrow {
  color: black;
 
  animation: arrowMove 1.2s ease-in-out infinite;
}


@keyframes arrowMove {
    0% {
      transform: rotate(45deg) translateX(0);
    }
    50% {
      transform: rotate(45deg) translateX(6px); /* трохи менше зміщення */
    }
    100% {
      transform: rotate(45deg) translateX(0);
    }
  }

.access-button:hover {
    background-color: white;
    color: #000;
  }

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.card {
    background-color: #1a1a1a;
    border-radius: 10px;
    width: 260px;
    height: 362px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    box-sizing: border-box;
    text-align: left;
    align-items: flex-start;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.icon-box {
    background: radial-gradient(circle at center, #333 0%, #111 100%);
    height: 225px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #444;
    border-radius: 4px;
    margin-bottom: 20px;
}
.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content h3 {
    margin: 0 0 4px;
    font-size: 16px;
}
.card h3 {
    margin-bottom: 25px;
    color: white;
    margin: 0 0 8px;
    font-weight: normal;
    font-size: 18px;
}
.profit-info h2 {
  color: white;
  text-transform: none;
}
.value-with-indicator {
   
    margin: 0;
    gap: 6px;
}
.value-with-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 8px;
}
.value {
    font-size: 18px;
    color: rgb(159 232 112);
}
.circle-indicator {
    width: 10px;
    height: 10px;
    background-color: rgb(159 232 112);
    border-radius: 50%;
}
h2 {
  text-transform: uppercase;
  text-align: center;
    color: rgb(159 232 112);
    font-size: 50px;
    margin-top: 40px;
}
p.subtitle {
  text-align: center;
  color: white;
    font-size: 35px;
    margin-bottom: 40px;
}

.profit-header-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    
}

.profit-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.profit-info img {
    width: 60px;
    height: 50px;
}
.profit-info h2 {
    font-size: 40px;
}
.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border: 2px solid rgb(31 31 31);
    border-radius: 10px;
    background-color: #1a1a1a;
}
span {
    color: white;
}
.profit-box {
    font-size: 29px;
    color: rgb(159 232 112);
    min-width: 100px;
    text-align: right;
}


.video-wrapper {
  width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.js-player {
  border-radius: 15px;
}
.timer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
#countdown {
    font-size: 4em;
    color: #595959;
}
.registration-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 60px;
    flex-wrap: wrap;
}
.left-info {
    flex: 1 1 400px;
    color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
}

.left-info h2 {
    text-transform: uppercase;
    font-size: 42px;
    text-align: left;
    color: rgb(159 232 112);
    margin: 0;
}
.description {
  font-size: 25px;
}
.minitext {
  color: rgb(186 186 186);
  font-size: 20px;
    line-height: 1.4;
}
.marquee1 {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}
.marquee-content1 {
    display: inline-block;
    white-space: nowrap;
    animation: scrollLeftToRight 15s linear infinite;
}


.marquee {
    width: 100%;
    overflow: hidden;
    background-color: rgb(159 232 112);
    padding: 10px 0;
    margin-top: 40px;
}
.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}


@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}
@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
.marquee-content img {
     width: 187px;
    height: 38px;
}

.profit-info1 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 16px;
}

.registration-form {
    flex: 1 1 350px;
    max-width: 450px;
    padding: 30px 20px;
    border-radius: 10px;
}

.registration-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.registration-form input {
    padding: 12px;
    border: none;
    border-radius: 6px;
    background-color: #2a2a2a;
    color: white;
    font-size: 16px;
}
.registration-form button {
    padding: 12px;
    background-color: rgb(159 232 112);
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 16px;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.arrow {
    display: inline-block;
    margin-left: 8px;
    font-size: 22px;
    animation: bounce 1.2s infinite;
}
.arrow1 {
  color: rgb(159 232 112);
    font-size: 40px; /* зробимо більше для більшої "жерності" */
    margin-right: 20px; /* відступ між групами */
}
@keyframes scrollLeftToRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.info-image {
    width: 40px;
    height: auto;
}

.modal {
          display: none;
          position: fixed;
          z-index: 9999;
          left: 0; top: 0;
          overflow: auto;
          width: 100%; height: 100%;
          background-color: rgba(0,0,0,0.5);
        }
        .modal-content {
          background: #fff;
          margin: 2% auto;
          padding: 20px;
          width: 90%;
          border-radius: 8px;
          position: relative;
        }
        .close {
          position: absolute;
          right: 15px; top: 10px;
          font-size: 22px;
          cursor: pointer;
        }

       .mytext3 {
          text-align: justify;
        }
      .back-button {
      display: inline-block;
      margin-top: 30px;
      padding: 10px 20px;
      background-color: #1a73e8;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }
    .back-button:hover {
      background-color: #0f5ec4;
    }

.form__arrows, .form__arrows--centered {
  display: none;
}

.footer {
  background-color: #000; /* чорний фон */
  padding: 20px 10px;
  font-family: Arial, sans-serif;
}

.myfooter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  padding: 20px;
}

.miniblok {
  display: flex;
  align-items: center;
}

.logo {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.site-name {
  color: white;
  font-size: 26px;
  margin: 0;
}

.miniblok1 p {
  color: white;
  font-size: 20px;
  margin: 0;
}

.miniblok2 {
  margin-top: 10px;
}

.miniblok2 p {
  text-align: center;
  color: white;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}
.footer-links {
  display: none;
}




@media (max-width: 768px) {
  .header-right {
    display: none;
  }

  .video-wrapper {
    width: 100%;
  }
  #player {
    width: 100%;
   
}
  .container {
    display: flex;
    flex-direction: column;
  }
  .right-block h1 {
    font-size: 1.8rem;
    text-align: center;
  }
  .left-block h2 {
    font-size: 1rem;
    text-align: center;
  }
  .btn-watch {
    padding: 0px;
    font-size: 1.1rem;
    height: 65px;
  }
  .avatars {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }

  .avatar {
    width: 60px;
  }

  .avatar img {
    width: 60px;
    height: 60px;
  }

  .label {
    font-size: 12px;
    padding: 2px 6px;
  }

  .warning-box { 
    gap: 10px;
    padding: 16px;
  }

  .icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
    line-height: 26px;
  }

  .hurry {
    font-size: 16px;
  }

  .spots {
    font-size: 14px;
  }

  .access-button {
    width: 300px;
    text-align: center;
    padding: 12px;
    font-size: 15px;
  }
  .timer-wrapper {
    display: flex;
    flex-direction: column;
  }
  .myfooter {
    display: flex;
    justify-content: center;
  }
  .left-info h2 {
    font-size: 28px;
    text-align: center;
  }
  .card {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        height: auto;
        text-align: left;
        padding: 15px;
        gap: 15px;
    }
    .icon-box {
        width: 50px;
        height: 50px;
        margin: 0;
        border: none;
        background: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        border: 2px solid #444;
    }
    .icon-box img {
        width: 36px;
        height: 36px;

    }
      .text-content h3 {
      margin: 0 0 4px;
      font-size: 16px;
      }
     .profit-header-slider-container {
      display: flex;
      flex-direction: column;
     }
     .profit-info {
      display: flex;
      flex-direction: row;
     }
     .profit-info h2 {
      font-size: 22px;
      text-align: center;
      color: rgb(159 232 112);   
      margin-top: 19px;
     }
     .marquee1 {
      display: none;
     }
     .profit-info1 {
      display: flex;
      flex-direction: row;
      justify-content: center;
     }
     .description {
      font-size: 20px;
     }
     .form__arrows,.form__arrows--centered {
      display: block;
     }
     .form__arrow-down {
      fill: #43c300;
      width: 4.4rem;
      transform: rotate(90deg);
      animation: arrow-horizontal 1.5s ease-in-out infinite;
     }
     .registration-section {
      gap: 20px;
      padding: 0px;
     }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}
.miniblok1 {
  text-align: center;
}
.footer-links a:hover {
  text-decoration: underline;
}
.timer-text h2 {
  text-align: center;
  font-size: 30px;
}


}