body {
  font-family: 'Libre Caslon Text', serif;
  background-color: #111;
  color: #fff;
  scroll-behavior: smooth;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
}

body {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(242, 255, 0, 0.05),
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );
}

/* Page Loader */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
  color: #ffc107;
}

.text-gold {
  color: #ffc107;
}

.section-border {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shadow-soft {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Shared Casino Button Base */
.btn-main-casino,
.btn-secondary-casino {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  letter-spacing: 0.5px;
  border: none;
}

/* 🎯 Main Casino Button (Green) */
.btn-main-casino {
  background: linear-gradient(145deg, #28a745, #218838);
  color: #fff;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.btn-main-casino:hover {
  background: linear-gradient(145deg, #218838, #1e7e34);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.8);
}

/* 🪙 Secondary Casino Button (Gold) */
.btn-secondary-casino {
  background: linear-gradient(145deg, #ffc107, #e0a800);
  color: #111;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

.btn-secondary-casino:hover {
  background: linear-gradient(145deg, #e0a800, #c69500);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.7);
}

.score-circle {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background-color: #222;
  color: #ffc107;
  font-size: 1.5rem;
  font-weight: bold;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.casino-card:hover .score-circle {
  border-color: #ffc107;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

.casino-card:hover {
  background-color: #111 !important;
  border-color: #ffc107 !important;
}

.link-warning {
  text-decoration: underline;
  color: #ffc107;
}

.link-warning:hover {
  color: #fff;
}

.bg-disclaimer {
  background: #4c24243b;
}

.logo-equal-height {
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.logo-equal-height:hover {
  transform: scale(1.05);
  opacity: 1;
}

footer a.link-warning {
  text-decoration: none;
  color: #ffc107;
  transition: all 0.3s ease-in-out;
}

footer a.link-warning:hover {
  color: #fff !important;
}

#cookie-banner a.link-warning:hover {
  color: #111;
}

.page-title-banner {
  min-height: 400px;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-title-banner .overlay {
  z-index: 1;
}

.page-title-banner h1,
.page-title-banner p {
  z-index: 2;
  position: relative;
}

.form-check-input:checked {
  background-color: #ffc107;
  border-color: #ffc107;
}
