/* ÇEREZ BANNER'IN TAMAMI */
#cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7); /* DÜŞÜRÜLDÜ: 0.85 → 0.6 */
  color: #fff;
  padding: 20px 30px;
  z-index: 9;
  font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px); /* daha yumuşak blur */
  -webkit-backdrop-filter: blur(4px);
  display: none;
  max-width: 500px;
  width: 90%;
}

/* Yazıların daha görünür olması için gölge */
#cookie-banner p,
#cookie-banner a {
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}


/* ÇARPININ KENDİSİ (X) */
.cookie-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  padding: 2px 5px;     /* DAHA KÜÇÜK boşluk */
  margin: 0;
  line-height: 1;
  border-radius: 3px;   /* daha az yuvarlak */
  display: inline-block;
  transition: background 0.2s;
}

.cookie-close:hover {
  background-color: rgba(255, 0, 0, 0.6);
}


/* BUTONLAR */
#cookie-banner button {
  padding: 10px 20px;
  margin: 10px 5px 0 5px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#cookie-banner button:first-of-type {
  background-color: #000000;
  color: white;
}

#cookie-banner button:nth-of-type(2) {
  background-color: #555;
  color: white;
}

/* LİNKLER BEYAZ */
#cookie-banner a {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}
/* Normal görünüm (masaüstü ve genel) */
#cookie-banner {
  bottom: 30px; /* varsayılan */
}

/* Sadece mobil cihazlar için düzeltme */
@media only screen and (max-width: 768px) {
  #cookie-banner {
    bottom: 0px; /* mobilde daha aşağıda */
  }
}



