.showcase-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg,
    #1E3A8A 0%,
    #2563EB 25%,
    #3B82F6 50%,
    #60A5FA 75%,
    #93C5FD 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  margin: 0;
}

.showcase-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 58, 138, 0.95) 0%,
    rgba(37, 99, 235, 0.85) 25%,
    rgba(59, 130, 246, 0.75) 50%,
    rgba(96, 165, 250, 0.85) 75%,
    rgba(30, 58, 138, 0.95) 100%
  );
  z-index: 1;
}

.showcase-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(147, 197, 253, 0.3) 0%, transparent 50%);
  z-index: 2;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.showcase-banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.showcase-banner-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateY(0);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.showcase-banner-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow:
    0 35px 60px -15px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.showcase-banner-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 58, 138, 0.1) 0%,
    transparent 20%,
    transparent 80%,
    rgba(30, 58, 138, 0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.showcase-banner-image-wrapper::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 2;
}

.showcase-banner-image-wrapper:hover::after {
  opacity: 1;
}

.showcase-banner-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.showcase-banner-decorative-elements {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.decorative-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.decorative-corner.top-left {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
  border-radius: 20px 0 0 0;
  animation: cornerPulse 3s ease-in-out infinite;
}

.decorative-corner.top-right {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 20px 0 0;
  animation: cornerPulse 3s ease-in-out infinite 0.75s;
}

.decorative-corner.bottom-left {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 20px;
  animation: cornerPulse 3s ease-in-out infinite 1.5s;
}

.decorative-corner.bottom-right {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 20px 0;
  animation: cornerPulse 3s ease-in-out infinite 2.25s;
}

@keyframes cornerPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.showcase-banner-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  z-index: 3;
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { left: -100%; }
  20%, 100% { left: 100%; }
}

@media (max-width: 968px) {
  .showcase-banner {
    min-height: 300px;
    padding: 3rem 1.5rem;
  }

  .showcase-banner-image-wrapper {
    max-width: 100%;
    border-radius: 16px;
  }

  .decorative-corner {
    width: 60px;
    height: 60px;
  }

  .decorative-corner.top-left,
  .decorative-corner.top-right {
    top: 15px;
  }

  .decorative-corner.bottom-left,
  .decorative-corner.bottom-right {
    bottom: 15px;
  }

  .decorative-corner.top-left,
  .decorative-corner.bottom-left {
    left: 15px;
  }

  .decorative-corner.top-right,
  .decorative-corner.bottom-right {
    right: 15px;
  }
}

@media (max-width: 640px) {
  .showcase-banner {
    min-height: 250px;
    padding: 2rem 1rem;
  }

  .showcase-banner-image-wrapper {
    border-radius: 12px;
  }

  .decorative-corner {
    width: 40px;
    height: 40px;
  }

  .decorative-corner.top-left,
  .decorative-corner.top-right {
    top: 10px;
  }

  .decorative-corner.bottom-left,
  .decorative-corner.bottom-right {
    bottom: 10px;
  }

  .decorative-corner.top-left,
  .decorative-corner.bottom-left {
    left: 10px;
  }

  .decorative-corner.top-right,
  .decorative-corner.bottom-right {
    right: 10px;
  }
}
