@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-title {
  font-family: var(--font-title);
}

/* Custom Split Transitions */
.split-container {
  display: flex;
  flex-direction: column-reverse;
  width: 100vw;
  min-height: 100vh;
}

.split-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  transition: opacity 1.4s cubic-bezier(0.15, 1, 0.3, 1);
}

.split-container:hover .split-side {
  /* Extremely gentle opacity contrast focus, 100% stable layout split (no structural width movements!) */
  opacity: 0.65;
  transition: opacity 1.4s cubic-bezier(0.15, 1, 0.3, 1);
}

.split-container .split-side:hover {
  opacity: 1;
}

@media (min-width: 1024px) {
  .split-container {
    flex-direction: row;
    height: 100vh;
    overflow: hidden;
  }
  .split-side {
    min-height: auto;
    height: 100%;
  }
  /* Layout remains perfectly locked 50/50 with zero structural column resizing on hover! */
  .split-container:hover .split-side {
    flex: 1;
    opacity: 0.6;
  }
  .split-container .split-side:hover {
    flex: 1;
    opacity: 1;
  }
}

/* Background image scale effect on hover */
.split-side .bg-zoom {
  /* Extremely slow, gentle 3% zoom over 1.8 seconds */
  transition: transform 1.8s cubic-bezier(0.15, 1, 0.3, 1);
}

.split-side:hover .bg-zoom {
  transform: scale(1.03);
}

/* Content fade & translate effects */
.split-side .side-content {
  /* Super smooth and slow transition for a microscopic 3px content rise */
  transition: transform 1.4s cubic-bezier(0.15, 1, 0.3, 1);
}

.split-side:hover .side-content {
  transform: translateY(-3px);
}


/* Custom Text Outline or Glow */
.text-glow-blue {
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.text-glow-white {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #171e30;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4a7fe5;
}

/* Micro-animations */
@keyframes pulse-slow {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.05); }
}

.animate-pulse-slow {
  animation: pulse-slow 8s infinite ease-in-out;
}

/* Card hover scaling */
.hover-card {
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.4);
}

/* Big Display TV Scaling (Responsive sizing root override) */
@media (min-width: 1800px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 2500px) {
  html {
    font-size: 22px;
  }
}
@media (min-width: 3500px) {
  html {
    font-size: 28px;
  }
}

/* Infinite Horizontal Marquee */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

/* Pulse animation for promotional play button */
@keyframes play-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.6);
  }
  70% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 15px rgba(2, 132, 199, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0);
  }
}

.animate-play-pulse {
  animation: play-pulse 2.2s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

/* Image zoom effect inside custom cards */
.group:hover .card-img-zoom {
  transform: scale(1.05);
}
.card-img-zoom {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrollbar removal utility for native scrolling containers */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}



