.scode {
  background: #df2020;
  color: #ffffff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  border-bottom: 2px solid #fbfe1a;
  padding-top: 1px;
  padding-bottom: 1px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Moving background light sweep effect (Shimmer) */
.scode::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: bar-shimmer 6s infinite ease-in-out;
}

@keyframes bar-shimmer {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

/* Redesigned Badge Containers */
.info-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 0 5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
}

.info-badge:hover {
  transform: translateY(-1px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Icon Settings & Animations */
.info-icon {
  color: #fbfe1a;
  font-size: 14px;
  transition: all 0.3s ease;
}

.info-badge:hover .info-icon {
  transform: scale(1.15);
  text-shadow: 0 0 6px #fbfe1a;
}

/* Tilt Animation for Graduation Cap */
.info-badge:hover .icon-tilt {
  animation: icon-tilt-anim 0.6s ease-in-out infinite alternate;
}

@keyframes icon-tilt-anim {
  0% { transform: rotate(-12deg) scale(1.15); }
  100% { transform: rotate(12deg) scale(1.15); }
}

/* Bounce Animation for School Icon */
.info-badge:hover .icon-bounce {
  animation: icon-bounce-anim 0.6s ease-in-out infinite alternate;
}

@keyframes icon-bounce-anim {
  0% { transform: translateY(0) scale(1.15); }
  100% { transform: translateY(-3px) scale(1.15); }
}

/* Labels & Values */
.info-label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.info-value {
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Clock Badge specific styling */
.clock-badge {
  background: transparent;
  border: none;
}

.clock-badge:hover {
  background: transparent;
}

.clock-time-val {
  font-weight: 700;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
