:root {
  --brand-color: rgba(177, 32, 84, 1);
  --accent-color: rgba(22, 11, 14, 1);
  --light-accent-color: rgba(42, 25, 29, 1);
  --success-color: #22c55e;
  --danger-color: #ef4444;
  --rating-star-color: #fbbf24;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}


body {
  background: linear-gradient(180deg, #160b0e 0%, #7c3e4f 100%);
  min-height: 100vh;
  width: 100%;
}

.pill {
  font-size: 11px !important;
}

.nationality-name{
  display: none !important;
}

/* Legal Checkboxes */
.legal-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
  width: 100%;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--brand-color);
}

.checkbox-label span {
  flex: 1;
}

.legal-link {
  color: var(--brand-color);
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.2s;
}

.legal-link:hover {
  opacity: 0.8;
}

/* Legal Modal */
.legal-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.legal-modal-content {
  background-color: #fff;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.legal-modal-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 32px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
  transition: color 0.2s;
}

.legal-modal-close:hover {
  color: #000;
}

.legal-modal-body {
  padding: 50px 30px 30px;
  overflow-y: auto;
  color: #333;
}

.legal-modal-body h1 {
  color: var(--brand-color);
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-modal-body h2 {
  color: var(--accent-color);
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-modal-body p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.legal-modal-body ul {
  margin-left: 25px;
  margin-bottom: 12px;
}

.legal-modal-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-modal-body em {
  display: block;
  margin-top: 30px;
  color: #666;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-modal-content {
    max-width: 95%;
    max-height: 85vh;
  }
  
  .legal-modal-body {
    padding: 40px 20px 20px;
  }
  
  .legal-modal-body h1 {
    font-size: 24px;
  }
  
  .legal-modal-body h2 {
    font-size: 18px;
  }
  
  .checkbox-label {
    font-size: 13px;
  }
}
