.ser-redirect-box {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border: 2px solid #0073aa;
  border-radius: 8px;
  background-color: #f8f9fa;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
}
.ser-redirect-box p {
  font-size: 1.25rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.ser-redirect-box a {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.ser-ad-container {
  margin: 20px 0;
  padding: 15px;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 4px;
  text-align: center;
}
.ser-redirect-graphic {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
}
.ser-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.ser-notice {
  position: relative;
  padding-right: 30px;
}
.ser-notice-close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #72777c;
}
.ser-notice-close:hover {
  color: #000;
}

/* Fallback animations */
.ser-redirect-graphic.fallback {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: serSpin 1.2s linear infinite;
}

@keyframes serSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}