/* ====== Marquee (Logo Jalan) ====== */
@keyframes scroll-left {
  50% { transform: translateX(0); }
  50% { transform: translateX(-50%); }
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  margin: 15px auto;
  border-radius: 12px;
  position: relative;
  background-color: #f0f8ff; /* biru muda lembut */
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 128, 0.15);
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: fit-content;
  animation: scroll-left 25s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-logo {
  flex: 0 0 auto;
}

.marquee-logo img {
  height: 70px;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marquee-logo img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 0, 255, 0.7); /* Glow biru */
}

/* ====== Sidebar OJS Glow Biru (Teks & Gambar tanpa ubah posisi) ====== */
#sidebar .pkp_block .content a,
.pkp_structure_sidebar .pkp_block .content a {
  transition: all 0.25s ease-in-out;
  border-radius: 6px;
}

#sidebar .pkp_block .content a img,
.pkp_structure_sidebar .pkp_block .content a img {
  transition: transform 0.25s ease-in-out, filter 0.25s ease-in-out;
}

/* Efek Hover */
#sidebar .pkp_block .content a:hover,
#sidebar .pkp_block .content a:focus-visible,
.pkp_structure_sidebar .pkp_block .content a:hover,
.pkp_structure_sidebar .pkp_block .content a:focus-visible {
  color: #fff !important;
  background-color: #1e40af !important; /* biru navy */
  text-shadow: 0 0 6px rgba(255,255,255,.6);
  box-shadow:
    0 0 10px rgba(30,64,175,.8),
    0 0 22px rgba(30,64,175,.55),
    0 0 38px rgba(30,64,175,.35);
  transform: scale(1.05); /* efek muncul halus */
}

/* Efek untuk gambar di sidebar */
#sidebar .pkp_block .content a:hover img,
.pkp_structure_sidebar .pkp_block .content a:hover img {
  transform: scale(1.15); /* membesar halus */
  filter: drop-shadow(0 0 6px rgba(0, 0, 255, 0.7)); /* glow biru */
}
