/* ========== Base Styles ========== */
body {
  background-image: url("apark.jpeg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

h1 {
  text-align: center;
  font-size: 5vw;
  color: white;
  text-shadow: 2px 2px 5px black;
  margin-top: 50px;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.image-container img {
  width: 30vw;
  height: auto;
  margin: 10px;
}

.large-image {
  width: 40vw;
  height: auto;
  z-index: 10;
  position: relative;
  margin-left: -20px;
}

/* ========== Timer Display ========== */
#timer {
  position: fixed;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2vw;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 4px 4px 20px black;
  z-index: 9999;
}

/* ========== Feed Counter ========== */
#feed-counter {
  position: fixed;
  top: 220px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(16px, 2vw, 32px);
  color: yellow;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 4px 4px 20px black;
  z-index: 9999;
}

/* ========== Hunger Bar ========== */
#hunger-bar-container {
  position: fixed;
  top: 280px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  z-index: 9999;
}

#hunger-bar {
  height: 100%;
  background: limegreen;
  width: 0%;
  transition: width 0.3s;
}

/* ========== Feed Button ========== */
#feed-button {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  min-height: 80px;
  padding: 20px 40px;
  font-size: clamp(24px, 5vw, 40px);
  background: red;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 4px 4px 20px black;
  z-index: 100;
}

/* ========== Fullscreen Dance GIF ========== */
#fullscreen-gif {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

#fullscreen-gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== Background Music Player ========== */
#bg-music {
  position: fixed;
  bottom: 100px;
  right: 100px;
  width: 200px;
  height: auto;
  border-radius: 10px;
  z-index: 9999;
}

/* ========== Hunger Label ========== */
#hunger-label {
  position: fixed;
  top: 255px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2vw;
  color: white;
  z-index: 9999;
}

/* ========== Personal Counter ========== */
#personal-counter {
  position: fixed;
  top: 320px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(14px, 2vw, 28px);
  color: cyan;
  background-color: rgba(0,0,0,0.6);
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 4px 4px 20px black;
  z-index: 9999;
}
