.vx-ann-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(8, 10, 18, 0.82);
  backdrop-filter: blur(6px);
  animation: vxAnnFadeIn 0.25s ease;
}

.vx-ann-overlay.vx-ann-hide {
  opacity: 0;
  transition: opacity 0.22s ease;
}

.vx-ann-frame {
  position: relative;
  max-width: min(720px, 96vw);
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  animation: vxAnnSlideUp 0.28s ease;
}

.vx-ann-image {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.vx-ann-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}

.vx-ann-close:hover {
  background: rgba(234, 88, 12, 0.92);
  transform: scale(1.05);
}

@keyframes vxAnnFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes vxAnnSlideUp {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Ana sayfa duyuru alanı (dashboard home) */
.vx-home-ann {
  margin-bottom: 16px;
  animation: vxAnnFadeIn 0.3s ease;
}

.vx-home-ann.vx-home-ann-hide {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.vx-home-ann-inner {
  position: relative;
  border: 1px solid rgba(201, 135, 14, 0.35);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(201, 135, 14, 0.08) 0%, rgba(15, 23, 42, 0.04) 100%);
}

.vx-home-ann-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.vx-home-ann-close:hover {
  background: rgba(234, 88, 12, 0.9);
}

.vx-home-ann-body {
  padding: 16px 16px 12px;
}

.vx-home-ann-title {
  font-size: 15px;
  font-weight: 800;
  color: #a06808;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-right: 36px;
}

.vx-home-ann-text {
  font-size: 13px;
  line-height: 1.55;
  color: #57534e;
  margin: 0 0 12px;
  padding-right: 28px;
}

.vx-home-ann-visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.vx-home-ann-image {
  display: block;
  width: 100%;
  height: auto;
}
