/* =========================================
   Skatrii Sushansa - Definitive Pixar Replica
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --color-primary: #000000;
  --color-background: #050505; /* Even darker for massive neon contrast */
  --color-white: #ffffff;
  --color-text-primary: #ffffff;
  --color-text-secondary: #aaaaaa;
  --color-footer-bg: #030303;
  --color-footer-text: #666666;
  --font-main: 'Roboto', sans-serif;
  --transition-slow: 1s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Holographic Tokens - Supercharged */
  --glow-blue: #00e5ff;     /* Brighter Cyan */
  --glow-red: #ff007f;      /* Neon Pink/Red */
  --glow-gold: #ffea00;     /* Vivid Gold */
  --glow-green: #00e676;    /* Vibrant Emerald */
  --glow-purple: #d500f9;   /* Saturated Purple */
  --glow-coral: #ff3d00;    /* Bright Coral */
  --glow-orange: #ff9100;   /* Bright Orange */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(0, 229, 255, 0.3);
  --glass-blur: blur(15px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-background);
  color: var(--color-text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  opacity: 1;
  transition: opacity 0.5s ease;
  position: relative;
}

/* --- Holographic Scanline Overlay --- */
body::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 10000;
  background-size: 100% 4px, 3px 100%;
  pointer-events: none;
  opacity: 0.3;
}

body::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 10001;
  pointer-events: none;
  animation: hologram-flicker 0.15s infinite;
}

@keyframes hologram-flicker {
  0% { opacity: 0.1; }
  100% { opacity: 0.15; }
}

body.glitch-pulse {
  animation: glitch-wave 0.2s linear;
}

@keyframes glitch-wave {
  0% { transform: translate(0); filter: hue-rotate(0deg); }
  20% { transform: translate(-2px, 1px); filter: hue-rotate(90deg); }
  40% { transform: translate(2px, -1px); filter: hue-rotate(180deg); }
  60% { transform: translate(-1px, 2px); filter: hue-rotate(270deg); }
  80% { transform: translate(2px, 1px); filter: hue-rotate(360deg); }
  100% { transform: translate(0); filter: hue-rotate(0deg); }
}

body.fade-out {
  opacity: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar - Clean Pixar style */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 5%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1000;
  gap: 3rem;
  background: transparent;
}

.nav-brand {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(90deg, var(--glow-blue), var(--glow-red), var(--glow-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-white);
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--glow-blue);
  text-shadow: 0 0 10px var(--glow-blue);
  transform: translateY(-2px);
}

/* Sections */
.section-header {
  padding: 2.5rem 0 1rem;
  text-align: center;
  background: var(--color-background);
}

.section-header h2 {
  font-size: 1.1rem;
  letter-spacing: 8px;
  font-weight: 500;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--glow-blue), var(--glow-purple), var(--glow-red), var(--glow-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Full Width Banners */
.banner {
  position: relative;
  width: 100vw;
  height: clamp(500px, 80vh, 1000px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 8s ease;
}

.banner:hover img {
  transform: scale(1.05); /* Subtle zoom like Pixar */
}

.banner-content {
  width: 100%;
  padding: 4rem 5%;
  text-align: center;
  color: var(--color-white);
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.banner-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  text-transform: none;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
}

.banner-content p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Text Blurb */
.text-blurb {
  padding: 5rem 10%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 300;
  background: linear-gradient(135deg, #0f0515 0%, #150005 100%);
  color: var(--color-text-primary);
  border-top: 1px solid rgba(255, 0, 127, 0.2);
  border-bottom: 1px solid rgba(255, 0, 127, 0.2);
}

.text-blurb a {
  font-weight: 700;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 2px;
}

/* Mega Footer */
.mega-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 6rem 5% 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  letter-spacing: 6px;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 1.2rem;
}

.footer-col a {
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.footer-bottom a:hover {
  color: var(--color-white);
}

/* Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .banner {
    height: 60vh;
  }
  .banner-content h1 {
    font-size: 2.5rem;
  }
}

/* =========================================
   Enriched Content Layouts
   ========================================= */

.content-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 5%;
  gap: 60px;
  flex-wrap: wrap;
}

.content-image {
  flex: 1;
  min-width: 300px;
}

.content-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.content-text {
  flex: 1;
  min-width: 300px;
}

.content-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.content-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.bg-gray {
  background: linear-gradient(135deg, #100b1a 0%, #0a0d15 50%, #150510 100%);
  color: var(--color-text-primary);
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  border-bottom: 1px solid rgba(213, 0, 249, 0.2);
}

.quote-block {
  padding: 100px 15%;
  text-align: center;
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.4;
  background: linear-gradient(135deg, #12051a 0%, #0d0820 50%, #05101a 100%);
  border-top: 1px solid rgba(213, 0, 249, 0.4);
  border-bottom: 1px solid rgba(0, 229, 255, 0.4);
  position: relative;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 10%;
  font-size: 10rem;
  color: var(--glow-purple);
  opacity: 0.15;
  font-style: normal;
  line-height: 1;
}

.quote-block p, .quote-block > *:not(cite) {
  background: linear-gradient(135deg, #ffffff 0%, var(--glow-purple) 50%, var(--glow-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quote-block cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 2rem;
  color: var(--color-text-secondary);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 80px 10%;
  text-align: center;
  background: linear-gradient(135deg, #080808 0%, #0a0515 100%);
}

/* Color each stat counter differently */
.data-item:nth-child(1) h3 { color: var(--glow-blue); text-shadow: 0 0 20px rgba(0,212,255,0.5); }
.data-item:nth-child(2) h3 { color: var(--glow-gold); text-shadow: 0 0 20px rgba(255,215,0,0.5); }
.data-item:nth-child(3) h3 { color: var(--glow-green); text-shadow: 0 0 20px rgba(0,255,136,0.5); }
.data-item:nth-child(4) h3 { color: var(--glow-coral); text-shadow: 0 0 20px rgba(255,107,107,0.5); }
.data-item:nth-child(5) h3 { color: var(--glow-purple); text-shadow: 0 0 20px rgba(168,85,247,0.5); }

.data-item h3 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.data-item p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* Red Dot Animation for Global Presence */
.red-dot {
  width: 10px;
  height: 10px;
  background: #ff0000;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .content-split {
    flex-direction: column;
    padding: 60px 5%;
  }
}

/* =========================================
   Magic Features - Preloader & Custom Cursor
   ========================================= */

/* Cursor */
.custom-cursor {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 11000;
  mix-blend-mode: difference;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  top: -20px;
  left: -20px;
}

.custom-cursor-inner {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 11001;
  top: -3px;
  left: -3px;
}

.cursor-hover {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .custom-cursor, .custom-cursor-inner {
    display: none;
  }
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15000;
  transition: opacity 1s ease, visibility 1s ease;
}

.preloader-logo {
  font-family: var(--font-main);
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 12px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  animation: logoFadeIn 2s ease forwards;
}

.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#magic-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3; /* Behind everything */
  pointer-events: none;
}

/* =========================================
   Marquee Animation
   ========================================= */

.marquee-wrapper {
  display: flex;
  width: 200%;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  width: 100%;
  justify-content: space-around;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* =========================================
   New Enhancements: Navigation & Progress
   ========================================= */

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 10001;
}

.scroll-progress-bar {
  height: 100%;
  background: var(--glow-blue);
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 8px var(--glow-blue);
}

/* Side Navigation Dots */
.side-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1000;
}

.side-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.side-nav-dot.active {
  background: var(--glow-blue);
  border-color: var(--glow-blue);
  box-shadow: 0 0 8px var(--glow-blue);
  transform: scale(1.5);
}

.side-nav-dot:hover {
  transform: scale(1.3);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--glow-red), var(--glow-orange));
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* =========================================
   New Enhancements: Sliders
   ========================================= */

.slider-container {
  width: 100%;
  height: clamp(500px, 100vh, 1000px);
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.slide.active img {
  transform: scale(1.1);
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* =========================================
   New Enhancements: Film Gallery
   ========================================= */

.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 4rem 5%;
  background: transparent;
}

.film-card {
  display: flex;
  flex-direction: column;
  padding: 0; /* Remove padding for poster-first look */
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.film-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.film-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.film-card:hover .film-poster img {
  transform: scale(1.1);
}

.film-card:hover .film-glow {
  opacity: 0.2;
}

.film-info {
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.8);
  border-radius: 0 0 15px 15px;
  flex-grow: 1;
}

.film-card:hover {
  border-color: var(--glow-blue);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

/* =========================================
   New Enhancements: Careers Grid
   ========================================= */

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 5%;
  background: transparent;
}

/* =========================================
   Floating Icons Decoration
   ========================================= */

.floating-icon {
  position: fixed;
  font-size: 2rem;
  opacity: 0.7;
  pointer-events: none;
  z-index: 10005;
  animation: floatUp 10s linear infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes floatUp {
  0% {
    transform: translateY(110vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}


.job-card {
  padding: 2.5rem;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-radius: 16px;
  color: var(--color-text-primary);
}

.job-card:hover {
  border-color: var(--glow-blue);
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
}

.job-category {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--glow-blue);
  margin-bottom: 1rem;
}

.job-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
}

.job-location {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.btn-secondary {
  align-self: flex-start;
  padding: 0.8rem 2rem;
  border: 1px solid var(--glass-border);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--color-text-primary);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--glow-blue);
  color: var(--glow-blue);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

/* =========================================
   Holographic & Glassmorphism Core
   ========================================= */

.hero-hologram {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-badge {
  background: var(--glow-gold);
  color: #000 !important;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(230, 174, 72, 0.4);
  margin-bottom: 2rem;
  z-index: 10;
  display: inline-block;
}

.hero-title-container {
  z-index: 10;
}

.hologram-title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.hologram-title .white { color: #fff; }
.hologram-title .red { 
  color: var(--glow-red); 
  text-shadow: 0 0 40px rgba(255, 0, 255, 0.8), 0 0 80px rgba(255, 0, 255, 0.4);
  animation: flicker 4s infinite;
}

.glass-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  z-index: 10;
  flex-wrap: wrap;
}

.tab-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 10px 25px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10;
  margin-top: 1rem;
}

.btn-primary-red {
  background: var(--glow-red);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 0, 60, 0.3);
  transition: all 0.3s ease;
  font-family: var(--font-main);
}

.btn-primary-gold {
  background: var(--glow-gold);
  color: #000 !important;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(230, 174, 72, 0.3);
  transition: all 0.3s ease;
  font-family: var(--font-main);
}

.btn-primary-red:hover, .btn-primary-gold:hover {
  transform: translateY(-5px);
  filter: brightness(1.2);
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: 0.5s;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card {
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.03);
}

/* --- Chromatic Aberration Hover --- */
.btn-primary-red:hover, .btn-primary-gold:hover, .btn-secondary:hover {
  text-shadow: 2px 0 rgba(255,0,0,0.5), -2px 0 rgba(0,255,255,0.5);
  animation: chromatic-move 0.3s infinite;
}

@keyframes chromatic-move {
  0% { text-shadow: 2px 0 rgba(255,0,0,0.5), -2px 0 rgba(0,255,255,0.5); }
  50% { text-shadow: -2px 0 rgba(255,0,0,0.5), 2px 0 rgba(0,255,255,0.5); }
  100% { text-shadow: 2px 0 rgba(255,0,0,0.5), -2px 0 rgba(0,255,255,0.5); }
}

/* --- Glitch Utility --- */
.hologram-glitch {
  position: relative;
  display: inline-block;
}

.hologram-glitch::before, .hologram-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.hologram-glitch::before {
  color: #ff00c1;
  z-index: -1;
  animation: glitch-anim 3s infinite linear alternate-reverse;
}

.hologram-glitch::after {
  color: #00fff0;
  z-index: -2;
  animation: glitch-anim2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip-path: inset(20% 0 30% 0); transform: translate(-2px, 2px); }
  100% { clip-path: inset(10% 0 40% 0); transform: translate(2px, -2px); }
}

@keyframes glitch-anim2 {
  0% { clip-path: inset(40% 0 10% 0); transform: translate(2px, 2px); }
  100% { clip-path: inset(30% 0 20% 0); transform: translate(-2px, -2px); }
}

/* Animations */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(255, 0, 60, 0.6));
  }
  20%, 24%, 55% {
    opacity: 0.5;
    filter: none;
  }
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  z-index: 10;
}

.scroll-dot {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--glow-blue), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  animation: scroll-slide 2s infinite cubic-bezier(0.7, 0, 0.3, 1);
}

@keyframes scroll-slide {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.hero-badge {
  animation: float 4s ease-in-out infinite;
}

.data-item h3 {
  animation: float 3s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Content Split Adjustments for Dark Mode */
.bg-gray {
  background: #0d0d0d;
}

.content-text h2 {
  color: var(--glow-blue);
  text-shadow: 0 0 15px rgba(39, 121, 167, 0.3);
}

/* Global Job Card Flip */
.job-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: #fff;
  transition: all 0.4s ease;
}

.job-card:hover {
  border-color: var(--glow-gold);
  box-shadow: 0 0 30px rgba(230, 174, 72, 0.1);
}

.job-card .btn-secondary {
  border-color: #fff;
  color: #fff;
}

.job-card:hover .btn-secondary {
  background: #fff;
  color: #000;
}
