@font-face {
  font-family: "AharoniWeb";
  src: url("fonts/Aharoni.woff2") format("woff2"),
       url("fonts/Aharoni.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AptosWeb";
  src: url("fonts/Aptos.woff2") format("woff2"),
       url("fonts/Aptos.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
}

body {
  overflow: hidden;
}

.landing-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #111;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateZ(0) scale(1.02);
  transition: opacity 1.6s ease, transform 1.6s ease;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.bg-slide.active {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0.5)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(94%, 1600px);
  text-align: center;
  padding: 32px 20px;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.logo-glow {
  position: relative;
  display: inline-block;
  animation: logoPulse 5.5s ease-in-out infinite;
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.logo-glow-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115%;
  height: 115%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 210, 0, 0.86) 0%,
    rgba(255, 175, 0, 0.46) 28%,
    rgba(220, 130, 0, 0.22) 50%,
    rgba(255, 140, 0, 0) 74%
  );
  filter: blur(11px);
  z-index: 0;
  opacity: 0.78;
  pointer-events: none;
}

.logo-image {
  position: relative;
  z-index: 1;
  width: clamp(140px, 16vw, 280px);
  height: auto;
  display: block;
}

@keyframes logoPulse {
  0% {
    transform: translateZ(0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translateZ(0) scale(1.04);
    opacity: 1;
  }
  100% {
    transform: translateZ(0) scale(1);
    opacity: 0.72;
  }
}

.hero-title {
  font-family: "AharoniWeb", "Arial Black", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 4.2vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 auto;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.hero-subtitle {
  margin-top: 20px;
  font-family: "AptosWeb", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.8vw, 3rem);
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.loading-dots {
  margin-top: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "AptosWeb", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  color: #fff;
}

.loading-dots span {
  display: inline-block;
  animation: dotPulse 1.2s infinite ease-in-out;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%,
  80%,
  100% {
    opacity: 0.28;
    transform: translateZ(0) translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateZ(0) translateY(-6px);
  }
}

@media (max-width: 1024px) {
  .hero-content {
    width: min(94%, 1200px);
  }

  .hero-title {
    font-size: clamp(1.2rem, 4.6vw, 4rem);
    letter-spacing: 0.05em;
  }

  .hero-subtitle {
    font-size: clamp(1.2rem, 2.8vw, 2.2rem);
    letter-spacing: 0.12em;
  }
}

@media (max-width: 768px) {
  .hero-content {
    width: min(94%, 760px);
    padding: 24px 16px;
    transform: translateY(-90px);
  }

  .logo-wrap {
    margin-bottom: 18px;
  }

  .logo-glow {
    animation: logoPulse 6s ease-in-out infinite;
  }

  .logo-glow-layer {
    width: 108%;
    height: 108%;
    filter: blur(8px);
    opacity: 0.62;
  }

  .logo-image {
    width: clamp(120px, 32vw, 200px);
  }

  .hero-title {
    font-size: clamp(0.95rem, 5.3vw, 2.2rem);
    letter-spacing: 0.03em;
  }

  .hero-subtitle {
    margin-top: 12px;
    font-size: clamp(1rem, 3.2vw, 1.5rem);
    letter-spacing: 0.08em;
  }

  .loading-dots {
    margin-top: 18px;
    gap: 6px;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 20px 12px;
    transform: translateY(-105px);
  }

  .hero-title {
    font-size: clamp(0.82rem, 5vw, 1.3rem);
    letter-spacing: 0.02em;
  }

  .hero-subtitle {
    margin-top: 10px;
    font-size: clamp(0.9rem, 3.8vw, 1.1rem);
    letter-spacing: 0.05em;
  }

  .loading-dots {
    margin-top: 14px;
  }
}