.home-container {
  font-family: 'Poppins', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 50px;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 45px;
  color: #161925;
  position: relative;
}

.hero-title span {
  background: linear-gradient(90deg, #0062FF, #00C6FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-size: 64px;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 320px;
  height: 4px;
  background: linear-gradient(90deg, #0062FF, #00C6FF);
  border-radius: 2px;
}

.hero-description {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
  position: relative;
  padding-left: 30px;
}

.hero-description::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  height: 80%;
  width: 4px;
  background: linear-gradient(to bottom, #0062FF, #00C6FF);
  border-radius: 2px;
}

.video-container {
  flex: 1;
  position: relative;
  perspective: 1000px;
  animation: slideInRight 0.8s 0.2s ease-out both;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.video-placeholder {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 350px;
  background: linear-gradient(45deg, #1a2a6c, #b21f1f, #0062FF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.video-container:hover .video-placeholder {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 30px 60px rgba(0, 98, 255, 0.2);
}

.video-mock {
    display: flex; 
    align-items: flex-start; 
    justify-content: center;
    height: 200px;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.4s ease;
}

.video-container:hover .play-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 2;
}

.play-button:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.play-button {
  animation: pulse 2s infinite;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 98, 255, 0.1), rgba(0, 198, 255, 0.1));
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.1), rgba(0, 98, 255, 0.1));
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
  100% { transform: translate(0, 0); }
}

@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-description {
    padding-left: 0;
  }
  
  .hero-description::before {
    display: none;
  }
  
  .video-container {
    max-width: 600px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 18px;
  }
  
  .video-placeholder {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .video-placeholder {
    height: 220px;
    font-size: 18px;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}