html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: url('images/bg.png') no-repeat center top / cover, #000;
  background-attachment: fixed;
  color: #f0f0f0;
  line-height: 1.6;
}

/* HERO */
.hero {
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 80px 20px 40px;
  min-height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.overlay {
  max-width: 960px;
  margin: 0 auto;
}
.overlay h1 {
  font-size: 3rem;
  color: #d4af37;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}
.overlay p {
  font-size: 1.2rem;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

/* FEATURES inside HERO */
.hero .features {
  margin-top: 30px;
  background: transparent;
  border: none;
  padding: 10px 0;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
  text-align: center;
}
.feature img {
  height: 50px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.feature img:hover {
  transform: scale(1.1);
}
.feature p {
  font-weight: bold;
  color: #ffffff;
}

/* WARNING */
.regulation-warning {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 10px;
}
.icon-18 {
  height: 60px;
  margin-bottom: 10px;
}

/* TOP CASINOS */
.top-casinos {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
}
.casino-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px auto;
  padding: 30px 20px;
  max-width: 900px;
  border-radius: 12px;
  background-color: #222;
  color: white;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.casino-card:hover {
  transform: scale(1.03);
}
.casino-card img {
  height: 80px;
  transition: transform 0.3s;
}
.casino-card img:hover {
  transform: scale(1.1);
}
.casino-description {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.casino-description .main-offer {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background: transparent;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 10px 0;
}
.casino-description .sub-offer {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 8px;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.rank-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: #d4af37;
  color: #000;
  font-weight: bold;
  padding: 10px;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rank Color Borders & Glows */
.gold {
  border: 2px solid #d4af37;
  box-shadow: 0 0 20px #d4af37, inset 0 0 10px #d4af37;
}
.silver {
  border: 2px solid #ccc;
  box-shadow: 0 0 20px #ccc, inset 0 0 10px #ccc;
}
.bronze {
  border: 2px solid #cd7f32;
  box-shadow: 0 0 20px #cd7f32, inset 0 0 10px #cd7f32;
}

/* Play Button */
.play-button {
  background: linear-gradient(135deg, #ffdd44, #d4af37);
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background-size: 200% auto;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
  transition: background-position 0.4s, transform 0.3s, box-shadow 0.3s;
}
.play-button:hover {
  background-position: right center;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
  transform: scale(1.1);
}

/* REGULATION LOGOS */
.regulation-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
  justify-items: center;
}
.regulation-logos img {
  width: 120px;
  transition: transform 0.3s;
}
.regulation-logos img:hover {
  transform: scale(1.1);
}

/* WHY US */
.why-us {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  text-align: center;
  color: #ccc;
}
.why-us h2 {
  color: #f0f0f0;
  margin-bottom: 30px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
}
.why-item {
  display: flex;
  align-items: center;
  background: #111;
  border-left: 4px solid #d4af37;
  padding: 15px 20px;
  border-radius: 6px;
  gap: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-item img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.why-item p {
  margin: 0;
  font-weight: 500;
  color: #f0f0f0;
}
.why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* DISCLAIMER */
.disclaimer {
  background: rgba(0, 0, 0, 0.8);
  color: #aaa;
  font-size: 0.85rem;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #333;
}
.disclaimer a {
  color: #d4af37;
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: #000 !important;
  color: white;
  padding: 20px;
  text-align: center;
}
footer a {
  color: #d4af37;
  text-decoration: none;
  margin: 0 10px;
}
footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .casino-card {
    flex-direction: column;
    text-align: center;
  }
}

/* AGE + COOKIE CENTERED MODAL */
#age-cookie-banner {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 450px;
  background: #111;
  border: 2px solid #d4af37;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  color: #fff;
  padding: 25px 20px;
  z-index: 9999;
  display: none;
  border-radius: 12px;
  text-align: center;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.banner-inner p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #eee;
}

.banner-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.banner-actions .btn {
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.banner-actions .yes {
  background: #28a745;
  color: #fff;
}

.banner-actions .no {
  background: #dc3545;
  color: #fff;
}

.banner-actions .btn:hover {
  opacity: 0.9;
}
