#ozelPopupModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.ozel-modal-kutu {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ozel-modal-kutu img {
  display: block;
  width: 100%;
  height: auto;
}

.ozel-modal-alt-metin {
  padding: 16px 20px 20px;
  text-align: center;
  background: #ffffff;
}

.ozel-modal-alt-metin h4 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: bold;
  color: #da1b0c;
}

.ozel-modal-alt-metin p {
  margin: 0 0 14px 0;
  font-size: 14px;
  color: #555555;
}

.ozel-modal-buton {
  display: inline-block;
  background: #da1b0c;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s ease;
}

.ozel-modal-buton:hover {
  background: #b01407;
}

.ozel-modal-kapat {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #333333;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

.ozel-modal-kapat:hover {
  background: #000000;
  color: #ffffff;
}