* { 
      box-sizing: border-box; 
      margin: 0; 
      padding: 0; 
    }
    
    html, body { 
      height: 100%; 
    }
    
    body {
      font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Arial;
      background: #002c40;
      color: #fff;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-y: auto;
    }

    /* Fixed video hero section */
    .video-hero {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #002c40;
      z-index: 1;
    }

    /* Video container - wider like reference */
    .video-container {
      position: relative;
      width: 90%;
      max-width: 1300;
      height: 85vh;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    }

    /* All video elements - stacked on top of each other */
    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: fill;
      background: #000;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
      pointer-events: none;
    }

    /* Active video is visible */
    .hero-video.active {
      opacity: 1;
      z-index: 2;
    }

    /* Text overlay positioned like reference */
    .text-overlay {
      position: absolute;
      bottom: 45px;
      left: 45px;
      max-width: 650px;
      z-index: 10;
      color: #fff;
    }

    /* Text elements - start hidden */
    .category {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      margin-bottom: 12px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.7s ease;
    }

    .main-title {
      font-size: 3.4rem;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.7s ease;
    }

    .description {
      font-size: 1.05rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.95);
      text-shadow: 0 1px 10px rgba(0,0,0,0.3);
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.7s ease;
    }

    .highlight {
      color: #04e3b2;
      font-weight: 600;
    }

    .continue-btn {
      display: inline-flex;
      align-items: center;
      margin-top: 24px;
      padding: 10px 24px;
      background: rgba(255,255,255,0.1);
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 25px;
      color: #fff;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
    }

    .continue-btn:hover {
      background: rgba(4,227,178,0.2);
      border-color: #04e3b2;
      transform: translateY(-2px);
    }

    .continue-btn::after {
      content: "↓";
      margin-left: 8px;
      font-size: 1rem;
    }

    /* Show states for text animation */
    .category.show,
    .main-title.show,
    .description.show,
    .continue-btn.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Scroll sections for detection */
    .scroll-section {
      height: 100vh;
      width: 100%;
      position: relative;
      z-index: 10;
      pointer-events: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .video-container {
        width: 96%;
        height: 80vh;
      }
      
      .text-overlay {
        bottom: 30px;
        left: 30px;
        right: 30px;
        max-width: none;
      }
      
      .main-title {
        font-size: 2.5rem;
      }
    
    .description {
        font-size: 0.95rem;
    }
    }

    @media (max-width: 480px) {
    .text-overlay {
        bottom: 25px;
        left: 20px;
        right: 20px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .category {
        font-size: 0.75rem;
    }
    }