body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: sans-serif;
}

/* Fullscreen background video */
video#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Pokémon sprites floating */
.sprite {
  position: absolute;
  width: 80px;
  height: 80px;
  background-size: cover;
  pointer-events: none;
  animation: float linear infinite;
  z-index: -1;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); }
  100% { transform: translateY(-150px) rotate(360deg); }
}


/* Pokeball Icon */
#pokeball-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  cursor: pointer;
}

#pokeball-icon {
  width: 60px;
  height: 60px;
  transition: transform 0.2s ease;
}

#pokeball-icon:hover {
  transform: scale(1.1) rotate(10deg);
}


/* Slider Menu */
#slider-nav {
  position: fixed;
  top: 0;
  left: -325px; /* hidden initially */
  width: 325px; /* slider width */
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  padding-top: 100px; /* increased top padding to avoid overlap */
  transition: left 0.3s ease;
  z-index: 99;
  box-shadow: 4px 0 15px rgba(0,0,0,0.4);
  overflow-y: auto;
}

/* Slider Buttons */
.slider-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin: 8px 12px; /* slightly more margin for separation */
  background: linear-gradient(135deg, #FFFBF0, #F0E9FF);
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}


.slider-btn:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #FFF7E0, #E0F7FF);
}

.btn-text {
  flex: 1;
  font-family: 'Arial', sans-serif;
}
.btn-icon {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

#home-title {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 100;
}
#home-title h1,
#home-title h2 {
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.05;
  -webkit-text-stroke: 2px #000; /* gives a bold outline */
  text-shadow:
    4px 4px 0 rgba(0,0,0,0.3),
    8px 8px 15px rgba(0,0,0,0.4); /* depth */
}
#home-title h1 {
  font-size: 120px;
  color: #ff4c00; /* aggressive orange-red */
}
#home-title h2 {
  font-size: 100px;
  margin-top: -20px;
  color: #00d4ff; /* energetic blue */
}
/* Pokéball resting on the grass */
#pokeball-bg {
  position: fixed;
  bottom: 50px;       /* height from bottom, adjust to match your grass level */
  right: 90px;        /* spacing from right edge */
  width: 800px;       /* large size */
  height: auto;
  z-index: 1;         /* above video, below text */
  transform: rotate(-5deg); /* slight tilt for realism */
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.4)); /* soft shadow */
  transition: transform 0.3s ease, filter 0.3s ease;
}

#pokeball-bg:hover {
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
}
