body {
      font-family: 'Montserrat', 'Orbitron', Arial, sans-serif;
      background: linear-gradient(160deg, #0d0d0d 0%, #1f1f1f 100%);
      color: #fff;
    }
    h1, h2, h3, h4 {
      font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
      font-weight: 700;
      letter-spacing: 1px;
    }
    .accordion-content {
      display: none;
    }
    .accordion.open .accordion-content {
      display: block;
    }
    .glow-btn {
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    }
    .glow-hover:hover {
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
      transition: 0.3s;
    }

    
    .scene {
      width: 100%;
      padding: 30px 0;
      perspective: 1000px; 
    }

    .carousel {
      width: 180px;
      height: 180px;
      position: relative;
      margin: 0 auto;
      transform-style: preserve-3d;
      transition: transform 0.7s;
    }

    .carousel-cell {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      border: 2px solid #fbbF24;
      border-radius: 8px;
      overflow: hidden;
      background-color: #1f1f1f;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.7s, opacity 0.7s;
    }

    .carousel-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .carousel-cell::after {
      content: attr(data-title);
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.7); 
      color: #fde047; 
      text-align: center;
      font-weight: bold;
    }

    /* Slider Vertical */
    .vertical-slider-container {
      height: 100%; 
      overflow: hidden;
      position: relative;
      border: 2px solid #fbbF24;
      border-radius: 8px;
      background-color: #1f1f1f;
    }

    .vertical-slider-inner {
      position: absolute;
      width: 100%;
      animation: vertical-scroll 120s linear infinite;
    }

    .vertical-slider-inner:hover {
      animation-play-state: paused; 
    }

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

    @media (min-width: 768px) {
      .carousel {
        width: 250px;
        height: 250px;
      }
    }

    /* Marquee Banner */
    .marquee-container {
      width: 100%;
      display: flex;
      align-items: center;
    }

    .marquee-content {
      display: flex;
      align-items: center;
      white-space: nowrap;
      animation: marquee 35s linear infinite;
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
    }

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

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