:root {
  --primary-color: #6B8E23; /* Olive Drab */
  --secondary-color: #556B2F; /* Dark Olive Green */
  --background-color: #4A5D1F; /* Darker olive green for background */
  --text-color: #E0E0E0; /* Light gray for better contrast */
  --button-hover: #808000; /* Olive */
  --accent-color: #BDB76B; /* Dark Khaki */
  --highlight-color: #6B8E23; /* Olive Drab - for dramatic accents */
  --dark-accent: #2F4F4F; /* Dark Slate Gray - for contrast */
  --subtle-glow: 0 0 3px rgba(107, 142, 35, 0.3); /* Subtle glow effect */
  --gold-color: #FFD700; /* Gold color for merch button */
  --gold-glow: 0 0 5px rgba(255, 215, 0, 0.7), 0 0 10px rgba(255, 215, 0, 0.4); /* Gold glow effect */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Make all images non-clickable and prevent downloads */
img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  /* Prevent save image as */
  -webkit-touch-callout: none;
}

body {
  font-family: "Times New Roman", serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.4;
  overflow: hidden;
  position: relative;
  height: 100vh;
}

/* Minimal grid lines */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: none;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(107, 142, 35, 0.12) 0%, transparent 60%);
  background-size: 200% 200%;
  z-index: -2;
  pointer-events: none;
  animation: move-background 30s linear infinite;
}

@keyframes move-background {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, 
    rgba(107, 142, 35, 0.1) 0px, 
    rgba(107, 142, 35, 0.1) 20px, 
    rgba(85, 107, 47, 0.15) 20px, 
    rgba(85, 107, 47, 0.15) 40px);
  z-index: -1;
  animation: backgroundMove 30s linear infinite;
}

@keyframes backgroundMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

/* Floating elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 142, 35, 0.3) 0%, rgba(107, 142, 35, 0) 70%);
  z-index: -1;
  animation: float 15s infinite alternate ease-in-out;
  opacity: 0.6;
}

.container::before {
  content: '';
  top: 10%;
  left: 10%;
  animation: float 15s ease-in-out infinite;
}

.container::after {
  content: '';
  bottom: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(30px, 15px);
  }
  50% {
    transform: translate(15px, 30px);
  }
  75% {
    transform: translate(-15px, 15px);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title-image {
  max-width: 80%;
  height: auto;
  margin: 0 auto;
  pointer-events: none; /* Make image non-clickable */
  user-select: none; /* Prevent selection */
  filter: drop-shadow(0 0 10px rgba(107, 142, 35, 0.5));
}

.title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-color);
  letter-spacing: 2px;
  font-variant: small-caps;
  position: relative;
  display: inline-block;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px var(--highlight-color);
  }
  100% {
    box-shadow: 0 0 20px var(--highlight-color);
  }
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--text-color);
  font-style: italic;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.button {
  display: inline-block;
  padding: 0.9rem 2rem;
  width: 50%;
  text-align: center;
  background-color: rgba(107, 142, 35, 0.3); /* Semi-transparent background for better readability */
  color: white;
  text-decoration: none;
  font-weight: bold; /* Make text bold for better visibility */
  transition: all 0.3s ease;
  border: 1px solid var(--highlight-color);
  cursor: pointer;
  font-size: 1.2rem;
  position: relative;
  letter-spacing: 0.8px;
  margin: 0.3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Add text shadow for better contrast */
  box-shadow: 0 0 5px rgba(107, 142, 35, 0.5); /* Subtle glow around buttons */
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: all 0.5s ease;
}

.button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.button:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

.button:hover {
  background-color: var(--highlight-color);
  transform: translateY(-2px);
  box-shadow: var(--subtle-glow);
}

.button:hover::before {
  transform: translateX(100%);
}

.button:active {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.button.secondary {
  background-color: var(--secondary-color);
}

.button.secondary:hover {
  background-color: #4A5D28;
}

.button.outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: white;
}

.button.outline:hover {
  background-color: rgba(107, 142, 35, 0.1);
}

.button.outline {
  border: 1px solid var(--gold-color);
  box-shadow: var(--gold-glow);
  animation: gold-pulse 2s infinite alternate;
  color: white; /* Ensure text is white */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Add stronger text shadow for better visibility */
}

/* Blueprint schematic theme for Developers button */
.button.blueprint {
  background-color: rgba(41, 128, 185, 0.7); /* Lighter blue color */
  border: 1px solid #ffffff;
  box-shadow: 0 0 5px #ffffff, 0 0 10px rgba(255, 255, 255, 0.5);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  animation: blueprint-glow 3s infinite alternate;
}

.button.blueprint::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(0deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 15px 15px; /* Slightly smaller grid for more detail */
  z-index: -1;
}

.button.blueprint:hover {
  background-color: rgba(52, 152, 219, 0.8); /* Lighter blue on hover */
  box-shadow: 0 0 10px #ffffff, 0 0 20px rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

@keyframes blueprint-glow {
  0% {
    box-shadow: 0 0 5px #ffffff, 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 10px #ffffff, 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.3);
  }
}

@keyframes gold-pulse {
  0% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.5);
  }
}

/* Footer styling */
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.gmc-star {
  width: 60px;
  height: auto;
  opacity: 0.9;
  margin: 0.8rem 0;
  pointer-events: none; /* Make image non-clickable */
  user-select: none; /* Prevent selection */
  transition: transform 0.3s ease;
}

.footer-container:hover .gmc-star {
  transform: scale(1.1);
}

.rust-note {
  font-size: 1.1rem;
  color: var(--text-color);
  opacity: 0.9; /* Slightly reduced opacity to match star */
  font-style: italic;
  margin-bottom: 0.5rem;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Add text shadow for better contrast */
  letter-spacing: 1px;
}

.rust-note a {
  color: #FFD700; /* Gold/yellow color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.rust-note a:hover {
  color: #FFC107; /* Slightly darker gold on hover */
  text-decoration: underline;
}

.copyright {
  font-size: 1rem;
  color: var(--text-color);
  opacity: 0.9; /* Slightly reduced opacity to match star */
  font-style: italic;
  margin-top: 0.5rem;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Add text shadow for better contrast */
  letter-spacing: 1px;
}

/* Logo Animation Styles */
.logo-container {
  margin-bottom: 0.8rem;
  position: relative;
}

.logo-symbol {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--highlight-color);
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

.logo-container:hover .logo-symbol {
  transform: rotate(45deg);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
