.qoala-banner-card {
  padding: 0;
  overflow: hidden;
}

.qoala-banner {
  background: linear-gradient(135deg, #020617 0%, #001a33 50%, #003366 100%);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e6f6ff;
  text-decoration: none;
  min-height: 60px;
  border: 1px solid rgba(0, 170, 255, 0.4);
  box-shadow:
    0 0 15px rgba(0, 150, 255, 0.3),
    inset 0 0 15px rgba(0, 120, 255, 0.15);
}

.qoala-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qoala-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qoala-shield-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(0, 170, 255, 0.6));
}

.qoala-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #9fe4ff;
  text-shadow: 0 0 8px rgba(0, 170, 255, 0.6);
}

.qoala-subtitle {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.2;
  color: #ccefff;
}

.qoala-cta {
  background: rgba(0, 170, 255, 0.2);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 200, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}

.qoala-cta:hover {
  background: rgba(0, 170, 255, 0.35);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.6);
}

@media (max-width: 768px) {
  .qoala-banner {
    padding: 10px 12px;
  }

  .qoala-title {
    font-size: 17px;
  }

  .qoala-subtitle {
    font-size: 11px;
  }
}
