/* Lightbox'ın temel stili */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Sayfanın geri kalanı koyulaşsın */
    display: none; /* Başlangıçta görünmesin */
    justify-content: center; /* İçeriği yatayda ortalar */
    align-items: center; /* İçeriği dikeyde ortalar */
    z-index: 9999;
  }
  
  /* İçerik kutusunun stilini belirleyelim */
  .lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    text-align: center;
  }
  
  @media (max-width: 768px) { /* 768px ve daha küçük ekranlar için */
    .lightbox-content {
      width: 100%; /* Mobilde tam genişlikte olacak */
      height: 100%; /* Yükseklik orantılı ayarlanır */
      margin-top: 50%;
      display: block; /* Alt boşluğu önlemek için */
    }
  }
  
  /* Resim stilini belirleyelim */
  #lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    display: block; /* Resmin altına boşluk bırakmamak için */
    margin: 0 auto; /* Resmi yatayda ortalar */
  }
  
  /* Kapat butonunun stilini belirleyelim */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: black;
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 15px;
  }
  
  .close-btn:hover {
    background-color: white;
    color: black;
  }
  
  /* Advert butonunun stilini belirleyelim */
  .advert-btn {
    position: absolute;
    margin-top: 10px;
    left: 20%;
    right:20%;
    background-color: black;
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 15px;
  }
  
  .advert-btn:hover {
    background-color: white;
    color: black;
  }
  
  /* Geri sayım mesajının stilini ekleyelim */
  #countdown {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 15px;
  }
  