* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #0f1419;
  color: #fff;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #1e3a52 100%);
  padding: 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  top: -300px;
  right: -300px;
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.2;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: relative;
  z-index: 100;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.nav-btn {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  text-decoration: none;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.hero-content {
  max-width: 1400px;
  margin: 60px auto;
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.movies-section-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.movies-title {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #fff 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.movies-subtitle {
  font-size: 18px;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 20px;
  color: #94a3b8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.features-quick {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cta-button {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  border: none;
  padding: 18px 50px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.4s;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
  display: inline-block;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
}

.movies-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 1000px;
}

.slider-container {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.movie-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 100%;
}

.movie-card:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
}

.movie-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.movie-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.movie-card:hover .movie-overlay {
  transform: translateY(0);
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #3b82f6;
  width: 30px;
  border-radius: 5px;
}

.stats {
  background: linear-gradient(135deg, #1a2332, #1e3a52);
  padding: 80px 5%;
  position: relative;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-box {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s;
}

.stat-box:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.how-to-use {
  padding: 100px 5%;
  background: #0f1419;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #fff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.step-card {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.8),
    rgba(30, 58, 82, 0.8)
  );
  border-radius: 20px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  transition: all 0.4s;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
}

.step-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

.step-description {
  color: #94a3b8;
  line-height: 1.6;
}

.packages {
  padding: 100px 5%;
  background: linear-gradient(135deg, #1a2332, #1e3a52);
}

.packages-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: linear-gradient(
    135deg,
    rgba(15, 20, 25, 0.9),
    rgba(26, 35, 50, 0.9)
  );
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  transition: all 0.4s;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
}

.package-card.popular {
  border-color: #06b6d4;
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.package-name {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

.package-price {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.package-duration {
  color: #94a3b8;
  margin-bottom: 30px;
}

.package-features {
  list-style: none;
  margin-bottom: 30px;
}

.package-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.package-features li:before {
  content: "✓";
  color: #3b82f6;
  font-weight: bold;
  margin-right: 10px;
}

footer {
  background: #0a0d12;
  padding: 40px 5%;
  text-align: center;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

footer p {
  color: #94a3b8;
  margin: 10px 0;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .movies-section-header {
    margin-top: 40px;
  }

  .movies-title {
    font-size: 28px;
  }

  .movies-subtitle {
    font-size: 16px;
  }

  .movies-showcase {
    display: none;
  }

  .slider-container {
    display: block;
  }

  .slider-dots {
    display: flex;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .movie-card img {
    height: 450px;
  }
}
