/* Disclaimer Modal Styles - Standalone Component */
.disclaimer-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(3px);
  padding-right: 0;
}

.disclaimer-modal {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: disclaimerSlideIn 0.3s ease-out;
  display: flex;
    flex-direction: column;
}

.disclaimer-modal::-webkit-scrollbar {
  width: 6px;
}

.disclaimer-modal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.disclaimer-modal::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.5);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

@keyframes disclaimerSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.disclaimer-modal-header {
  border-bottom: 2px solid #e0e0e0;
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
}

.disclaimer-modal-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
}

.disclaimer-warning-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: #e74c3c;
}

.disclaimer-modal-content {
  margin-bottom: 2rem;
  padding: 2rem;
}

.disclaimer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.disclaimer-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.disclaimer-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.disclaimer-list li:before {
  content: "•";
  color: #e74c3c;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.disclaimer-modal-footer {
  display: flex;
  justify-content: space-evenly;
  border-top: 1px solid #e0e0e0;
  padding: 2rem;
  position: sticky;
  bottom: 0;
  background: rgba(255, 255, 255, 0.747);
  backdrop-filter: blur(30px);
}

.disclaimer-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.disclaimer-btn-accept:hover {
  background-color: #58d68a5b;
  transform: translateY(-1px);
}

.disclaimer-btn-decline:hover {
  background-color: #ff72624b;
  transform: translateY(-1px);
}

.disclaimer-hidden {
  display: none;
}

/* Blur effect for entire body when disclaimer is active */
body.disclaimer-active > *:not(.disclaimer-modal-overlay) {
  filter: blur(2px);
  pointer-events: none;
}

/* Demo content styles (remove these when integrating) */
.demo-content {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
  color: #333;
}
