body {
  body {
  background-color: #f3f7f1;
  background-image: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
  font-family: "Georgia", serif;
  color: #2f3e2e;
  margin: 0;
  padding: 0;
  cursor: url("https://cur.cursors-4u.net/nature/nat-11/nat1023.cur"), auto;
}

/* Main Container */
.container {
  width: 750px;
  margin: 60px auto;
  padding: 50px;
  background-color: #ffffffee;
  border: 1px solid #d6e3d2;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(95, 125, 101, 0.07);
  position: relative;
}

/* Titles */
.title {
  text-align: center;
  font-size: 42px;
  color: #5f7d65;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  font-style: italic;
  color: #7ea889;
  margin-top: 0;
}

/* Divider */
.divider {
  height: 1px;
  background-color: #d6e3d2;
  margin: 25px 0;
}

/* Navigation */
nav {
  text-align: center;
  margin-bottom: 30px;
}

nav a {
  text-decoration: none;
  color: #5f7d65;
  margin: 0 15px;
  font-size: 18px;
  transition: 0.3s ease;
}

nav a:hover {
  color: #7ea889;
  letter-spacing: 1px;
}

/* Content */
.content {
  line-height: 1.8;
  font-size: 17px;
  text-align: center;
}

/* Corner Flowers */
.corner {
  position: absolute;
  font-size: 20px;
  color: #7ea889;
  opacity: 0.6;
}

.top-left { top: 15px; left: 20px; }
.top-right { top: 15px; right: 20px; }
.bottom-left { bottom: 15px; left: 20px; }
.bottom-right { bottom: 15px; right: 20px; }

/* Sparkles */
.sparkle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #7ea889;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 12s linear infinite;
}

@keyframes float {
  from {
    transform: translateY(100vh);
  }
  to {
    transform: translateY(-10vh);
  }
}
.meadow-player {
  width: 70%;
  margin: 0 auto;
  padding: 25px;
  background-color: #f8fbf6;
  border: 1px solid #d6e3d2;
  border-radius: 14px;
}

.playlist-title {
  text-align: center;
  color: #5f7d65;
  font-style: italic;
  margin-bottom: 5px;
}

.playlist-sub {
  text-align: center;
  font-size: 14px;
  color: #7ea889;
  margin-bottom: 25px;
}

.track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #e2eee0;
  transition: 0.3s ease;
}

.track:last-child {
  border-bottom: none;
}

.track:hover {
  background-color: #f1f7ef;
}

.track-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flower {
  color: #7ea889;
  opacity: 0.6;
}

.track-title {
  color: #2f3e2e;
  font-size: 16px;
}

.track-artist {
  font-size: 12px;
  color: #7ea889;
}

.play-link {
  text-decoration: none;
  background-color: #7ea889;
  color: white;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 13px;
  transition: 0.3s ease;
}

.play-link:hover {
  background-color: #5f7d65;

  background-color: #e4efe6; /* soft sage wash */
  background-image: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
  font-family: "Georgia", serif;
  color: #2f3e2e;
  margin: 0;
  padding: 0;
  cursor: url("https://cur.cursors-4u.net/nature/nat-11/nat1023.cur"), auto;
  
  .container {
  background-color: #f2f7f2; /* warm meadow parchment */
  /* BODY */
body {
  background-color: #e4efe6;
  background-image: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
  font-family: "Georgia", serif;
  color: #2f3e2e;
  margin: 0;
  padding: 0;
  cursor: url("https://cur.cursors-4u.net/nature/nat-11/nat1023.cur"), auto;
  position: relative;
  overflow-x: hidden;
}

/* Vignette / Gradient */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(228,239,230,0.0) 0%, rgba(37,50,37,0.2) 100%);
}

/* Main Container */
.container {
  width: 750px;
  margin: 60px auto;
  padding: 50px;
  background-color: #f2f7f2;
  border: 1px solid #d6e3d2;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(95,125,101,0.07);
  position: relative;
}

/* Titles */
.title {
  text-align: center;
  font-size: 42px;
  color: #5f7d65;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  font-style: italic;
  color: #7ea889;
  margin-top: 0;
}

/* Divider */
.divider {
  height: 1px;
  background-color: #d6e3d2;
  margin: 25px 0;
}

/* Navigation */
nav {
  text-align: center;
  margin-bottom: 30px;
}

nav a {
  text-decoration: none;
  color: #5f7d65;
  margin: 0 15px;
  font-size: 18px;
  transition: 0.3s ease;
}

nav a:hover {
  color: #7ea889;
  letter-spacing: 1px;
  text-shadow: 0 0 6px #a7c4a7;
}

/* Content */
.content {
  line-height: 1.8;
  font-size: 17px;
  text-align: center;
}

/* Corner Flowers */
.corner {
  position: absolute;
  font-size: 20px;
  color: #7ea889;
  opacity: 0.6;
}

.top-left { top: 15px; left: 20px; }
.top-right { top: 15px; right: 20px; }
.bottom-left { bottom: 15px; left: 20px; }
.bottom-right { bottom: 15px; right: 20px; }

/* Floating leaves/flowers (created by JS) */
.floating-element {
  position: fixed;
  font-size: 12px;
  color: #7ea889;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
  animation-name: floaty;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes floaty {
  from { transform: translateY(100vh) rotate(0deg); }
  to { transform: translateY(-10vh) rotate(360deg); }
}

/* Sparkles */
.sparkle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: #7ea889;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 12s linear infinite;
}

@keyframes float {
  from { transform: translateY(100vh); }
  to { transform: translateY(-10vh); }
  <a href="index.html" class="back-button">← Return to the Meadow</a>
  .back-button {
  display: inline-block;
  padding: 8px 14px;
  background-color: #dce8d5;
  color: #3e4b3c;
  text-decoration: none;
  border-radius: 12px;
  font-family: "Georgia", serif;
  border: 1px solid #a3b899;
}

.content {
  margin-top: 40px;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-weight: normal;
  color: #6f8f76;
  margin-bottom: 20px;
}

nav a.active {
  font-style: italic;
  opacity: 0.7;
}

.divider {
  text-align: center;
  color: #a3b899;
  letter-spacing: 8px;
  margin: 20px 0;
}

