/* Age Verification Modal Styles */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.age-modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid #fff;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 30px rgba(112, 82, 27, 1);
  animation: modalFadeIn 0.5s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.age-modal-header {
  background: linear-gradient(90deg, #70521B 0%, #3C3210 100%);
  padding: 25px 30px;
  text-align: center;
  border-radius: 8px 8px 0 0;
}

.age-modal-title {
  color: #CBB033;
  font-family: Cinzel, sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.age-modal-subtitle {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
}

.age-modal-body {
  padding: 30px;
}

.age-modal-disclaimer {
  margin-bottom: 30px;
}

.age-modal-disclaimer p {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.age-modal-disclaimer p:first-child {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

.age-modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.age-modal-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.age-modal-btn-yes {
  background: linear-gradient(135deg, #C79A3A 0%, #6D5D0F 100%);
  color: #fff;
  border: 2px solid #fff;
}

.age-modal-btn-yes:hover {
  background: linear-gradient(135deg, #e8bb4d 0%, #887811 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(112, 82, 27, .4);
}

.age-modal-btn-no {
  background: transparent;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
}

.age-modal-btn-no:hover {
  background: #ff6b6b;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.age-error-message {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid #ff6b6b;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  animation: errorShake 0.5s ease-in-out;
}

@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.age-error-message p {
  color: #ff6b6b;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 767px) {
  .age-modal-content {
    width: 95%;
    max-height: 85vh;
  }
  
  .age-modal-header {
    padding: 20px 20px;
  }
  
  .age-modal-title {
    font-size: 24px;
  }
  
  .age-modal-body {
    padding: 20px;
  }
  
  .age-modal-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .age-modal-btn {
    width: 100%;
    max-width: 250px;
  }
}

@media screen and (max-width: 479px) {
  .age-modal-title {
    font-size: 20px;
  }
  
  .age-modal-subtitle {
    font-size: 14px;
  }
  
  .age-modal-disclaimer p {
    font-size: 13px;
  }
}