body.citizen-page header.background-opaque {
  background-color: rgb(0 0 0 / 0.5);
  backdrop-filter: blur(10px);
}
body.citizen-page .videos-section {
  padding: 20px 50px;
  background-color: #000;
  color: #fff;
  margin-top: 0 !important;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
body.citizen-page .videos-section.visible {
  opacity: 1;
  transform: scale(1);
}
body.citizen-page .section-title {
  font-size: 40px;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #d3d3d3 25%,
    #181818 50%,
    #c7c7c7 75%,
    #292929 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  animation: rgbAnimation 5s linear infinite;
}
body.citizen-page .video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  justify-items: center;
}
body.citizen-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: fadeIn 0.5s ease-out forwards;
  animation-delay: 0.5s;
}
body.citizen-page .video-thumbnail-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}
body.citizen-page .video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
body.citizen-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.citizen-page .download-btn i {
  font-size: 18px;
  margin-right: 8px;
  color: #fff;
  transition: color 0.3s ease;
}
body.citizen-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.citizen-page .download-btn:hover {
  border-color: rgb(255 255 255 / 0.5);
  transform: scale(1.05);
}
body.citizen-page .download-btn:hover i {
  color: #fff;
}
body.citizen-page .download-btn:active {
  transform: scale(0.98);
}
body.citizen-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.citizen-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.citizen-page .play-button:hover {
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0.8;
  box-shadow: none;
}
body.citizen-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);
}
body.citizen-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 ease, visibility 0.5s ease;
}
body.citizen-page .video-modal.active {
  opacity: 1;
  visibility: visible;
}
body.citizen-page .modal-video {
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
  z-index: 10;
  border-radius: 15px;
  overflow: hidden;
}
body.citizen-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.citizen-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 slideDown {
  0% {
    top: -50px;
  }
  100% {
    top: 0;
  }
}
@keyframes rgbWave {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes swayRocket {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
@keyframes bounceArrow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(12px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@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);
  }
}
body.citizen-page main > section:first-child {
  margin-top: 85px !important;
}
body.citizen-page .videos-section + .videos-section {
  margin-top: 30px !important;
  padding-top: 0 !important;
}
body.citizen-page .section-title {
  margin-bottom: 20px;
}
