body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #008080;  /* Windows 95 teal blue */
  font-family: Arial, sans-serif;
}

#desktop {
  position: relative;
  width: 100%;
  height: calc(100% - 40px); /* Leave space for taskbar */
}

/* Icons */
.icon {
  width: 80px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  position: absolute;
}

.icon-single {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.icon img {
  width: 80px;
  height:80px;
}

.icon a {
  text-decoration: none;
  color: black;
}

#shop img {
  width: 70px;
  height: 70px;
}

#jusriffin img {
  width: 80px;
  height: 80px;
}

#shop {
  font-weight: bold;
}

.icon-single img {
  height: auto;
  width: 350px; /* Adjust width */
}

/* Pinned Reverb Store Frame */
#pinned-frame {
  position: absolute;
  top: 15px;
  right: 15px;
  transform: rotate(-7deg);
  background: rgba(255, 255, 255, 0.8);
  padding: 5px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid #000;
  border-radius: 5px;
  display: inline-block;
}

#pinned-frame img {
  width: 215px;
  height: auto;
  display: block;
}

/* Increase the size of the retro YouTube (NES) icon image */
#youtube img {
  width: 70px;
  height: auto;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  #pinned-frame {
    top: 10px;
    right: 10px;
    transform: rotate(-5deg);
    width: 180px; /* Slightly smaller */
  }

  #pinned-frame img {
    width: 180px;
  }

  .icon img {
    width: 40px;
    height: 40px;
  }

  .icon-single img {
    width: 280px;
  }
}

@media (max-width: 480px) {
  #pinned-frame {
    top: 8px;
    right: 8px;
    transform: rotate(-3deg);
    width: 160px;
  }

  #pinned-frame img {
    width: 160px;
  }

  .icon {
    width: 60px;
  }

  .icon img {
    width: 35px;
    height: 35px;
  }

  .icon-single img {
    width: 250px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 10px;
  border: 2px solid #000;
  width: 435px;
  position: relative;
}

.modal-header {
  background-color: #000080;
  color: white;
  padding: 5px;
  font-weight: bold;
}

.modal-body {
  padding: 10px;
  text-align: center;
}

.close {
  color: white;
  float: right;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #ff0000;
  text-decoration: none;
}

/* Taskbar and Start Button */
#taskbar {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
  background-color: #C0C0C0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#start-button {
  background-color: #C0C0C0;
  border: 2px solid #808080;
  border-left-color: #fff;
  border-top-color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: bold;
  color: black;
  cursor: pointer;
  position: relative;
}

#start-button:active {
  border-left-color: #808080;
  border-top-color: #808080;
  border-right-color: #fff;
  border-bottom-color: #fff;
}

#start-menu {
  display: none;
  position: absolute;
  bottom: 40px;
  left: 0;
  background-color: #C0C0C0;
  width: 200px;
  border: 1px solid #888;
  z-index: 1000;
}

#start-button:hover + #start-menu,
#start-menu:hover {
  display: block;
}

#start-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#start-menu li {
  padding: 10px;
  cursor: pointer;
  text-align: left;
}

#start-menu li:hover {
  background-color: #808080;
}

#start-menu a {
  text-decoration: none;
  color: black;
  display: block;
  width: 100%;
  height: 100%;
}

#clock-container {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

#clock-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

#clock {
  font-size: 14px;
  color: black;
}

#copyright-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: black;
}

#copyright-text a {
  text-decoration: none;
  color: inherit;
}

#music, #dates, #jusriffin {
  font-weight: bolder;
}

#email, #mediaPlayer {
  visibility: hidden;
}

/* Phone Booth Styles */
#phone-booth {
  position: fixed;
  bottom: 10px;
  right: 30px;
  z-index: 1;
}

#phone-booth img {
  width: 150px;
  height: auto;
}

/* Ensure draggable icons are always on top */
.icon, .icon-single {
  z-index: 999;
}

/* --- New CSS Rules --- */

/* Make text under all icons bold */
.icon span {
  font-weight: bold;
}

