body {
  margin: 0;
  font-family: 'Georgia', serif;
  color: white;
  background: black;
}
.container {
  padding: 20px;
  text-align: center;
}
.subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #ccc;
}
.track {
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.track h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
button {
  background: #111;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 22px;
  margin-top: 12px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background: #444;
}

.footer {
  margin-top: 60px;
  padding: 40px 20px;
  font-size: 0.85rem;
  color: #bbb;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  line-height: 1.8;
  letter-spacing: 0.3px;
}
.jh-logo {
  width: 120px;
  margin-bottom: 18px;
  opacity: 0.85;
  filter: brightness(0.85);
}

/* Tooltip styles */
.copyright-tooltip {
  position: relative;
  cursor: help;
  border-bottom: 1px dotted #bbb;
}
.tooltip-text {
  visibility: hidden;
  background-color: #222;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 6px 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.75rem;
  width: max-content;
  max-width: 220px;
}
.copyright-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
button + button {
  margin-left: 10px;
  background: #300;
  border-color: #fff;
}
button + button:hover {
  background: #500;
}



