:root {
  --pink: #ff3565;
  --white: #ffffff;
  --black: #000000;
  --gray-bg: #f2f2f2;
  --dark-gray-bg: #303030;
  --gray-text: #444444;
}

#adult-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2147483646;
  display: none;
}

#adult-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 420px;

  text-align: center;
  z-index: 2147483647;
  font-family: Arial, sans-serif;
  display: none;
}

.main {
  background: var(--white);
  padding: 24px 24px 0 24px;
}

.icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon img {
  width: 100%;
  height: 100%;
}

.title {
  font-size: 17px;
  margin-bottom: 14px;
  color: var(--black);
  font-weight: bold;
}

.description {
  background: var(--gray-bg);
  color: var(--black);
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 16px;
}

.subtext {
  font-size: 11px;
  color: var(--gray-text);
  margin-bottom: 20px;
}

#adult-enter-btn {
  width: 100%;
  background: var(--pink);
  color: var(--white);
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  margin-bottom: 18px;
}

.parental-control {
  background: var(--dark-gray-bg);
  padding: 8px;
  font-size: 12px;
  color: var(--white);
}

.obflink {
  cursor: pointer;
  text-decoration: underline;
}

.obflink:hover {
  color: var(--pink) !important;
  text-decoration: underline;
}

.parental-control a:hover {
  color: var(--pink) !important;
  text-decoration: underline;
}
