/* =========================================
   Orbit Feature Card Global Styles (V3)
   ========================================= */

/* --- Container & Mobile Adaptability --- */
.orbit-feature-card {
  max-width: 800px;
  margin: 0 auto;
  font-family: inherit;
  text-align: center;
  /* Default Desktop Padding */
  padding: 40px 20px;
}

/* Core Modification: Mobile Media Query */
@media (max-width: 768px) {
  .orbit-feature-card {
    /* Significantly reduced padding for mobile */
    /* Top/Bottom 30px, Left/Right 4px (Almost full width) */
    padding: 30px 4px;
  }
  
  /* Slightly smaller radius for mobile coordination */
  .orbit-video-wrapper {
      border-radius: 12px !important;
  }
}

/* --- Title Section --- */
.orbit-title-section {
  margin-bottom: 24px;
}

.orbit-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: inherit;
}

/* --- Video Wrapper & 3D Shadow --- */
.orbit-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  
  /* Core Modification: Enhanced 3D Shadow */
  /* Deeper, wider spread shadow to make it float on dark backgrounds */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4); 
  border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle shimmer border */
  
  transform: translateZ(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 32px;
}

.orbit-video-wrapper:hover {
  transform: translateY(-5px);
  /* Deeper shadow on hover for lifting effect */
  box-shadow: 0 35px 65px -15px rgba(0, 0, 0, 0.5);
}

.orbit-video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- Button & Shine Sweep Animation --- */
.orbit-action-area {
  display: flex;
  justify-content: center;
}

/* Keyframes for the shine effect */
@keyframes orbit-shine-sweep {
  0% {
    left: -100%; /* Start from outside left */
  }
  100% {
    left: 200%; /* End outside right */
  }
}

.orbit-cta-button {
  /* Must be relative and hidden to contain the shine beam */
  position: relative;
  overflow: hidden;
  
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  
  /* Frosted glass background */
  background-color: rgba(20, 20, 25, 0.75); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.3);
}

/* Core Modification: Using pseudo-element for the light beam */
.orbit-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /* Creating a tilted, faint white gradient beam */
  background: linear-gradient(
    120deg, 
    transparent, 
    rgba(255, 255, 255, 0.25), 
    transparent
  );
  transition: none; /* No transition by default */
}

/* Trigger animation on hover */
.orbit-cta-button:hover {
  background-color: rgba(20, 20, 25, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.4);
  color: #fff !important;
}

.orbit-cta-button:hover::before {
  /* Execute animation: sweep in 1s */
  animation: orbit-shine-sweep 1s ease-in-out;
}

.orbit-arrow {
  transition: transform 0.2s ease;
}
.orbit-cta-button:hover .orbit-arrow {
  transform: translateX(4px);
}