#age-verification-overlay {
      position: fixed;
      z-index: 9999;
      inset: 0;
      background: rgba(0,0,0,0.9);
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: sans-serif;
    }
  
    .age-box {
      background: #222;
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 0 20px rgba(255,255,255,0.2);
    }
  
    .age-box h2 {
      margin-bottom: 20px;
      font-size: 1.5rem;
    }
  
    .buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }
  
    .buttons button {
      padding: 10px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }
  
    #age-yes {
      background-color: #4caf50;
      color: white;
    }
  
    #age-no {
      background-color: #f44336;
      color: white;
    }
  
    .buttons button:hover {
      filter: brightness(1.1);
    }



/* style dla submit button*/

.glowing-outline {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  padding: 20px 40px;
  text-align: center;
  border: 3px solid transparent;
  border-radius: 10px;
  position: relative;
  background-color: #2a2a2a;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: 0.5s;
 }
 
 
 .glowing-outline:before, .glowing-outline:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 3px solid #00ffcc;
  box-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc, 0 0 60px #00ffcc, 0 0 80px #00ffcc;
  opacity: 0;
  transition: 0.5s;
 }
 
 
 .glowing-outline:before {
  filter: blur(10px);
 }
 
 
 .glowing-outline:hover:before, .glowing-outline:hover:after {
  opacity: 1;
 }


 mark {
  background: none;
  color: #fff;
  font-size: 2rem;
  position: relative;
  padding: 0 4px;
  font-weight: bold;
  text-shadow: 0 0 5px #00f5ff, 0 0 10px #00f5ff;
}

mark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00f5ff44, #00f5ff11);
  border-radius: 4px;
  z-index: -1;
  filter: blur(2px);
  animation: pulse-neon 2s infinite;
}

@keyframes pulse-neon {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}