body.modsom-page header.background-opaque {
  background-color: rgb(0 0 0 / 0.5);
  backdrop-filter: blur(10px);
}
body.modsom-page .videos-section {
  padding: 20px 50px;
  background-color: #000;
  color: #fff;
  margin-top: 85px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
body.modsom-page .videos-section.visible {
  opacity: 1;
  transform: scale(1);
}
body.modsom-page .section-title,
body.modsom-page nav ul li a.deluxe-opt {
  background: linear-gradient(
    90deg,
    #fff 0,
    #d3d3d3 25%,
    #181818 50%,
    #c7c7c7 75%,
    #292929 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  animation: 5s linear infinite rgbAnimation;
  text-align: center;
}
body.modsom-page .section-title {
  font-size: 40px;
  margin-bottom: 25px;
}
body.modsom-page .logo-item a::after,
body.modsom-page .user-login::after {
  content: none;
}
body.modsom-page .logo:hover {
  transform: rotate(360deg);
  transition: transform 0.5s ease;
}
body.modsom-page .video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  justify-items: center;
}
body.modsom-page .video-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 360px;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  animation: 0.5s ease-out 0.5s forwards fadeIn;
}
body.modsom-page .video-thumbnail-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}
body.modsom-page .video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
body.modsom-page .download-btn {
  position: relative;
  isolation: isolate;
  margin-top: 10px;
  padding: 10px 20px;
  background: radial-gradient(circle at center, #1c1c1c, #0f0f0f, #0a0a0a);
  background-size: 300% 300%;
  animation: circularGradient 6s ease-in-out infinite,
    glowPulse 6s ease-in-out infinite;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  border: 2px solid rgb(255 255 255 / 0.1);
  box-shadow: 0 0 12px rgb(255 255 255 / 0.08),
    inset 0 0 12px rgb(255 255 255 / 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  z-index: 2;
  transition: all 0.3s ease;
  transform: scale(1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.modsom-page .download-btn i {
  font-size: 18px;
  margin-right: 8px;
  color: #fff;
  transition: color 0.3s ease;
}
body.modsom-page .download-btn::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  background: conic-gradient(
    from 0deg,
    #fff0,
    rgb(255 255 255 / 0.45),
    #fff0 30%,
    #fff0 70%,
    rgb(255 255 255 / 0.45),
    #fff0
  );
  filter: blur(10px);
  opacity: 0.4;
  animation: spinHalo 8s linear infinite;
}
body.modsom-page .download-btn:hover {
  border-color: rgb(255 255 255 / 0.5);
  transform: scale(1.05);
}
body.modsom-page .download-btn:hover i {
  color: #fff;
}
body.modsom-page .download-btn:active {
  transform: scale(0.98);
}
body.modsom-page .download-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgb(0 0 0 / 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  z-index: 3;
}
body.modsom-page .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgb(0 0 0 / 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.5s ease, opacity 0.5s ease;
  box-shadow: 0 0 15px rgb(255 255 255 / 0.5);
}
body.modsom-page .play-button:hover {
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0.8;
  box-shadow: none;
}
body.modsom-page .play-button i {
  font-size: 24px;
  color: #fff0;
  background: linear-gradient(
    90deg,
    red,
    orange,
    yellow,
    green,
    blue,
    violet,
    red
  );
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  animation: rgbWave 2s linear infinite;
  text-shadow: 0 0 8px rgb(255 255 255 / 0.6);
}
.boosters-btn {
  background: linear-gradient(90deg, #000 0, #8a2be2 100%);
  background-size: 200% 200%;
  color: #fff;
  border: 2px solid #8a2be2;
  text-decoration: none;
  font-size: 14px;
  border-radius: 20px;
  padding: 10px 20px;
  display: block;
  width: auto;
  text-align: center;
  transition: background-position 0.5s, color 0.3s, box-shadow 0.3s;
  z-index: 1;
  animation: 4s infinite gradientShift;
}
.boosters-btn:hover {
  background: linear-gradient(90deg, #c4c4c4 0, #8a2be2 100%);
  background-size: 200% 200%;
  background-position: 100% 0;
  color: #fff;
  box-shadow: 0 0 15px rgb(138 43 226 / 0.7), 0 0 30px rgb(138 43 226 / 0.7);
  border-color: #8a2be2;
}
body.modsom-page .video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
body.modsom-page .video-modal.active {
  opacity: 1;
  visibility: visible;
}
body.modsom-page .modal-video {
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  z-index: 10;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
body.modsom-page .close-btn {
  position: absolute;
  top: 155px !important;
  right: 440px !important;
  background: none;
  border: none;
  font-size: 35px !important;
  color: #fff0;
  cursor: pointer;
  transition: transform 0.5s ease, color 0.3s ease, text-shadow 0.3s ease;
  animation: pausedRotate 6s ease-in-out infinite, colorSwap 3s linear infinite,
    constantGlow 2s ease-in-out infinite;
  z-index: 11;
}
body.modsom-page .close-btn:hover {
  animation: none;
  transform: rotate(0deg);
  color: #f44;
  text-shadow: 0 0 10px rgb(255 68 68 / 0.8), 0 0 20px rgb(255 68 68 / 0.6);
}
@keyframes rgbAnimation {
  0%,
  100% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 100%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes rgbWave {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes slideDown {
  0% {
    top: -50px;
  }
  100% {
    top: 0;
  }
}
@keyframes swayRocket {
  0%,
  100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(5deg);
  }
}
@keyframes bounceArrow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(12px);
  }
}
@keyframes pausedRotate {
  0% {
    transform: rotate(0deg);
    color: #fff;
  }
  25% {
    transform: rotate(360deg);
    color: #f44;
  }
  50% {
    transform: rotate(360deg);
    color: #f44;
  }
  75% {
    transform: rotate(0deg);
    color: #fff;
  }
  100% {
    transform: rotate(0deg);
    color: #fff;
  }
}
@keyframes colorSwap {
  0% {
    color: #fff;
  }
  50% {
    color: #f44;
  }
  100% {
    color: #fff;
  }
}
@keyframes constantGlow {
  0% {
    text-shadow: 0 0 10px rgb(255 255 255 / 0.5),
      0 0 20px rgb(255 255 255 / 0.7);
  }
  50% {
    text-shadow: 0 0 20px rgb(255 255 255 / 0.8), 0 0 40px rgb(255 255 255);
  }
  100% {
    text-shadow: 0 0 10px rgb(255 255 255 / 0.5),
      0 0 20px rgb(255 255 255 / 0.7);
  }
}
