* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.05)), #991ae2;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', Arial, sans-serif;
  padding: 10px;
}

.nav-bar {
  border-bottom: 4px solid black;
  padding-bottom: 10px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: black;
  margin: 0 4px;
}

.nav-icons {
  display: flex;
  gap: 5px;
}

.sq {
  width: 20px;
  height: 20px;
  box-shadow: inset -2px -2px 0 rgba(0, 0, 0, 0.2);
}

.sq.gold {
  background-color: #cfb53b;
}

.sq.red {
  background-color: #d92121;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.box {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1)), #700087;
  border: 4px solid black;
  color: white;
  position: relative;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.intro-box {
  display: flex;
  align-items: center;
  padding: 20px;
  min-height: 180px;
  margin-bottom: 15px;
}

.intro-img img {
  width: 160px;
  height: auto;
  border: 3px solid white;
  transform: rotate(-3deg);
  margin-right: 20px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

.intro-text h1 {
  font-size: 24px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: normal;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.intro-text p {
  font-size: 18px;
  line-height: 1.2;
}

.grid-row {
  display: flex;
  gap: 15px;
}

.col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.header-tab {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.05)), #3d015f;
  border: 4px solid black;
  border-bottom: none;
  padding: 5px 10px;
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  width: fit-content;
  min-width: 100%;
  text-shadow: 2px 2px 0 black;
}

.header-tab span {
  font-size: 0.7em;
  text-transform: lowercase;
}

.content-area {
  height: 320px;
  overflow: hidden;
}

.likes-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  height: 100%;
}

.sticker {
  position: relative;
  width: 75px;
  height: 75px;
  object-fit: contain;
  justify-self: center;
  align-self: center;
  border: 2px solid white;
  z-index: 2;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.5));
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.isaac-bg {
  grid-column: 3;
  grid-row: 1 / span 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  border: none;
  border-left: 4px solid black;
  top: 0;
  right: 0;
  opacity: 1;
  filter: brightness(0.9) contrast(1.1);
}

.mole {
  border: none;
  background: none;
}

.hotdog {
  grid-column: 1;
  grid-row: 1;
  transform: rotate(-5deg);
}

.miku {
  grid-column: 2;
  grid-row: 1;
  transform: rotate(5deg);
}

.bf {
  grid-column: 1;
  grid-row: 2;
  transform: rotate(3deg);
}

.gummy {
  grid-column: 2;
  grid-row: 2;
  transform: rotate(-3deg);
}

.mole {
  grid-column: 1;
  grid-row: 3;
  transform: rotate(-8deg);
}

.vrchat {
  grid-column: 2;
  grid-row: 3;
  transform: rotate(4deg);
}

.dislikes-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #ffffff, #e0e0e0);
}

.giant-text {
  font-size: 60px;
  color: black;
  font-weight: bold;
  letter-spacing: -2px;
  filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .nav-links {
    font-size: 12px;
    line-height: 1.5;
  }

  .intro-box {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 30px 15px;
  }

  .intro-img img {
    margin: 0 0 20px 0;
    width: 140px;
  }

  .grid-row {
    flex-direction: column;
  }

  .content-area {
    height: auto;
    min-height: 280px;
  }

  .likes-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .isaac-bg {
    display: none;
  }

  .sticker {
    width: 65px;
    height: 65px;
  }

  .giant-text {
    font-size: 45px;
    padding: 40px 0;
  }
}

iframe {
    width: 100vw;
    height: 100vh;
    border: none;
    display: block;
    overflow: scroll
}