:root {
  --emerald-green: #2ecc71;
  --ivory-white: #f9f9f9;
  --graphite-black: #2c2c2c;
  --gold-accent: #ffd700;
}

.text-gold-accent {
  color: var(--gold-accent);
}

body {
  background-color: var(--ivory-white);
  color: var(--graphite-black);
  font-family: "Arial", sans-serif;
}

.emerald-bg {
  background-color: var(--emerald-green);
}

.emerald-text {
  color: var(--emerald-green);
}

.gold-bg {
  background-color: var(--gold-accent);
}

.gold-text {
  color: var(--gold-accent);
}

.graphite-bg {
  background-color: var(--graphite-black);
}

.graphite-text {
  color: var(--graphite-black);
}

.btn-emerald {
  background-color: var(--emerald-green);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-emerald:hover {
  background-color: #27ae60;
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold-accent);
  color: var(--graphite-black);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.btn-gold:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.casino-card {
  background: #00df77;
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  border: 2px solid transparent;
}

.casino-card:hover {
  transform: translateY(-5px);
  border-color: var(--emerald-green);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner {
  position: fixed;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--graphite-black);
  color: white;
  padding: 20px;
}

.certificate-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--emerald-green);
}

.banner-placeholder {
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: bold;
  border-radius: 8px;
  min-height: 200px;
}

.photo-placeholder {
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: bold;
  border-radius: 8px;
  aspect-ratio: 16/9;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--emerald-green);
}

/* Mobile Navigation Styles */
#mobileNav {
  transition: all 0.3s ease-in-out;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

#mobileNav.show {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
}

#mobileNav ul {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

#mobileNav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#mobileNav li:last-child {
  border-bottom: none;
}

/* Burger Menu Animation */
#burgerMenu {
  transition: all 0.3s ease;
}

#burgerMenu svg {
  transition: transform 0.3s ease;
}

#burgerMenu.active svg {
  transform: rotate(90deg);
}

#burgerMenu:hover {
  opacity: 0.8;
}

#burgerMenu:active {
  transform: scale(0.95);
}
