#redAlert {
  display: flex;
  justify-content: center;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #38444d;
}

li {
  float: left;
}

/* navbar */

/* Add a black background color to the top navigation */
.topnav {
  /* background-color: #333; */
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: center;
  color: #333;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #1f3e335d;
  color: white;
}
/* Fixes the nav to the top of the page when scrolling */
.topnav ul {
  top: 0;
  width: 100%;
}

li a,
.dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover,
.dropdown:hover .dropbtn {
  background-color: red;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f98d;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.ad-left,
.ad-right {
  position: fixed;
  top: 0;
  width: 5vw;
  height: 100vh;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  z-index: 1; /* Ensure they're behind the main content */
}

.ad-left {
  left: 0;
}

.ad-right {
  right: 0;
}

.shop-container {
  position: relative;
  z-index: 10; /* Ensures the content is above the ads */
  margin: 0 auto;
  max-width: 75vw;
  padding: 2vw;
}

@media (max-width: 1200px) {
  /* .shop-container {
    margin-left: 5vw;
    margin-right: 5vw;
  } */
}
/* This was offsetting the shop - Sena*/

.ad-content {
  display: flex;
  flex-direction: column;
  animation: scroll-ads 150s linear infinite;
  z-index: 12;
}

.ad-content object {
  width: 100%;
  margin-bottom: 1vw;
}

.ad-content h2 {
  writing-mode: vertical-rl;
  font-size: 3vw;
  margin: 0;
  padding: 1vw;
}

/* Trippy MSCHF esc spam stuff */
@keyframes scroll-ads {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.price-icon {
  position: absolute;
  left: 45vw;
  top: 4vw;
  background-color: #ff00d0;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 50%;
  padding: 1.1vw;
  text-align: center;
  cursor: pointer;
  transform: rotate(20deg);
  animation: expandShrink 2s infinite ease-in-out, disappear 35s forwards;
  z-index: 20;
}

@keyframes expandShrink {
  0%,
  100% {
    transform: scale(1) rotate(20deg);
  }
  50% {
    transform: scale(1.1) rotate(22deg);
  }
}

@keyframes disappear {
  0% {
    opacity: 1;
  }
  85% {
    opacity: 0.8; 
  }
  100% {
    opacity: 0; /* Disappears at 45 seconds */
  }
}