* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      width: 100%;
      height: 100%;
      font-family: Arial, sans-serif;
    }

    h1 {
      position: absolute;
      top: 10px;
      left: 20px;
      z-index: 10;
      color: white;
      text-shadow: 0 0 10px rgba(0,0,0,0.7);
    }

    .full-container {
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      position: relative;
    }

    .slider {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.4s ease;
    }

    .slide {
      min-width: 100%;
      height: 100%;
      position: relative;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      user-select: none;
      pointer-events: none;
    }

    .description {
      position: absolute;
      left: 20px;
      top: 50px;
      color: white;
      max-width: 300px;
      background: rgba(0,0,0,0.5);
      padding: 10px;
      border-radius: 8px;
    }