.flag.flag-new {
  background: linear-gradient(45deg, #FF4136, #FF725C);
  color: #fff;
  display: inline-block;
  font-weight: bold;
  font-size: 10px;
  letter-spacing: 1.5px;
  line-height: 1.4;
  padding: 12px 16px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.flag.flag-new:hover {
  background: linear-gradient(45deg, #85144b, #FF4136);
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.flag.flag-new::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}

.flag.flag-new:hover::before {
  opacity: 1;
}