:root {
  --alpine-green: #2d5016;
  --light-alpine: #4a7c2a;
  --parchment: #f4f1e8;
  --obsidian: #1a1a1a;
  --gold-accent: #d4af37;
}

body {
  background: linear-gradient(135deg, var(--parchment) 0%, #e8e2d5 100%);
  color: var(--obsidian);
  font-family: "Georgia", serif;
}

.hero-gradient {
  background: linear-gradient(
    135deg,
    var(--alpine-green) 0%,
    var(--light-alpine) 100%
  );
}

.ancient-border {
  border: 3px solid var(--gold-accent);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.gem-card {
  background: rgba(244, 241, 232, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-accent);
  transition: all 0.3s ease;
}

.gem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--obsidian);
  color: var(--parchment);
  padding: 1rem;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.ancient-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.1'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20v20h20z'/%3E%3C/g%3E%3C/svg%3E");
}
