body {
  background: linear-gradient(180deg, #001f3f, #0f0f0f);
  color: #00ffcc;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Header Styling */
h1 {
  text-align: center;
  margin-top: 50px;
  color: #ff4500;
  text-shadow: 0 0 10px #ff4500, 0 0 20px #ff4500;
}

/* Boombox Container */
.boombox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  width: 80%;
  height: 80%;
  background: #1e1e1e;
  border-radius: 20px;
  box-shadow: 0 0 20px #ff0080, 0 0 40px #ff0080;
  position: relative;
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 15px;
}

video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

/* Full Screen Button */
.fullscreen-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff4500;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 10px #ff4500;
  transition: background-color 0.3s;
}

.fullscreen-btn:hover {
  background-color: #ff8c00;
}

/* Navigation Links */
.back-to-garden,
.back-to-home {
  display: block;
  text-align: center;
  margin: 30px auto;
  color: #00ffcc;
  font-size: 1.2rem;
  text-decoration: underline;
}
