/* Casino-themed styles (legal job board) */
body {
  background: radial-gradient(circle at 50% -20%, #550000 0%, #1a0000 45%, #000000 100%);
  color: #f5e6c5;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}
.header-hero {
  position: relative;
  padding: 56px 16px 24px;
  text-align: center;
}
.header-hero .title {
  color: gold;
  font-weight: 800;
  letter-spacing: .5px;
  text-shadow: 0 0 16px rgba(255, 0, 0, 0.55), 0 0 36px rgba(255, 77, 77, 0.65);
}
.header-hero .subtitle {
  color: #ffe7b0;
  opacity: .95;
}
.glitter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.5) 0, transparent 50%),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(255,255,255,.35) 0, transparent 50%),
    radial-gradient(2px 2px at 40% 80%, rgba(255,255,255,.4) 0, transparent 50%);
  filter: blur(.2px) contrast(120%);
  opacity: .5;
}
.navbar-blur {
  background: rgba(20, 0, 0, .7);
  border-bottom: 1px solid #a00;
  backdrop-filter: blur(8px);
}
.card-listing {
  background: rgba(40, 0, 0, 0.92);
  border: 1px solid gold;
  border-radius: 14px;
  box-shadow: inset 0 0 22px rgba(160,0,0,.6), 0 8px 24px rgba(0,0,0,.4);
  overflow: hidden;
}
.card-listing img {
  height: 240px;
  object-fit: cover;
  border-bottom: 1px solid gold;
}
.card-listing .card-title {
  color: gold;
  text-shadow: 0 0 10px rgba(255,102,102,.8);
  font-weight: 700;
}
.footer {
  text-align: center;
  padding: 28px 12px;
  font-size: 0.95rem;
  border-top: 1px solid #a00;
  margin-top: 36px;
  color: #f8e9d6;
}
/* Age notice modal (informational) */
#ageModal {
  background: rgba(0,0,0,0.85);
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#ageBox {
  background: linear-gradient(145deg, #330000, #111);
  padding: 28px;
  border: 2px solid gold;
  border-radius: 12px;
  text-align: center;
  color: #f8e9d6;
  width: 92%;
  max-width: 420px;
  box-shadow: 0 0 30px #a00;
}
#ageBox h2 { color: gold; margin-bottom: 12px; }
.btn-gold {
  background: gold;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
}
.btn-gold:hover { background: #ffda4d; }
.filter-bar {
  background: rgba(30,0,0,.7);
  border: 1px solid #a00;
  border-radius: 12px;
  padding: 12px;
}
select, input[type="text"] {
  background: rgba(0,0,0,.5);
  color: #ffe7c2;
  border: 1px solid #a00;
}
.card-listing {
  color: #fff6d9;
}
.card-listing p {
  color: #f8e9d6;
}
.card-listing:hover {
  box-shadow: 0 0 25px rgba(255,215,0,0.7);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
