/* Cookie Consent Styles */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem;
  z-index: 1000;
  display: none;
}

.cookie-consent-banner.show {
  display: block;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-consent-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-consent-btn.accept {
  background: #10B981;
  color: white;
}

.cookie-consent-btn.decline {
  background: #EF4444;
  color: white;
}

.cookie-consent-btn.settings {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-consent-btn:hover {
  opacity: 0.8;
}

/* Age Verification Modal */
.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.age-verification-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  margin: 1rem;
  text-align: center;
}

.age-verification-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.age-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.age-btn.confirm {
  background: #10B981;
  color: white;
}

.age-btn.deny {
  background: #EF4444;
  color: white;
}

.age-btn:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .age-verification-content {
    margin: 0.5rem;
    padding: 1.5rem;
  }
  
  .age-verification-buttons {
    flex-direction: column;
  }
}