/* 42420OR42421 - Desert Consciousness Aesthetic */

:root {
  --desert-sand: #f4e4bc;
  --desert-dusk: #2c1810;
  --desert-night: #1a0f08;
  --cactus-green: #4a6741;
  --sky-blue: #87ceeb;
  --blood-red: #8b0000;
  --shimmer-gold: #ffd700;
  --text-light: #f4e4bc;
  --text-dark: #2c1810;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: linear-gradient(135deg, var(--desert-night) 0%, var(--desert-dusk) 100%);
  color: var(--text-light);
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Desert particle animation */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="0.5" fill="%23f4e4bc" opacity="0.3"/><circle cx="80" cy="40" r="0.3" fill="%23f4e4bc" opacity="0.2"/><circle cx="40" cy="80" r="0.4" fill="%23f4e4bc" opacity="0.1"/></svg>');
  animation: drift 60s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes drift {
  0% { transform: translateX(-100px) translateY(-100px); }
  100% { transform: translateX(100px) translateY(100px); }
}

/* Typography */
h1, h2, h3 {
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--shimmer-gold);
  text-align: center;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.8rem;
  color: var(--cactus-green);
  border-bottom: 1px solid var(--cactus-green);
  padding-bottom: 0.5rem;
}

/* Container and layout */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.desert-portal {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Poetic text styling */
.poetic-text {
  font-size: 1.1rem;
  line-height: 2.2;
  margin: 2rem 0;
  text-align: left;
  max-width: 600px;
}

.poetic-text p {
  margin-bottom: 1.5rem;
}

.short-line {
  display: block;
  margin-bottom: 0.5rem;
}

/* Interactive links */
.concept-link {
  color: var(--cactus-green);
  text-decoration: none;
  border-bottom: 1px dotted var(--cactus-green);
  transition: all 0.3s ease;
  position: relative;
}

.concept-link:hover {
  color: var(--shimmer-gold);
  border-bottom-color: var(--shimmer-gold);
  text-shadow: 0 0 5px var(--shimmer-gold);
}

.concept-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--shimmer-gold);
  transition: width 0.3s ease;
}

.concept-link:hover::after {
  width: 100%;
}

/* Navigation */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--cactus-green);
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-link:hover {
  background: var(--cactus-green);
  color: var(--desert-night);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(74, 103, 65, 0.3);
}

/* Cactus symbol */
.cactus-symbol {
  font-size: 4rem;
  color: var(--cactus-green);
  margin: 2rem 0;
  text-shadow: 0 0 10px var(--cactus-green);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Concept page styling */
.concept-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-bottom: 2px solid var(--cactus-green);
}

.concept-content {
  margin: 2rem 0;
}

.related-concepts {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(74, 103, 65, 0.1);
  border-radius: 10px;
  border: 1px solid var(--cactus-green);
}

.related-concepts h3 {
  color: var(--cactus-green);
  margin-bottom: 1rem;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.concept-card {
  background: rgba(244, 228, 188, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(74, 103, 65, 0.3);
  transition: all 0.3s ease;
}

.concept-card:hover {
  background: rgba(244, 228, 188, 0.1);
  border-color: var(--cactus-green);
  transform: translateY(-2px);
}

/* Breadcrumb navigation */
.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.7;
}

.breadcrumb a {
  color: var(--cactus-green);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--shimmer-gold);
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .concept-grid {
    grid-template-columns: 1fr;
  }
  
  .cactus-symbol {
    font-size: 3rem;
  }
}

/* Special effects */
.shimmer {
  background: linear-gradient(45deg, transparent 30%, var(--shimmer-gold) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shimmer 3s ease-in-out infinite;
}

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

/* Blood sacrifice styling */
.blood-text {
  color: var(--blood-red);
  font-weight: bold;
}

/* Mysterious elements */
.mystery {
  opacity: 0.8;
  font-style: italic;
  color: var(--shimmer-gold);
}

/* Click indicator */
.clickable {
  cursor: pointer;
  position: relative;
}

.clickable::before {
  content: '◦';
  position: absolute;
  left: -15px;
  color: var(--cactus-green);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.clickable:hover::before {
  opacity: 1;
}

