/* SkyPeakLimits Adult Verification Pro - v1.0.5 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body.avp-body {
  width: 100%; height: 100%;
  font-family: var(--avp-font, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  color: var(--avp-text, #ffffff);
  background-color: var(--avp-bg-color, #0a0a0a);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}

.avp-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9990;
}

.avp-wrapper {
  position: relative; z-index: 9999;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

.avp-container {
  width: 100%; max-width: var(--avp-cont-width, 520px);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.avp-logo { text-align: center; margin-bottom: 20px; }
.avp-logo img { max-width: 160px; max-height: 80px; object-fit: contain; }

h1.avp-title {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 700; text-align: center;
  color: var(--avp-primary, #ff3366);
  margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.02em;
}
h2.avp-subtitle {
  font-size: clamp(0.82rem, 2.2vw, 0.96rem);
  font-weight: 400; text-align: center;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px; line-height: 1.6;
}

.avp-error {
  background: rgba(255,60,60,0.18);
  border: 1px solid rgba(255,60,60,0.5);
  border-radius: 8px; padding: 10px 14px;
  font-size: 0.88rem; color: #ff8080;
  margin-bottom: 18px; text-align: center;
}

.avp-confirmations {
  background: rgba(255,255,255,0.05);
  border-radius: 10px; padding: 14px 18px;
  margin-bottom: 22px; font-size: 0.82rem;
  color: rgba(255,255,255,0.65); line-height: 1.6;
}
.avp-confirmations p { margin-bottom: 6px; font-weight: 500; color: rgba(255,255,255,0.8); }
.avp-confirmations ul { list-style: disc; padding-left: 18px; }
.avp-confirmations li { margin-bottom: 3px; }

.avp-form { display: flex; flex-direction: column; gap: 16px; }

.avp-field-group { display: flex; flex-direction: column; gap: 6px; }
.avp-field-group > label {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em; text-transform: uppercase;
}
.avp-field-hint {
  font-size: 0.76rem; color: rgba(255,255,255,0.4); margin-top: 4px;
}

/* Date of birth row */
.avp-dob-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1.2fr;
  gap: 8px;
}

/* Shared input / select styles */
.avp-select,
.avp-year-input,
.avp-captcha-row input[type="number"] {
  width: 100%; padding: 12px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff; font-size: 0.95rem; outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
}
.avp-select { cursor: pointer; padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; }
.avp-select option { background: #1a1a2e; color: #fff; }
.avp-year-input::-webkit-outer-spin-button,
.avp-year-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.avp-year-input { -moz-appearance: textfield; }
.avp-select:focus,
.avp-year-input:focus,
.avp-captcha-row input:focus {
  border-color: var(--avp-primary, #ff3366);
  background: rgba(255,255,255,0.12);
}
.avp-select::placeholder,
.avp-year-input::placeholder { color: rgba(255,255,255,0.3); }

/* Captcha */
.avp-captcha-row {
  display: flex; align-items: center; gap: 10px;
}
.avp-captcha-challenge {
  background: rgba(255,255,255,0.1);
  border-radius: 8px; padding: 11px 14px;
  font-size: 1.05rem; font-weight: 600;
  white-space: nowrap; color: #fff;
  min-width: 90px; text-align: center;
}
.avp-captcha-row input { flex: 1; }
.avp-captcha-refresh {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; border-radius: 8px;
  padding: 10px 14px; font-size: 1.1rem;
  cursor: pointer; transition: background 0.2s;
  flex-shrink: 0;
}
.avp-captcha-refresh:hover { background: rgba(255,255,255,0.2); }

/* Checkboxes */
.avp-checkbox-group { display: flex; align-items: flex-start; }
.avp-checkbox-label {
  display: flex; align-items: flex-start;
  gap: 10px; cursor: pointer;
  font-size: 0.87rem; color: rgba(255,255,255,0.8); line-height: 1.5;
}
.avp-checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  accent-color: var(--avp-primary, #ff3366);
  margin-top: 2px; cursor: pointer;
}
.avp-checkbox-label a { color: var(--avp-primary, #ff3366); text-decoration: none; }
.avp-checkbox-label a:hover { text-decoration: underline; }

/* Buttons */
.avp-buttons { display: flex; gap: 12px; margin-top: 6px; }
.avp-btn {
  flex: 1; padding: 14px 20px;
  border-radius: var(--avp-btn-radius, 8px);
  border: none; font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; text-align: center; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  transition: opacity 0.2s, transform 0.15s;
}
.avp-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.avp-btn:active { transform: translateY(0); }
.avp-btn-enter {
  background: linear-gradient(135deg, var(--avp-primary, #ff3366), var(--avp-secondary, #cc0044));
  color: #fff;
}
.avp-btn-exit {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
}
.avp-btn-exit:hover { background: rgba(255,255,255,0.16); color: #fff; }

/* Loading state */
.avp-btn-enter.avp-loading { opacity: 0.7; pointer-events: none; }
.avp-btn-enter.avp-loading::after {
  content: '';
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff;
  border-radius: 50%; animation: avp-spin 0.7s linear infinite; margin-left: 8px;
}
@keyframes avp-spin { to { transform: rotate(360deg); } }

/* Footer */
.avp-footer {
  margin-top: 22px; font-size: 0.75rem;
  color: rgba(255,255,255,0.4); text-align: center; line-height: 1.7;
}
.avp-footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
.avp-footer a:hover { color: #fff; text-decoration: underline; }

/* Responsive */
@media (max-width: 600px) {
  .avp-container { padding: 28px 18px; }
  .avp-buttons   { flex-direction: column; }
  .avp-dob-row   { grid-template-columns: 1fr 1fr; }
  .avp-dob-row .avp-year-input { grid-column: span 2; }
  .avp-captcha-row { flex-wrap: wrap; }
  .avp-captcha-challenge { width: 100%; }
}
