
    :root {
  --background-color: #0a0a0a;
  --overlay-color: rgba(0, 0, 0, 0.6);

  --primary-text-color: #ffffff;
  --secondary-text-color: #c0c0c0;
  --highlight-text-color: #ff3503;
  --link-text-color: #f0f0f0;

  --accent-color-1: #ff3503;
  --accent-color-2: #00bcd4;
  --accent-color-3: #8e44ad;

  --button-bg-color: #ff3503;
  --button-text-color: #ffffff;
  --button-hover-color: #ff3503;

  --border-color: #ff3503;
  --shadow-color: rgba(255, 107, 0, 0.3);
  --dark-bg: #0a0a0f;
  --text-light: #e0e0ff;
  --transition: 0.4s ease;
}
    
    
    
    
    body {
        margin: 0;
       font-family: 'Orbitron', sans-serif !important;
        background-color: #0f0f0f;
        color: white;
        overflow: hidden;
    }

    
    .container {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 0.6s ease, transform 0.6s ease;
        background: #0f0f0f;
    }
    .hidden {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.98);
    }

    /* Back Button Style */
    .back-btn {
        position: fixed;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        background: #ff4500;
        color: white;
        border: none;
        padding: 12px 18px;
        border-radius: 50px;
        font-weight: bold;
        font-size: 1rem;
        cursor: pointer;
        box-shadow: 0 0 20px rgba(255,69,0,0.8);
        z-index: 9999;
        transition: background 0.3s, box-shadow 0.3s;
    }
    .back-btn:hover {
        background: #ff6347;
        box-shadow: 0 0 25px rgba(255,99,71,1);
    }

    /* HOMEPAGE */
    #mainPage {
        flex-direction: column;
        text-align: center;
        overflow: hidden;
    }
    .profile-pic {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 1rem;
        animation: fadeUp 0.8s ease forwards;
    }
    h1 {
        margin-bottom: 1.5rem;
        animation: fadeUp 1s ease forwards;
    }
    .question {
        background: #1e1e1e;
        padding: 12px 20px;
        border-radius: 8px;
        margin: 8px 0;
        cursor: pointer;
        width: 300px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.3s, transform 0.3s;
        opacity: 0;
        animation: fadeUp 0.8s ease forwards;
    }
    .question:hover {
        background: #333;
        transform: scale(1.03);
    }
    .footer {
        margin-top: 2rem;
        font-size: 0.8rem;
        color: #bbb;
        opacity: 0;
        animation: fadeUp 1s ease forwards;
    }
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }


    /* PAGE A - workstation */
/* Section container */
.section-workstation {
  padding: 80px 6vw;
  background: linear-gradient(120deg, #0a0a0a 60%, #111 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #e0e0e0;
}

/* Section title */
.section-workstation .section-title {
  position: relative;
  top: 2rem;
  right: 22rem;
  font-size: 4.6rem !important;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff3503, #d44300);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  z-index: 1;
}

/* Video gallery wrapper */
.video-gallery {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  width: 100%;
 z-index: 3;
}

/* Individual video card */
.video-box {
  position: relative;
  top: 10rem;
  width: 280px;
  height: 390px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 53, 3, 0.2);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.45s;
}


.video-box:hover {
  transform: translateY(-15px) scale(1.05) rotate(-1deg);
  box-shadow: 0 0 50px #ff3503, 0 0 90px #d46600, 0 0 140px #050803;
  border-color: #ff3503;
}

/* Video inside card */
.video-box .video-content {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* cover para lumabas buong video */
  border-radius: 24px;
}

/* Overlay text at bottom */
.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 22px 0 18px;
  
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ff3503;
  letter-spacing: 2px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0.2) 100%);
  backdrop-filter: blur(14px);
  text-transform: uppercase;
  border-top: 2px solid #ff3503;
  box-shadow: inset 0 -2px 32px rgba(63, 62, 62, 0.6);
  z-index: 2;
  transition: all 0.3s ease;
}

.video-box:hover .video-overlay {
  background: linear-gradient(90deg, #000000 40%, #ff5500 100%);
  color: #111;
  box-shadow: inset 0 -2px 40px #310a01;
}

/* Text under gallery */
.video-text {
  text-align: center;
  max-width: 800px;
  margin: 50px auto 0;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
  z-index: 1;
}

    
    /* Workstation Section */
#workstation {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 60px 20px;
  background: #0f0f0f;
  color: #fff;
  text-align: center;
 

}

#workstation .section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--button-bg-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.video-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.video-box {
  position: relative;
  width: 320px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 12px;
  font-size: 1.1rem;
  text-align: center;
  transition: background 0.3s ease;
}

.video-box:hover .video-overlay {
  background: var(--button-hover-color);
  color: #000;
  font-weight: bold;
}

.video-text {
  margin-top: 12rem;
  font-size: 1.2rem;
  font-style: italic;
  color: #ffffff;
  min-height: 30px;
  transition: opacity 0.3s ease;
}


/* ✅ Responsive Adjustments */

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(0, 0, 0);
}

.hero-spline {
  position: absolute;
 background-color: #000 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 0;
}


/* ===== Tablets - Portrait ===== */
@media (max-width: 1024px) and (orientation: portrait) {
  .section-workstation {
    padding: 20px 5vw;
  }

  .section-workstation 
  .section-title {
    position: relative;
    top: 10%;
    font-size: 2.7rem !important;
    right: 10rem;
  }

 /* Grid layout for video gallery */
.video-gallery {
  display: grid;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 35px !important; /* space between items */
  justify-items: center;
  z-index: 3;
}

/* Make sure videos scale nicely */
.video-box {
  width: 100%;
  max-width: 100%; /* para hindi masyado lumaki sa tablet */
  max-height: 260px;
  height: auto;
  aspect-ratio: 16 / 9; /* keep vertical proportion like TikTok style */
  
}
  .video-overlay {
    font-size: 1rem;
    padding: 18px 0 14px;
  }

  .video-text {
    position: relative;
    top: 5%;
    font-size: 1.2rem;
  }


.video-box:hover,
.video-box:active {
  transform: translateY(-15px) scale(1.05) rotate(-1deg);
  box-shadow: 0 0 50px #ff3503, 0 0 90px #d46600, 0 0 140px #050803;
  border-color: #ff3503;
}

.video-box:active .video-overlay {
  background: linear-gradient(90deg, #000000 40%, #ff5500 100%);
  color: #111;
}


  .hero-spline-text {
  position: absolute;
  top: 95% !important;
  left: 81% !important;
  font-size: 10px !important;
  z-index: 2;
  border-radius: 10px;
}
}

/* ===== Tablets - Landscape ===== */
@media (max-width: 1524px) and (orientation: landscape) {
  .section-workstation {
    padding: 50px 4vw;
  }

  .section-workstation 
  .section-title {
    position: relative;
    top: 100px;
    font-size: 3rem !important;
    right: 15rem;
  }

 /* Grid layout for video gallery */
.video-gallery {
  display: grid;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr); /* 2 columns */
  gap: 35px !important; /* space between items */
  justify-items: center;
  z-index: 3;
}

/* Make sure videos scale nicely */
.video-box {
  width: 100%;
  max-width: 100%; /* para hindi masyado lumaki sa tablet */
  max-height: 360px;
  height: auto;
  aspect-ratio: 16 / 9; /* keep vertical proportion like TikTok style */
}
  .video-overlay {
    font-size: 1rem;
    padding: 18px 0 14px;
  }

  .video-text {
    position: relative;
    font-size: 1.2rem;
    left: 60px;
    top: -100px;

  }

  .logo{
    margin-right: 20px;
  }
 
  .nav-links,.nav-active, a{
  font-size: 10px !important;
  gap: 2px !important;

}

  .video-box:hover,
.video-box:active {
  transform: translateY(-15px) scale(1.05) rotate(-1deg);
  box-shadow: 0 0 50px #ff3503, 0 0 90px #d46600, 0 0 140px #050803;
  border-color: #ff3503;
}

.video-box:active .video-overlay {
  background: linear-gradient(90deg, #000000 40%, #ff5500 100%);
  color: #111;
}


  .hero-spline-text {
  position: absolute;
  top: 93% !important;
  left: 85% !important;
  font-size: 10px !important;
  z-index: 2;
  border-radius: 10px;
}
}

/* ===== Mobile - Portrait ===== */
@media (max-width: 768px) and (orientation: portrait) {
  .section-workstation {
    padding: 40px 3vw;
  }

 .section-workstation 
  .section-title {
    position: relative;
    top: 19%;
    font-size: 1rem !important;
    right: 0.2rem;
  }

 /* Grid layout for video gallery */
.video-gallery {
  display: grid;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(1, 1fr); /* 2 columns */
  gap: 35px !important; /* space between items */
  justify-items: center;
  z-index: 3;
}

/* Make sure videos scale nicely */
.video-box {
  position: relative;
  top: 8rem !important;
  width: 100%;
  max-width: 75%; /* para hindi masyado lumaki sa tablet */
  max-height: 260px;
  height: auto;
  aspect-ratio: 16 / 9; /* keep vertical proportion like TikTok style */
}
  .video-overlay {
    font-size: 1rem;
    padding: 18px 0 14px;
  }

  .video-text {
    font-size: 1.2rem;
  }


.video-box:hover,
.video-box:active {
  transform: translateY(-15px) scale(1.05) rotate(-1deg);
  box-shadow: 0 0 50px #ff3503, 0 0 90px #d46600, 0 0 140px #050803;
  border-color: #ff3503;
}

.video-box:active .video-overlay {
  background: linear-gradient(90deg, #000000 40%, #ff5500 100%);
  color: #111;
}


  .hero-spline-text {
  position: absolute;
  top: 93.4% !important;
  left: 60% !important;
  font-size: 10px !important;
  z-index: 2;
  border-radius: 10px;
}
}

/* ===== Mobile - Landscape ===== */
@media (max-width: 1024px) and (orientation: landscape) {
    .video-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px !important;

    }


   .video-overlay {
  position: absolute;
  bottom: 0; /* pwede palitan ng top, left, right */
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  font-size: 1rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  max-height: 50%; /* para hindi lumabas sa video */
  overflow-y: auto; /* scroll sa overlay kung mahaba */
}
      .video-overlay, h1{
        font-size: 10px;
    }
    .video-box{
      position: relative !important;
      max-width: 100%;
      max-height: 180%;
      align-items: center !important;
      top: 5rem !important;
    }

    .video-content{
      border-radius: 1px !important;
    }

      .hero-spline-text {
  position: absolute;
  top: 82% !important;
  left: 76% !important;
  font-size: 10px !important;
  z-index: 2;
  border-radius: 10px;
}
 
.section-title{
  position: relative;
  top: 40% !important;
  left: 10px;

}

.section-workstation{
  margin-top: 20px;
  height: 100vh !important;
  width: 100% !important;
}

nav{
  width: 100% !important;
 
}
.nav-links,.nav-active, a{
  font-size: 17px !important;
  gap: 20px !important;

}

.video-text {
  position: relative;
  top: -40%;
  left: 10px;
  font-size: 18px !important;
}
}




    /* PAGE B - YouTube Gallery */

.video-book {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh; /* buong taas ng screen */
  padding: 3rem;
  background: var(--dark-bg);
  color: var(--text-light);
  gap: 2rem;
}

/* Left side details */
.video-details {
  position: relative;
  flex: 1;
  background: linear-gradient(135deg, rgba(180, 14, 14, 0.03), rgba(255,255,255,0.01));
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(189, 50, 8, 0.6);
  transition: all 0.4s ease;
}
.video-details img {
  max-width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* Right side thumbnails */
.video-thumbnails {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem; /* normal spacing */
}

/*  extra gap after first row */
.video-thumbnails .video-thumb:nth-child(1),
.video-thumbnails .video-thumb:nth-child(2),
.video-thumbnails .video-thumb:nth-child(3) {
  margin-bottom: 5rem; /* adjust to taste */
}

.video-thumb {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.5rem;
}
.video-thumb img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  -webkit-box-reflect: below -20px
    linear-gradient(to bottom, rgba(0,0,0,0.25), transparent 70%);
}

.video-thumb:hover {
  transform: scale(1.08) rotateY(-5deg);
  box-shadow: 0 0 20px var(--accent-color-1);
}


/*tablet mode portrait*/
@media (max-width: 768px) {
 .video-details{
  position: absolute;
  padding: 10px;
  top: 110%;
  width: 60vh;
 }
 


.video-book{
   position:absolute;
  left: 4rem;
  bottom: 65rem;
}

 .video-thumbnails{
   position: absolute;
   top: 147%;
   width: 60vh;
   margin-top: 2rem;
 }
  .video-thumb:hover {
    transform: scale(1.05) rotateY(-5deg);
  }
}


/*tablet mode landscape*/
@media (max-width: 1224px) and (orientation: landscape) {
  .video-details{
    position: absolute;
    top: 110%;
    left: 15%;
    width: 100vh;
   }

  
   .video-thumbnails{
     position: absolute;
     top: 170%;
     left: 8%;
     width: 120vh;
     grid-template-columns: repeat(6, 1fr);
     gap: 1.5rem; /* normal spacing */
   }
    .video-thumb:hover {
      transform: scale(1.05) rotateY(-5deg);
    }
}

    /* PAGE C - Glen Who */
    #pageC {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        gap: 40px;
    }
    .image-area {
        flex: 1;
        position: relative;
    }
    .image-area img {
        width: 100%;
        border-radius: 12px;
        position: absolute;
        top: 0; left: 0;
        opacity: 0;
        transition: opacity 1s ease;
    }
    .image-area img.active {
        opacity: 1;
    }
    .text-area {
        flex: 1;
    }
    .text-option {
        padding: 10px;
        margin: 10px 0;
        background: #222;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s;
    }
    .text-option:hover {
        background: #333;
    }

    

/* Hide default cursor */
body {
  cursor: none;
}

/* Smoke container */
#smoke {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}



/* Particle element */
.smoke-particle {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 53, 3, 0.3) 0%,
    rgba(255, 53, 3, 0) 80%
  );

  animation: smokeFade 1s ease-out forwards;
  pointer-events: none;
}

/* Smoke animation */
@keyframes smokeFade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(5) translateY(-10px);
    opacity: 0;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;         /* full viewport */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.hero-spline-text {
  position: absolute;
  top: 94%;
  left: 90.2%;
  transform: translate(-50%, -50%);
  
  width: 170px;
  height: 40px;
  background: #050505;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Orbitron', sans-serif; /* Futuristic font */
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 4px;

  text-shadow:
    0 0 5px #c0c0c0,
    0 0 10px #ff3503,
    0 0 20px #ff3503,
    0 0 40px #c0c0c0;

  animation: glitch 2s infinite;
  z-index: 2;
   pointer-events: none;
}








/* duplicate layers for glitch */
.hero-spline-text::before,
.hero-spline-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 25%;
  width: 100%;
  overflow: hidden;
}

.hero-spline-text::before {
  color: #ff3503;
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.hero-spline-text::after {
  color: #c0c0c0;
  animation: glitchBottom 1.5s infinite linear alternate-reverse;
}

/* animations */
@keyframes glitch {
  0% { transform: none; }
  20% { transform: skew(-5deg); }
  40% { transform: skew(5deg); }
  60% { transform: skew(-2deg); }
  80% { transform: skew(2deg); }
  100% { transform: none; }
}

@keyframes glitchTop {
  0% { clip: rect(0, 9999px, 0, 0); }
  10% { clip: rect(0, 9999px, 50px, 0); transform: translate(-3px, -2px); }
  20% { clip: rect(0, 9999px, 0, 0); }
}

@keyframes glitchBottom {
  0% { clip: rect(0, 9999px, 0, 0); }
  10% { clip: rect(50px, 9999px, 100px, 0); transform: translate(3px, 2px); }
  20% { clip: rect(0, 9999px, 0, 0); }
}

@keyframes switchColor {
  to {
    background: #060606;
  }
}



/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
}

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

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 12px;
  transition: color 0.3s ease;
  margin-right: 50px;
}

.nav-links a:hover {
  color: var(--button-hover-color);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Navigation for tablet */
@media (min-width: 740px) and (max-width: 1024px) {

  .video-overlay {
    position: absolute;
    left: 7.7rem !important;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;

    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 12px;
}
  nav {
    padding: 1rem 1.8rem;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    display: none;
  }

  /* ✅ Use the same class from JavaScript: .nav-active */
  .nav-links.nav-active {
    display: flex;
  }

  .nav-links a {
    margin-right: 0;
    font-size: 1.2rem;
    letter-spacing: 5px;
  }

  .burger {
    display: block;
  }
}

/* Navigation for mobile */

@media (max-width: 768px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 1.2rem;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    display: none;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin-right: 0;
    font-size: 1.1rem;
    letter-spacing: 4px;
  }

  .burger {
    display: block;
  }

  .burger div {
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {






  .nav-links {
    position: absolute;
    right: 0px;
    height: 100vh;
    top: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    z-index: 1000;
  }

  .nav-links a {
    opacity: 0;
  }

  .burger {
    display: block;
    z-index: 1001;
  }

  .nav-active {
    transform: translateX(0%);
  }

  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .toggle .line2 {
    opacity: 0;
  }

  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background-color: #0a0a0a; 
  color: #ffffff;
  min-height: 100vh;
}


/* Styling for the video details display */
.video-details-display {
    margin-top: 40px;
    padding: 20px;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff; /* NEW: Orange/Red text */
    border: 2px solid #ff3503; /* NEW: Orange/Red border */
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    min-height: 120px; 
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: pre-wrap; 
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 15px #ff3503; /* NEW: Orange/Red neon glow effect */
    line-height: 1.6;
}

/* Optional: Add a subtle animation/change when details are active (hovering) */
.video-details-display.active {
    background-color: #ff35031a; /* NEW: Slightly lighter background with transparency */
    box-shadow: 0 0 25px #ff3503, 0 0 5px #fff;
    transform: scale(1.02);
}

/* General styling for workstation section */
.section-workstation {
    padding: 60px 20px;
    text-align: center;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; 
   margin-bottom: 10rem;
}

.video-box {
    position: relative;
    width: 320px; 
    height: 200px; 
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    overflow: hidden;
}

.video-box:hover {
    border-color: #ff3503; /* NEW: Highlight border on hover */
    box-shadow: 0 0 10px #ff3503;
}

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

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 0;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 12px;
}