body {
  font-family: 'Montserrat', sans-serif;
  background-color: #1f1f1f;
  color: #ffffff;
}
.gradient-text {
  background: linear-gradient(to right, #f91362, #ff8e44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-primary {
  background: linear-gradient(to right, #f91362, #ff8e44);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(249, 19, 98, 0.4);
}
.btn-secondary {
  border: 2px solid #f91362;
  color: #f91362;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: #f91362;
  color: #1f1f1f;
}
.card {
  background-color: #35126A;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.icon-circle {
  background: linear-gradient(to right, #f91362, #ff8e44);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-card {
  background-color: #2a0f50;
  border: 2px solid #f91362;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(249, 19, 98, 0.3);
}
.table-header {
  background-color: #35126A;
}
.table-cell {
  border: 1px solid #4a1c82;
  padding: 0.75rem;
  text-align: center;
}
.table-cell-empty {
  background-color: #2a0f50;
}
.switch input:checked + .slider { background-color: #f91362; }
.switch .slider { background-color: #666; transition: .4s; }
.switch input:checked + .slider:before { transform: translateX(1.25rem); }
.switch .slider:before {
  content: "";
  position: absolute;
  height: 1.25rem; width: 1.25rem;
  left: 0.25rem; bottom: 0.125rem;
  background-color: #fff; transition: .4s; border-radius: 50%;
}
.switch {
  position: relative; display: inline-block; width: 2.5rem; height: 1.5rem;
}
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 9999px;
}
#mobileMenu {
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100vh !important;
  padding-top: 0 !important;
  box-sizing: border-box !important;
}
