body {
      scroll-behavior: smooth;
    }
    section {
      padding: 60px 0;
    }
    .game-frame {
      width: 100%;
      height: 400px;
      border: none;
    }

.btn-animate {
  background-color: #000000;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s;
}

.btn-animate:hover {
  background-color: #FFD700;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-animate:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.bg-image {
  background-image: url('img/DS2.jpg'); /* 👈 this is where the image is set */
  background-size: cover;
  background-position: center;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.showcase-button{
  background-color: #2b339b;
  color: #ffffff;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  transition: background-color 0.3 ease;
  padding: 12px 24px;
}