/* ============================================================
   LÍNA — Beta Notice Modal
   ============================================================ */

/* Overlay */
.beta-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  animation: modalFadeIn 0.3s ease forwards;
}

.beta-modal-overlay.closing {
  animation: modalFadeOut 0.25s ease forwards;
}

/* Modal card */
.beta-modal {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 40px 36px 36px;
  position: relative;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(209, 139, 60, 0.1),
    0 0 120px rgba(209, 139, 60, 0.06);
  transform: translateY(16px) scale(0.97);
  animation: modalSlideIn 0.35s ease 0.05s forwards;
}

.beta-modal-overlay.closing .beta-modal {
  animation: modalSlideOut 0.2s ease forwards;
}

/* Badge */
.beta-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  border-radius: 100px;
  background: var(--accent-glow);
  border: 1px solid rgba(209, 139, 60, 0.25);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.beta-modal-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

/* Title */
.beta-modal h2 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

/* Body text */
.beta-modal p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.beta-modal p:last-of-type {
  margin-bottom: 0;
}

/* Divider */
.beta-modal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

/* Fine print */
.beta-modal-fine {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Button area */
.beta-modal-actions {
  margin-top: 28px;
}

.beta-modal-actions .btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px 28px;
}

/* Animations */
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes modalSlideIn {
  from { transform: translateY(16px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes modalSlideOut {
  from { transform: translateY(0) scale(1); opacity: 1; }
  to { transform: translateY(10px) scale(0.98); opacity: 0; }
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .beta-modal {
    padding: 32px 24px 28px;
  }

  .beta-modal h2 {
    font-size: 24px;
  }
}
