/* ------------------------------------------------------------------
   EASTER EGG FINDER SECTION
   ------------------------------------------------------------------ */

.easter-egg-section {
  padding: 4rem 2rem;
  background: transparent;
  position: relative;
  z-index: 10;
}

.easter-egg-container {
  max-width: 800px;
  margin: 0 auto;
}

.egg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.egg-box {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(50, 20, 50, 0.9));
  border: 2px solid rgba(119, 0, 255, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-family: 'Share Tech Mono', monospace;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.egg-box:hover {
  border-color: rgba(119, 0, 255, 0.8);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(119, 0, 255, 0.5);
}

.egg-box.revealed {
  background: linear-gradient(135deg, rgba(119, 0, 255, 0.8), rgba(255, 0, 255, 0.8));
  color: #fff;
  font-size: 2rem;
  animation: pop 0.3s ease;
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.secret-message {
  text-align: center;
  font-size: 1.5rem;
  color: rgba(255, 215, 0, 0.9);
  font-family: 'Share Tech Mono', monospace;
  min-height: 2rem;
  margin-top: 2rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.reset-btn {
  background: linear-gradient(135deg, rgba(119, 0, 255, 0.8), rgba(255, 0, 255, 0.6));
  color: #fff;
  border: 2px solid rgba(119, 0, 255, 0.5);
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  font-family: 'Share Tech Mono', monospace;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.reset-btn:hover {
  background: linear-gradient(135deg, rgba(119, 0, 255, 1), rgba(255, 0, 255, 0.8));
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(119, 0, 255, 0.6);
}

.reset-btn:active {
  transform: scale(0.95);
}

/* Mobile */
@media (max-width: 640px) {
  .easter-egg-section {
    padding: 2rem 1rem;
  }
  
  .egg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .egg-box {
    font-size: 2rem;
  }
  
  .secret-message {
    font-size: 1.2rem;
  }
}
