body {
  margin: 0;
  padding: 0;
  background-color: #131D4F;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.nav-link{
    color: white;
}

.hero-section {
  background: url('images/hero.jpg') center center / cover no-repeat;
  height: 55vh;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(19, 29, 79, 0.6);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}


.casino-card {
  background-color: #254D70;
}

.logo-box {
  background-color: #5C7E99;
  padding: 2rem;
  border-radius: 15px;
  max-width: 300px;
}

.bonus-btn {
  background-color: #954C2E;
  color: white;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.bonus-btn:hover {
  background-color: #B1735C;
  color: #fff;
}

.bg-box {
  background-color: #254D70;
  border: 1px solid #fff;
  border-radius: 15px !important;
  line-height: 1.6;
}

.bg-box ol li {
  margin-bottom: 1rem;
}

footer {
  background-color: #254D70;
  font-size: 0.95rem;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-text {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-logos img {
  max-height: 45px;
  object-fit: contain;
}

.about-box {
  background-color: #254D70;
  border: 1px solid #fff;
  border-radius: 15px;
  line-height: 1.6;
}

.about-box h4 {
  font-weight: bold;
  margin-top: 1.5rem;
}

.about-box ul li {
  margin-bottom: 0.5rem;
}

.contact-box {
  background-color: #254D70;
  border: 1px solid #fff;
  border-radius: 15px;
}

.contact-box .form-control {
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
}

.submit-btn {
  background-color: #954C2E;
  color: #fff;
  font-weight: 500;
  padding: 12px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #B1735C;
}

