* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: white;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.overlay {
  position: absolute;
  inset: 0;
  /*background: rgba(0,0,0,0.55);*/
  background: transparent;
}

.live-badge,
.viewers {
  position: absolute;
  top: 25px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 18px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 14px;
  z-index: 5;
}

.live-badge {
  left: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.viewers {
  right: 25px;
}

.dot {
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
}

.mini-title {
  letter-spacing: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.hero h1,
.final-box h2,
.showcase h2 {
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.subtitle,
.showcase p,
.final-box p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  line-height: 1.8;
  max-width: 650px;
  margin: auto;
}

.cta-button,
.secondary-button {
  margin-top: 40px;
  padding: 18px 38px;
  border: none;
  border-radius: 999px;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-button {
  background: white;
  color: black;
}

.secondary-button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.cta-button:hover,
.secondary-button:hover {
  transform: scale(1.05);
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-line {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.1);
}

.progress {
  width: 30%;
  height: 100%;
  background: white;
  animation: loading 6s linear infinite;
}

@keyframes loading {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.benefits {
  padding: 120px 7%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  background: #050505;
}

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 30px;
}

.card h3 {
  margin-bottom: 20px;
  font-size: 28px;
}

.card p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.showcase {
  padding: 120px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.showcase-images img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
}

.offset {
  margin-top: 60px;
}

.final-cta {
  padding: 120px 7%;
}

.final-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 40px;
  padding: 80px 40px;
  text-align: center;
}

@media(max-width: 992px) {

  .benefits,
  .showcase {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .showcase h2,
  .final-box h2 {
    font-size: 30px;
  }

  .showcase-images {
    grid-template-columns: 1fr;
  }

  .offset {
    margin-top: 0;
  }

  .live-badge,
  .viewers {
    font-size: 12px;
    padding: 10px 14px;
  }
}