/* Home Hero Section Styles */
.hero-section {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(236, 140, 255, 0.1), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(125, 145, 255, 0.1), transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

@media (min-width: 992px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
  }
}

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

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text h1 span {
  background: linear-gradient(90deg, #8c52ff 0%, #5ce1e6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #4a5568;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-video-container {
  flex: 1;
  max-width: 650px;
  perspective: 1000px;
}

.video-wrapper {
  position: relative;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 
              0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.video-wrapper:hover {
  transform: translateY(-10px) scale(1.02) rotate(1deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 
              0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
              rgba(0, 0, 0, 0) 0%, 
              rgba(0, 0, 0, 0.02) 70%, 
              rgba(0, 0, 0, 0.1) 100%);
  border-radius: 24px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 2;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: #ffffff;
}

.play-button i {
  color: #8c52ff;
  font-size: 32px;
  margin-left: 5px; /* For better visual centering of the triangle */
}

.browser-mockup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #f8f9fa;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot:nth-child(1) {
  background-color: #ff5f57;
}

.browser-dot:nth-child(2) {
  background-color: #ffbd2e;
}

.browser-dot:nth-child(3) {
  background-color: #28c940;
}

.browser-address {
  margin-left: 15px;
  height: 22px;
  flex-grow: 1;
  background: #e9ecef;
  border-radius: 5px;
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.video-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.modal-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

/* Gradient text effect for "New Revolution" */
.gradient-text {
  background: linear-gradient(90deg, #8c52ff, #ff5757, #5ce1e6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
  padding-right: 5px;
}

/* Floating animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 5s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-text {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-video-container {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 4rem 0;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button i {
    font-size: 24px;
  }
} 