html {
  scroll-behavior: smooth;
}
:root {
  --emerald: #10b981;
  --gold: #d4af37;
  --dark: #000000;
}

body {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/hero_sect.jpg") no-repeat center center;
  background-size: cover;
}

.casino-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  padding: 4px;
  border-radius: 4px;
  margin: 0 auto;
}

.casino-logo.golden-park-logo {
  background: white;
}

.casino-card.golden-park {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.gradient-gold {
  background: linear-gradient(45deg, #d4af37, #f7e98e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gold {
  background: linear-gradient(45deg, #d4af37, #f7e98e);
  border: none;
  color: #000;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-emerald {
  background: linear-gradient(45deg, #10b981, #34d399);
  border: none;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.casino-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid #d4af37;
  transition: all 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.game-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid #10b981;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.popup-overlay {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.cookie-banner {
  background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
  border-top: 3px solid #d4af37;
}

.trust-badge {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 1px solid #10b981;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.review-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-left: 4px solid #d4af37;
}

.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.star-rating {
  color: #d4af37;
  text-align: center;
  margin-top: 8px;
}
