html, body, section {
    block-size: 100%;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
  }

  .overlay {
      position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(357deg, black, #00000085, #000000)
}
  html {
    scroll-snap-type: y mandatory;
  }

  section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  body {
    margin: 0;
    font-family: system-ui, sans-serif;
    font-size: 2rem;
    background-color: #111;
    color: #f8f9fa;
  }

  .section-init{
      background: url("../img/bg2.png") !important;
  background-size: cover;
  position: relative;
  width: 100%;
  }

  section:nth-of-type(even) {
    background: #000;
  }

  section:nth-of-type(odd) {
    background: #111;
  }

  h1, h2 {
    color: #f8f9fa;
    margin-bottom: 1rem;
  }

  /* Carousel styles */
  .carousel-row {
    margin-bottom: 2rem;
    position: relative;
  }

  .carousel-track-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .carousel-track {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    animation: scroll-left 40s linear infinite;
  }

  .carousel-item-custom {
    min-width: 180px;
    height: 300px;
    background: #333;
    border-radius: 10px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
  }

  .carousel-item-custom:hover {
    transform: scale(1.05);
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .carousel-track-wrap:hover .carousel-track {
    animation-play-state: paused;
  }

  /* Fade effect at edges */
  .carousel-track-wrap::before,
  .carousel-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .carousel-track-wrap::before {
    left: -1px;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
  }

  .carousel-track-wrap::after {
    right: -1px;
    background: linear-gradient(to left, #000000 0%, #00000000 100%)
  }

  .carousel-row h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }


  .logo-grid {
    display: flex;
    gap: 1rem;
    height: 500px;
    padding: 15px;
  }

  .column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: scroll 20s linear infinite;
  }

  .scroll-down {
    animation-name: scroll-down;
  }

  .scroll-up {
    animation-name: scroll-up;
  }

  @keyframes scroll-down {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
  }

  @keyframes scroll-up {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
  }

  .column img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }

  
  footer {
      background-image: url("../img/footer-03.png");
      background-size: cover;
      height: 100%;
      background-position: center;
  }
  
  
  /* Responsive layout */
  @media (min-width: 768px) {
    section {
      justify-content: flex-start;
    }

  

    
  }


  .section-title h1 {
  font-size: 3rem;
  font-weight: 700;
}
.section-title h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

@media only screen and (max-width: 850px) {
footer{
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
}
}

.btn{
    background: linear-gradient(45deg, #c81d77, #6710c2);
    border: none;
    padding: 10px 20px;
    border-radius: 35px;    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 500;
}


.btn:hover{
    background:linear-gradient(45deg, #ff0e8d, #7d00ff);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


.column img{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column img:hover{
    transform: scale(1.05);
  box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.7);
}

.game-screens-mobile{
    display: none;
   }

   .game-screens-desktop{
    display: block;
    overflow: hidden;
    position: relative;
   } 
    
   #games div{
    align-items: end;
   }

@media only screen and (max-width: 850px) {
   .game-screens-mobile{
    display: block;
   }

   .game-screens-mobile img{
    height: 100%;
    width: auto !important;
   }

   .game-screens-desktop{
    display: none;
   }

   #games div {
    align-items: center;
   }

  

  

    .column img {
        width: 80px;
        height: 80px;

}


    }
    
    @media only screen and (max-width: 500px) {
        footer {
            background-image: url("../img/footer-mobile-03.png");
            
        }


       
}


@media only screen and (max-width: 1000px) {
    .last-column{
        display: none;
    }

}


