:root {
    --highlight-color: #ff0033;
    --banner-image: url("default-banner.jpg");
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-image: var(--banner-image);
}

.pfp {
    width: 224px;
    height: 224px;
    position: absolute;
    left: 36px;
    top: 36px;
    border: solid 6px var(--highlight-color);
    border-radius: 3px;
    box-shadow: 3px 3px 6px rgba(3, 3, 6, 0.336);
    z-index: 3;
}

.camcorder {
  position: absolute;
  top: 364px;
  right: 36px;
  z-index: 3;
  filter: drop-shadow(3px 3px 6px rgba(3, 3, 6, 0.336));
}

.tv-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.tv-frame {
    position: relative;
    width: 448px;
    height: 455px;
    background: url('TV_WithScreen.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
    filter: drop-shadow(3px 3px 6px rgba(3, 3, 6, 0.336));
}

.tv-frame.off {
    background: url('TV_NoScreen.png') no-repeat center center;
    background-size: cover;
    filter: drop-shadow(3px 3px 6px rgba(3, 3, 6, 0.336));
}

#player {
    position: absolute;
    top: 70px;
    left: 20px;
    width: 410px;
    height: 310px;
    z-index: 2;
    display: block;
}

.vhs-overlay {
  position: relative;
  top: 70px;
  left: 20px;
  width: 410px;
  height: 310px;
  background-color: transparent;
  display: none;
  z-index: 3;
  color: white;
  font-family: monospace;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 1px 2px black;
  overflow: hidden;
}

.tv-controls {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 4;
}

.vcr-controls {
    position: absolute;
    top: 10px;
    left: 0;
    right: 55px;
    display: flex;
    justify-content: right;
    gap: 5px;
    z-index: 4;
    height: 16px;
}

.tv-frame:not(.off) .vcr-controls {
    opacity: 1;
    pointer-events: all;
}

.tv-btn, .vcr-btn {
    border: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    line-height: 0;
    display: inline-block;
    background: none;
}

.vcr-btn img {
    width: 25px;
    height: 25px;
}

.tv-btn:hover, .vcr-btn:hover {
    background-color: #555;
}

.tv-btn:active, .vcr-btn:active {
    background-color: #777;
}

.thumbnail-shelf {
    position: absolute;
    top: 464px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-image: url('Shelf.png');
    gap: 7px;
    padding-top: 7px;
    width: 100%;
}

.thumbnail {
    width: 159px;
    height: 119px;
    margin: 0;
    padding: 0;
    display: block;
    background-color: gray;
    border: solid 6px black;
    border-radius: 3px;
    box-sizing: border-box;
    margin-bottom: 7px;
}

