html {
  scroll-behavior: smooth;
}
:root {
  --sapphire-blue: #0f52ba;
  --silver: #c0c0c0;
  --dark-charcoal: #36454f;
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--dark-charcoal);
  color: white;
}

.bg-sapphire {
  background-color: var(--sapphire-blue);
}

.bg-silver {
  background-color: var(--silver);
}

.bg-charcoal {
  background-color: var(--dark-charcoal);
}

.text-sapphire {
  color: var(--sapphire-blue);
}

.text-silver {
  color: var(--silver);
}

.border-sapphire {
  border-color: var(--sapphire-blue);
}

.hover-sapphire:hover {
  background-color: var(--sapphire-blue);
}

.age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-charcoal);
  z-index: 9998;
  border-top: 2px solid var(--sapphire-blue);
}

.casino-card {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #2a3a47 100%);
  border: 1px solid var(--sapphire-blue);
  transition: transform 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-5px);
}

.cert-item {
  background: linear-gradient(135deg, var(--sapphire-blue) 0%, #1a6eb8 100%);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: white;
}

.hidden {
  display: none !important;
}
