/* ===== Загальні стилі ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Ladylike BB";
  src: url("fonts/LadylikeBB.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Highspeed";
  src: url("fonts/Highspeed.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Womby";
  src: url("fonts/Womby.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Ladylike BB", cursive, sans-serif;
  color: #fff;
  background: #000;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Womby", sans-serif;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Privacy Policy Page */
.privacy {
  padding: 60px 20px;
}

.privacy .container {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Ladylike BB', cursive;
  font-size: 25px;
  line-height: 1.6;
  color: #fff;
}

.privacy h1, .privacy h2 {
  font-family: 'Womby', sans-serif;
  margin-bottom: 20px;
  margin-top: 40px;
  color: #4BCFFF;
}

.privacy .date {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
}

.privacy ul {
  margin: 15px 0 20px 20px;
  list-style: disc;
}

.back-home {
  margin-top: 50px;
  text-align: center;
}

.back-home .btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
  text-decoration: none;
}

.back-home .btn:hover {
  background: #ffaa00;
}


/* Початковий стан (невидимий, трохи зміщений) */
.reveal {
  opacity: 0;
  transform: translateX(100px); /* по дефолту "з правого боку" */
  transition: all 0.8s ease-in-out;
}

/* Коли з’являється */
.reveal.active {
  opacity: 1;
  transform: translateX(0);
}

/* Варіант зліва */
.reveal-left {
  transform: translateX(-100px);
}


.checklist {
  list-style: none; /* прибираємо стандартні маркери */
  padding-left: 0;
}

.checklist li {
  position: relative;
  padding-left: 35px; /* відступ для іконки */
  margin-bottom: 15px;
  font-size: 2.1rem;
}

.checklist li::before {
  content: "✔"; /* символ галочки */
  position: absolute;
  left: -5%;
  top: 31%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #00c8ff; /* колір галочки */
  background: #00000000; /* прозорий фон кола */
  border-radius: 50%; /* кружечок */
  border: 2px solid #00c8ff; /* рамка кола */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}


.btn {
  font-family: "Womby", sans-serif;
  display: inline-block;
  padding: 12px 28px;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 6px;
  transition: background 0.3s;
  text-align: center;
  width: auto;            /* 🔹 щоб не тягнулась */
  max-width: 400px;       /* 🔹 обмеження для великих екранів */
  white-space: nowrap;    /* 🔹 текст не переноситься */
}

.btn:hover {
  background: #ffaa00;
}

/* ===== Hero Section ===== */
.hero {
  display: flex;
  align-items: stretch;    /* 🔹 обидві частини однакової висоти */
  justify-content: space-between;
  min-height: 100vh;
  position: relative;
}

.hero-content {
  flex: 1;
  padding: 60px;           /* 🔹 відступи тільки для тексту */
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-content h1 {
  font-family: "Highspeed", sans-serif;
  color: #000000;
  font-size: 4.5rem;
  margin-bottom: 20px;
  line-height: 1;

  /* Неонове світіння */
  text-shadow: 
    0 0 5px #4BCFFF,
    0 0 10px #4BCFFF,
    0 0 20px #4BCFFF,
    0 0 40px #4BCFFF,
    0 0 80px #4BCFFF;

  /* Анімація пульсації */
  animation: neonPulse 1.5s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  0% {
    text-shadow: 
      0 0 5px #4BCFFF,
      0 0 10px #4BCFFF,
      0 0 20px #4BCFFF,
      0 0 40px #4BCFFF,
      0 0 80px #4BCFFF;
  }
  100% {
    text-shadow: 
      0 0 10px #4BCFFF,
      0 0 20px #4BCFFF,
      0 0 30px #4BCFFF,
      0 0 50px #4BCFFF,
      0 0 100px #4BCFFF;
  }
}

.hero-content p {
  margin-bottom: 50px;
  font-size: 2.1rem;
  max-width: 600px;
  line-height: 1;
 
}

    .hero-content .btn {
  align-self: flex-start;   /* 🔹 кнопка прилипає зліва */
}

.hero-video {
  flex: 1;
  position: relative;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* За замовчуванням ховаємо мобільне відео */
#video-mobile {
  display: none;
}

/* Mobile: відео фоном */
@media (max-width: 991px) {
     #video-desktop {
    display: none;
  }
  #video-mobile {
    display: block;
    object-position: top; /* 🔹 вирівнюємо відео по верху */
  }
    .hero-title {
        margin-top:50vh;
    }
    
.hero-content h1 {

  font-size: 2.5rem;

  }


  .hero-content .btn {
    align-self: center;     /* 🔹 на мобільному по центру */
  }

  .hero {
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    text-align: center;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

 .hero-content {
  /* Градієнт від чорного до прозорого, чорний займає верхні 30% */
  background: linear-gradient(to top, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);

  padding: 40px 20px;
  z-index: 2;
  width: 100%;
}
}

/* ===== Swiper Custom ===== */
.slider {
  padding-top: 40px;
}

.swiper {
  width: 100%;
}

.swiper-slide img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.0;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 0.0;
}


/* Mobile: по одній картинці */
@media (max-width: 991px) {
  .slider-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA Section ===== */
.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
 
  gap: 20px;
  max-width: 900px;   /* 🔹 обмеження ширини */
  margin: 0 auto;     /* 🔹 центровано */
  border-radius: 12px;
}

.cta p {
  font-size: 2.1rem;
    line-height: 1;
}

@media (max-width: 768px) {
  .cta {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Arrival Section (відео з очима) ===== */
.arrival {
  padding: 0; /* прибрав зайві відступи */
  text-align: center;
}

.arrival h2 {
    color:#4BCFFF;
 display: block;
  width: 100%;             /* на всю ширину */
  font-size: clamp(2rem, 6vw, 4rem);  /* 🔹 гнучкий розмір */
  line-height: 1;
  text-align: center;       /* по центру */
  margin: 0;
  padding: 40px 20px;
  background: #000;         /* темний фон для контрасту */
  font-family: "Womby", sans-serif; /* гарантовано жирний */
  letter-spacing: 2px;      /* трохи більше простору */
  
}

.arrival video {
  width: 100%;          /* 🔹 на всю ширину */
  height: auto;
  border-radius: 0;     /* 🔹 без закруглень */
  display: block;
  margin-bottom: 20px;
}

/* ===== Cover Section ===== */
.cover {
  position: relative;
  text-align: center;
}

.cover img {
  width: 100%;
  display: block;
}

.cover h2 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  font-size: clamp(1.5rem, 6vw, 4rem); /* зменшили мінімум */
  transform: translateX(-50%);
  line-height: 1;
  padding: 10px 20px;
  border-radius: 8px;

  white-space: nowrap; /* не переносимо на новий рядок */
  overflow: hidden;    /* приховуємо зайве, якщо не влазить */
  text-overflow: ellipsis; /* додаємо три крапки, якщо обрізано */
}



/* ===== Character Info ===== */
.character {
  padding: 60px 20px;
  text-align: center;
}

.character p {
  font-size: 2.1rem;
    line-height: 1;
}

.character h3 {
    font-size: 3.5rem;
  color: #00c8ff;
  margin: 20px 0;
  
}

/* ===== Signup Section ===== */
.signup {
  display: flex;
  gap: 40px;
  padding: 60px 20px;
  align-items: center;
  max-width: 1000px;   /* 🔹 звужено */
  margin: 0 auto;      /* 🔹 по центру */

  border-radius: 12px;
}

.signup-img {
  flex: 1;
}

.signup-img img {
  width: 100%;
  border-radius: 12px;
}

.signup p {
    font-size: 2.1rem;
}

.signup h2 {
font-size: 3.1rem;
line-height: 1;
}
.signup-form {
  flex: 1;
}

.signup-form ul {
  margin: 20px 0;
  padding-left: 20px;
  font-size: 2.1rem;
  text-align: left;
}

.signup-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.signup-form input[type="text"],
.signup-form input[type="email"] {
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}
.signup-form button {
      border: none;
    
}

.signup-form label {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile */
@media (max-width: 991px) {
  .signup {
    flex-direction: column;
    text-align: center;
  }
  
}

/* ===== Footer ===== */
.footer {
  padding: 40px 20px;
  text-align: center;
  
}

.footer .socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.socials a svg path {
  fill: #ffffff; /* білий колір для всіх іконок */
}

.footer a {
  color: #00c8ff;
}

.footer p {
  font-size: 2.1rem;
    line-height: 1;
}

.footer .small {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 20px;
}
