#cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 10000;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.casino-button {
  display: inline-block;
  padding: 20px 20px ;
  background-color: #087b1d;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  border: none;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
min-width: 180px
}

.casino-button:hover {
  background-color: #239d3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.casino-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
/**/
.hero-banner {
  background-image: url('/assets/graphics/LG7Hr64msPQ.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .hero-banner {
    min-height: 280px;
    padding: 50px 15px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}


@media (max-width: 480px) {
  .hero-banner {
    min-height: 40vh;
    padding: 60px 15px;
    background-position: center;
    background-size: cover;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}
