/* X8 PROFESSIONAL DRONE - Enhanced Beautiful Design */
.product-card-inner ::selection {
  background: rgba(255, 255, 255, 0.3);
  color: #000;
}
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
}

body {
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #000 !important;
  background-color: #000 !important;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0;
}

html {
  background: #000 !important;
  background-color: #000 !important;
}

/* Enhanced Hero Section */
.x8-hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px; /* Negative margin to account for fixed header */
  padding-top: 60px; /* Padding to push content below header */
  z-index: 1;
  background: #000 !important;
  background-color: #000 !important;
}

.x8-hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x8-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1);
  max-width: 100vw;
  max-height: 100vh;
}

.x8-hero::before {
  
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 107, 53, 0.05) 100%);
  z-index: -1;
}

.x8-hero-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
}

.x8-hero-title {
  font-size: clamp(24px,10vw,96px);
  font-weight: 700;
  margin-bottom: 1.5rem;
  /* background: linear-gradient(135deg, #ff6b35, #ff9500); */
  background-color: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: 2px;
  white-space: nowrap;
  overflow: visible;
  width: 100%;
}
@media (min-width: 320px) and (min-height: 568px) {/*small phone portrait*/
  .x8-hero-content {
    transform: translateY(150px);
    transition: all 1s ease-out;
  }
  .x8-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (min-width: 568px) and (min-height: 320px) {/*small phone landscape*/
  .x8-hero-content {
    transform: translateY(0px);
    transition: all 1s ease-out;
  }
}
@media (min-width: 375px) and (min-height: 666px) {/*medium phone portrait*/
  .x8-hero-content {
    transform: translateY(200px);
    transition: all 1s ease-out;
  }
}
@media (min-width: 666px) and (min-height: 375px) {/*medium phone landscape*/
  .x8-hero-content {
    transform: translateY(25px);
    transition: all 1s ease-out;
  }
}
@media (min-width: 425px) and (min-height: 755px) {/*large phone portrait*/
  .x8-hero-content {
    transform: translateY(250px);
    transition: all 1s ease-out;
  }
}
@media (min-width: 755px) and (min-height: 425px) {/*large phone landscape*/
  .x8-hero-content {
    transform: translateY(50px);
    transition: all 1s ease-out;
  }
}
@media (min-width: 768px) and (min-height: 1024px) {/*tablet portrait*/
  .x8-hero-content {
    transform: translateY(350px);
    transition: all 1s ease-out;
  }
  .x8-hero-title {
    font-size: 80px;
    transition: all 0.1s ease-out;
  }
}
@media (min-width: 1024px) and (min-height: 768px) {/*tablet landscape*/
  .x8-hero-content {
    transform: translateY(200px);
    transition: all 1s ease-out;
  }
  .x8-hero-title {
    font-size: 80px;
    transition: all 0.1s ease-out;
  }
}
@media (min-width: 576px) and (min-height: 1024px) {/*medium laptop portrait*/
  .x8-hero-content {
    transform: translateY(350px);
    transition: all 1s ease-out;
  }
}
@media (min-width: 1024px) and (min-height: 576px) {/*medium laptop landscape*/
  .x8-hero-content {
    transform: translateY(130px);
    transition: all 1s ease-out;
  }
  .x8-hero-title {
    font-size: 80px;
    transition: all 0.1s ease-out;
  }
}
@media (min-width: 810px) and (min-height: 1440px) { /*large laptop landscape*/
  .x8-hero-content {
    transform: translateY(500px);
    transition: all 1s ease-out;
  }
  .x8-hero-title {
    font-size: 80px;
    transition: all 0.1s ease-out;
  }
}
@media (min-width: 1440px) and (min-height: 810px) { /*large laptop landscape*/
  .x8-hero-content {
    transform: translateY(200px);
    transition: all 1s ease-out;
  }
}
@media (min-width: 2560px) and (min-height: 1440px) { /*4k landscape*/
  .x8-hero-content {
    transform: translateY(400px);
    transition: all 1s ease-out;
  }
  .x8-hero-title {
    font-size: 80px;
    transition: all 0.1s ease-out;
  }
}
@media (min-width: 1440px) and (min-height: 2560px) { /*4k portrait*/
  .x8-hero-content {
    transform: translateY(800px);
    transition: all 1s ease-out;
  }
}
.x8-hero-cta {
  display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 18px 40px;
   background: linear-gradient(135deg, #ff6b35, #ff9500);
   color: white;
   text-decoration: none;
   border-radius: 30px;
   font-weight: 600;
   font-size: 1.1rem;
   transition: all 0.4s ease;
   border: 2px solid transparent;
   min-width: 200px;
   position: relative;
   overflow: hidden;
 }
 
 .x8-hero-cta::before {
  
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
   transition: left 0.6s ease;
 }
 
 .x8-hero-cta:ilmer::before {
   left: 100%;
 }
 
 .x8-hero-cta:ilmer {
   transform: translateY(-3px);
   box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
   background: linear-gradient(135deg, #ff9500, #ffb347);
 }

/* Innovation Section */
.x8-innovation-section {
  padding: 120px 0;
  background: white !important;
  position: relative;
}

.x8-innovation-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.x8-innovation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.x8-innovation-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.x8-innovation-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.x8-innovation-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.x8-innovation-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #ff6b35;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.x8-innovation-intro {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.x8-innovation-description {
  font-size: 1.1rem;
  color: black;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.x8-innovation-image {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
  position: relative;
}

.x8-innovation-image.animate {
  opacity: 1;
  transform: translateX(0);
}

.x8-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.x8-image-container:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.x8-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
  transition: transform 0.4s ease;
}

.x8-image-container:hover img {
  transform: scale(1.02);
}

.x8-fullscreen-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.x8-fullscreen-icon svg {
  stroke: white;
}

.x8-image-container:hover .x8-fullscreen-icon {
  opacity: 1;
}

/* Fullscreen Image Styles */
.x8-image-container:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x8-image-container:-moz-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x8-image-container:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0 !important;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x8-image-container:-webkit-full-screen img {
  width: auto !important;
  height: auto !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}

.x8-image-container:-moz-full-screen img {
  width: auto !important;
  height: auto !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}

.x8-image-container:fullscreen img {
  width: auto !important;
  height: auto !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}

.x8-fullscreen-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.x8-image-container:hover .rd-fullscreen-icon {
  opacity: 1;
}

/* Performance Section */
.x8-performance-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.x8-performance-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.x8-performance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.x8-performance-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.x8-performance-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.x8-performance-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.x8-performance-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #ff6b35;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.x8-performance-description {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.x8-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.x8-feature-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.x8-feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

.x8-feature-item h4 {
  color: #ff6b35;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.x8-feature-item p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.x8-performance-video {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.x8-performance-video.animate {
  opacity: 1;
  transform: translateX(0);
}

.x8-video-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.x8-video-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.x8-video-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.x8-video-container:hover img {
  transform: scale(1.02);
}

/* Specifications Section */
.x8-specs-section {
  padding: 120px 0 0 0;
  background: black;
  position: relative;
}

.x8-specs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  pointer-events: none;
}

.x8-specs-container {
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.x8-specs-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.x8-specs-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.x8-specs-table {
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.x8-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
}

.x8-spec-row:last-child {
  border-bottom: none;
}

.x8-spec-row:hover {
  background: rgba(255, 107, 53, 0.05);
}

.x8-spec-label {
  font-size: clamp(0.8rem, 3.5vw, 1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.x8-spec-value {
  font-size: clamp(0.8rem, 3.5vw, 1rem);
  font-weight: 600;
  color: white;
  text-align: right;
}

@keyframes slideInRow {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* CTA Section */
.x8-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  position: relative;
  text-align: center;
}

.x8-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.x8-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 2rem;
  color: white;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.x8-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.x8-cta-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.x8-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid white;
  min-width: 180px;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: white;
}

.x8-cta-secondary:hover {
  background: white;
  color: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Explore More Section */
.x8-explore-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.x8-explore-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.x8-explore-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #000 0%, rgba(0, 0, 0, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.x8-explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.x8-explore-card {
  background:black;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
}

.x8-explore-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.x8-explore-card:hover {
   transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(255, 153, 0, 0.2);
  border-color: rgba(255, 153, 0, 0.3);
}

.x8-explore-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.x8-explore-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.x8-explore-card:hover .x8-explore-image img {
  transform: scale(1.05);
}

.x8-explore-content {
  padding: 2rem;
}

.x8-explore-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.x8-explore-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.x8-explore-link {
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.x8-explore-link:hover {
  color: #ff8c42;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .x8-hero-media img {
    object-fit: contain;
    padding: 20px;
  }

  .x8-innovation-content,
  .x8-performance-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .x8-performance-content {
    grid-template-areas:
      "video"
      "text";
  }

  .x8-performance-video {
    grid-area: video;
  }

  .x8-performance-text {
    grid-area: text;
  }
  
}

@media (max-width: 768px) {
  .x8-hero-media {
    padding: 10px;
  }

  .x8-hero-media img {
    object-fit: contain;
    padding: 15px;
    max-width: 95vw;
    max-height: 95vh;
  }

  .x8-hero-content {
    bottom: 60px;
    padding: 0 15px;
  }


  .x8-hero-cta {
    padding: 16px 35px;
    font-size: 1rem;
    min-width: 160px;
  }

  .x8-innovation-section,
  .x8-performance-section,
  .x8-specs-section,
  .x8-cta-section,
  .x8-explore-section {
    padding: 80px 0 0 0;
  }

  .x8-innovation-container,
  .x8-performance-container,
  .x8-specs-container,
  .x8-cta-container,
  .x8-explore-container {
    padding: 0 15px;
  }

  .x8-innovation-content,
  .x8-performance-content {
    gap: 2rem;
  }

  .x8-specs-grid {
    padding: 2rem;
  }

  .x8-spec-row {
    align-items: flex-start;
    gap: 0.5rem;
    padding: 14px 0;
  }

  .x8-explore-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .x8-feature-grid {
    gap: 1rem;
  }

  .x8-feature-item {
    padding: 1rem;
  }
  
  
}
@media(min-width:768px){
  .x8-spec-row {
    justify-content: left;
  }
  .x8-spec-label {
    min-width: 50%;
  }
}

@media (max-width: 480px) {
  .x8-hero-media {
    padding: 5px;
  }
  .x8-innovation-container,
  .x8-performance-container,
  .x8-specs-container,
  .x8-cta-container,
  .x8-explore-container {
    padding: 0 5px;
  }
  .x8-hero-media img {
    padding: 10px;
    max-width: 90vw;
    max-height: 90vh;
  }

  .x8-hero-content {
    bottom:70px;
  }

  .x8-hero-cta {
    padding: 14px 30px;
    font-size: 0.9rem;
    min-width: 140px;
  }

  .x8-innovation-section,
  .x8-performance-section,
  .x8-cta-section,
  .x8-explore-section {
    padding: 120px 5px;
  }

  .x8-specs-section{
    padding: 120px 0 0 0;
  }
  .x8-specs-grid {
    padding: 1.5rem;
  }

  .x8-explore-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .x8-explore-content {
    padding: 1.5rem;
  }
}

/* Animation delays for staggered effects */
.x8-explore-card:nth-child(1) {
  transition-delay: 0.1s;
}

.x8-explore-card:nth-child(2) {
  transition-delay: 0.2s;
}

.x8-explore-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Loading states */
body:not(.loaded) .x8-innovation-text,
body:not(.loaded) .x8-innovation-image,
body:not(.loaded) .x8-performance-text,
body:not(.loaded) .x8-performance-video,
body:not(.loaded) .x8-specs-container,
body:not(.loaded) .x8-explore-card {
  opacity: 0;
  transform: translateY(50px);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .x8-innovation-title,
  .x8-performance-title,
  .x8-specs-title,
  .x8-cta-title,
  .x8-explore-title {
    text-shadow: none;
  }

  .x8-hero-cta,
  .x8-cta-btn {
    border-width: 3px;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .x8-hero {
    height: 100vh;
  }

  .x8-hero-media {
    padding: 5px;
  }

  .x8-hero-media img {
    object-fit: contain;
    padding: 5px;
    max-width: 98vw;
    max-height: 98vh;
  }

  .x8-hero-content {
    bottom: 30px;
    padding: 0 10px;
  }


  .x8-hero-cta {
    padding: 12px 30px;
    font-size: 0.95rem;
    min-width: 150px;
  }
}

/* Very wide screens - ensure drone doesn't get too large */
@media (min-width: 1920px) {
  .x8-hero-media img {
    max-width: 1800px;
    max-height: 1000px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .x8-innovation-text,
  .x8-innovation-image,
  .x8-performance-text,
  .x8-performance-video,
  .x8-specs-container,
  .x8-explore-card,
  .x8-hero-cta,
  .x8-cta-btn,
  .x8-video-container,
  .x8-feature-item {
    transition: none;
    animation: none;
  }

  .x8-innovation-text,
  .x8-innovation-image,
  .x8-performance-text,
  .x8-performance-video,
  .x8-specs-container,
  .x8-explore-card {
    opacity: 1;
    transform: none;
  }
}

/* Loading States */
body:not(.loaded) .x8-hero-content {
  opacity: 0;
  transform: translateX(-50%) translateY(50px);
}

body.loaded .x8-hero-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: all 1s ease-out;
}

/* Mobile Background Fixes */
@media (max-width: 768px) {
  html, body {
    background: #000 !important;
    background-color: #000 !important;
  }

  

  
}

@media (max-width: 480px) {
  html, body {
    background: #000 !important;
    background-color: #000 !important;
  }

  .x8-hero {
    background: #000 !important;
    background-color: #000 !important;
    min-height: 100vh;
  }

}
