/* Explore page video background and layout */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  /*background: black;*/
  color: white;
}

/* Fullscreen centered video */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: cover;
  pointer-events: none; /* So it doesn't block clicks */
}


/* Explore container layout */
.explore-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  height: 100vh;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.world-card {
  background: rgba(255, 255, 255, 0.05); /* subtle transparent */
  border: 2px solid rgba(255, 255, 255, 0.3); /* visible but not glowing */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* depth, no neon glow */
  border-radius: 15px;
  padding: 25px 30px;
  width: 320px;
  text-align: center;
  backdrop-filter: blur(2px);
  transition: transform 0.3s ease;
}

.world-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

/* Heading text */
.world-card h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #80b3ff; /* bright blue */
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 50, 0.8);
}

/* Paragraph */
.world-card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #cfd8ff; /* light blueish for contrast */
  margin-bottom: 25px;
}

/* Buttons */
.world-card a.btn {
  display: inline-block;
  background-color: #1e90ff; /* Dodger Blue */
  color: white;
  padding: 14px 42px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px; /* oval */
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(30, 144, 255, 0.6);
  user-select: none;
}

.world-card a.btn:hover {
  background-color: #0d6efd; /* darker blue on hover */
  transform: scale(1.08);
  box-shadow: 0 6px 12px rgba(13, 110, 253, 0.8);
}



header {
  position: fixed;
  top: 20px;
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff00ff;
  text-shadow:
    0 0 8px #ff00ff,
    0 0 20px #c300ff;
  z-index: 10;
  user-select: none;
}



@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
