html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: beige;
    cursor: url('https://i.imgur.com/F1K5NZF.png'), auto;
    overflow: hidden;
}

body {
    cursor: url('https://i.imgur.com/F1K5NZF.png'), auto;
}

.clickable, a, button {
    cursor: url('https://i.imgur.com/CZYSqmU.png'), pointer;
}

#TV {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #393939;
  border: 20px solid #000;
  box-sizing: border-box;
}

.tv-title {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  font-family: Arial, sans-serif;
  margin: 0;
    padding-top: 20px;
  z-index: 2;
}

.user-icon {
  position: absolute; 
  top: 39px;
  right: 47px;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid white;
  z-index: 2;
}

.icon-container {
  position: absolute;
  top: 126px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%; 
  height: 80%;
  background-color: #393939;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: auto;
  gap: 15px;
  padding: 15px;

  overflow: hidden;
}

.icon-container {
  overflow-y: scroll;
  scrollbar-width: none;
}
.icon-container::-webkit-scrollbar {
  display: none;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-img {
  width: 90%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  border-radius: 12%;
  object-fit: cover;
  border: 3px solid #fff;
}

.icon-title {
  color: white;
  font-size: 1.6rem;
  margin-top: 7px;
  font-family: Arial, sans-serif;
}

#video-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: black;
  display: none;
  z-index: 10;
  overflow: hidden;
  transform: translate(-50%, -50%);
}


#video-frame {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

#close-video {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}

.tooltip-box {
  position: absolute;
  background: white;
  color: black;
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  max-width: 220px;
  font-size: 14px;
  line-height: 1.3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1000;
    font-family: Arial, sans-serif;
}

.tooltip-box.visible {
  opacity: 1;
}

#video-screen {
  position: relative;
}

#channel-overlay {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 80px;
  height: auto;
  border-radius: 8px;
  pointer-events: none;
  z-index: 1001;
  display: none;
}

#back-button {
  position: absolute;
  top: 15px;
  left: 15px;
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 4;
  font-family: Arial, sans-serif;
  user-select: none;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

#back-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}



