body {
  background: url('https://i.pinimg.com/736x/25/ba/66/25ba663ccb587a11ee8e7dba1a66b22f.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Courier New', monospace;
  color: #222;
  margin: 0;
  padding: 0;
}

.main-container {
  background: rgba(255, 255, 255, 0.9);
  margin: 50px auto;
  width: 600px;
  padding: 20px;
  border: 3px double #f7a;
  box-shadow: 0 0 20px #f7a;
  text-align: center;
}

a {
  color: #f69;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* === XP-Style Music Player === */
.xp-player {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 260px;
  background: #1f1f2f;
  border: 2px solid #999;
  box-shadow: 4px 4px 0 #000;
  font-family: 'Tahoma', sans-serif;
  font-size: 11px;
  color: #eee;
  z-index: 9999;
}
.xp-header {
  background: linear-gradient(to bottom, #5a5f66, #2b2f33);
  padding: 4px;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
.xp-close {
  cursor: pointer;
  padding: 0 4px;
  color: #ff9999;
}
.xp-controls-bar {
  display: flex;
  justify-content: space-around;
  background: #2b2f33;
  padding: 4px;
}
.xp-controls-bar button {
  background: #5a5f66;
  border: none;
  color: #fff;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  padding: 0;
}
.xp-controls-bar button:hover {
  background: #6a6f77;
}
.xp-playlist {
  background: #3b3f4a;
  padding: 4px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  max-height: 100px;
  overflow-y: auto;
}
.xp-playlist button {
  display: block;
  width: 100%;
  margin: 2px 0;
  padding: 4px;
  font-size: 11px;
  background: #5a5f66;
  color: white;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: monospace;
}
.xp-playlist button.current {
  background: #8888aa;
}
.xp-playlist button:hover {
  background: #6a6f77;
}
.xp-volume {
  background: #2b2f33;
  padding: 4px;
}
.xp-volume input[type="range"] {
  width: 100%;
  appearance: none;
  background: #999;
  height: 2px;
}
.xp-volume input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 1px solid #000;
  cursor: pointer;
}

.my-banner {
    position: absolute;
    top: 50px;
    left: 100px;
}


