    /*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Oct 26, 2025, 11:00:52 AM
    Author     : myski
*/

/* Full-screen vignette overlay */
#vignette-ad {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Hide the ad when closed */
#vignette-ad.hidden {
  opacity: 0;
  visibility: hidden;
}

.ad-content {
  background: #fff;
  /*padding: 2rem 3rem;*/
  padding: 1rem 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  animation: zoomIn 0.5s ease;
  width: 35%;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

button#close-ad {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #007bff;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

button#close-ad:hover {
  background: #0056b3;
}
