/* CSS - ageverification/views/css/front.css */
.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: translateY(0);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.popup-content h6 {
  color: #2d3436;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Arial Rounded MT Bold', sans-serif;
}

.popup-content p {
  color: #636e72;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.button-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

#age-confirm {
  background: #3aaa44;
  color: white;
}

#age-confirm:hover {
  background: #3aaa44;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78,205,196,0.3);
}

#age-deny {
  background: #ff6b6b;
  color: white;
}

#age-deny:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

.remember-me {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #636e72;
}
.remember-me label{margin-bottom: 0px;}