:root {
  --lime-green: #32cd32;
  --sky-blue: #87ceeb;
  --vibrant-orange: #ff6347;
}

.bg-aussie-lime {
  background-color: var(--lime-green);
}

.bg-aussie-blue {
  background-color: var(--sky-blue);
}

.bg-aussie-orange {
  background-color: var(--vibrant-orange);
}

.text-aussie-lime {
  color: var(--lime-green);
}

.text-aussie-blue {
  color: var(--sky-blue);
}

.text-aussie-orange {
  color: var(--vibrant-orange);
}

.border-aussie-lime {
  border-color: var(--lime-green);
}

.border-aussie-blue {
  border-color: var(--sky-blue);
}

.border-aussie-orange {
  border-color: var(--vibrant-orange);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 1rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.game-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-bg {
  background: linear-gradient(
    135deg,
    rgba(135, 206, 235, 0.9) 0%,
    rgba(50, 205, 50, 0.9) 50%,
    rgba(255, 99, 71, 0.9) 100%
  );
  background-image: url("images/Hero_Section.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-bg > * {
  position: relative;
  z-index: 1;
}

.game-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.game-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-modal-content {
  background: white;
  width: 90%;
  height: 90%;
  border-radius: 10px;
  position: relative;
}

.game-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--lime-green);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.game-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}
