h1,
h2 {
  transform: skew(-5deg, 0);
  letter-spacing: 1px;
}
h1::after,
h2::after {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #ff0099, #9900ff, #00ff77, #ff0099);
  margin-top: 5px;
  transform: skew(5deg, 0);
  width: 0; /* Start at 0 for load animation */
  background-size: 200% 100%;
  animation: extreme-load 0.8s ease-out forwards, rainbow-flow 4s linear infinite;
}

h1 {
  font-size: 3.5rem;
  background: linear-gradient(90deg, #9900ff, #ff0099);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

.container {
  position: relative;
  background: radial-gradient(circle at 30% 30%, rgba(255, 0, 153, 0.2), transparent 50%), radial-gradient(circle at 70% 70%, rgba(153, 0, 255, 0.25), transparent 50%), radial-gradient(circle at 25% 80%, rgba(0, 255, 119, 0.15), transparent 40%), radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.1), transparent 45%);
  box-shadow: 10px 10px 0 rgba(255, 0, 153, 0.5), -10px -10px 0 rgba(0, 255, 119, 0.5);
  border-radius: 8px 28px 8px 28px;
  padding: 2rem;
  overflow: hidden;
}
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, #ff0099, #9900ff, #00ff77);
  z-index: 1;
}
.container main {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 2rem;
}

.navbar {
  background: rgb(91.8, 0, 153);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  width: calc(100% + 4rem);
  margin-left: -2rem;
  justify-content: center;
}
.navbar .navbar-brand {
  color: white;
  transform: rotate(-3deg) scale(1.2);
  transition: transform 0.3s ease;
}
.navbar .navbar-brand:hover {
  transform: rotate(3deg) scale(1.3);
}
.navbar .navbar__links {
  gap: 0.5rem;
}
.navbar .navbar__links a {
  color: white !important;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}
.navbar .navbar__links a:hover, .navbar .navbar__links a.active {
  color: #ffcc00 !important;
  transform: scale(1.1) rotate(-2deg);
}
.navbar .navbar__links a:hover::after, .navbar .navbar__links a.active::after {
  width: 100%;
}
.navbar .navbar__links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #00ff77;
  transition: width 0.3s ease;
}
.navbar .navbar__links a.active {
  background-color: rgba(0, 0, 0, 0.4);
}

.btn {
  border: none;
  background: linear-gradient(45deg, #9900ff, #ff0099);
  color: white;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
  transition: all 0.3s ease;
}
.btn:hover {
  transform: scale(1.05) rotate(-2deg);
  background: linear-gradient(45deg, #ff0099, #9900ff);
  box-shadow: 0 0 15px rgba(255, 0, 153, 0.7);
}

footer {
  background: rgb(76.5, 0, 127.5);
  clip-path: polygon(2% 0, 98% 0, 100% 100%, 0 100%);
  padding: 3rem 2rem 2rem;
  margin-bottom: -3rem;
  width: calc(100vw - 10px);
  margin-left: calc((100% - 100vw) / 2 + 5px);
}
footer a {
  color: #ffcc00;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
}
footer a:hover {
  color: #ff0099;
  text-decoration: none;
  transform: scale(1.1);
}
footer .socials a {
  display: inline-block;
  transition: all 0.3s ease;
}
footer .socials a:hover {
  transform: rotate(15deg) scale(1.2);
}
footer .socials a:hover i {
  color: white;
}
footer p strong {
  color: white;
}

.footer-button {
  z-index: 1;
}

.tag {
  background: #00ff77;
  color: rgb(61.2, 0, 102);
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 0;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  display: inline-block;
  transition: all 0.3s ease;
}
.tag:hover {
  background: #ff0099;
  color: white;
  transform: scale(1.1) rotate(-3deg);
}

.banner-container {
  overflow: hidden;
  position: relative;
  width: calc(100% + 4rem);
  margin-left: -2rem;
  margin-top: -2rem;
}
.banner-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: linear-gradient(90deg, #ff0099, #9900ff, #00ff77);
  z-index: 1;
}

@keyframes extreme-load {
  0% {
    width: 0;
  }
  100% {
    width: calc(100% - 20px);
  }
}
@keyframes rainbow-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}
.post .post-date,
.game .content-available-top {
  margin: -1rem;
}