
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html,
      body {
        height: 100%;
        width: 100%;
        overflow: hidden;
        background: black;
        cursor: pointer;
      }

      .slide-container {
        height: 100vh;
        width: 100vw;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .slide {
        position: absolute;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.5s ease;
      }

      .slide img {
        max-height: 100vh;
        max-width: 100vw;
        object-fit: contain;
        transition: transform 0.3s ease;
      }

      .slide.active {
        opacity: 1;
        z-index: 1;
      }

      .controls {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        gap: 10px;
        z-index: 10;
      }

      .controls button {
        font-size: 20px;
        padding: 10px 15px;
        border: none;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border-radius: 5px;
        cursor: pointer;
        backdrop-filter: blur(5px);
      }

      .controls button:hover {
        background: rgba(255, 255, 255, 0.4);
      }
    