/* betaNotice.css - Beta notice modal styling */

.beta-notice-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s ease;
  backdrop-filter: blur(2px);
}

.beta-notice-overlay.beta-notice-visible {
  opacity: 1;
}

.beta-notice-overlay.beta-notice-hiding {
  opacity: 0;
}

.beta-notice-modal {
  background: var(--bg-elevated, #2a2a2e);
  border: 1px solid var(--border, #4b4b50);
  border-radius: 12px;
  width: 90%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.2s ease;
}

.beta-notice-visible .beta-notice-modal {
  transform: scale(1) translateY(0);
}

.beta-notice-hiding .beta-notice-modal {
  transform: scale(0.95) translateY(10px);
}

.beta-notice-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 16px;
  text-align: center;
}

.beta-notice-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent, #d18b3c) 0%, var(--accent-muted, #b8956e) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.beta-notice-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.beta-notice-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary, #f5f5f5);
  margin: 0;
}

.beta-notice-body {
  padding: 0 24px 20px;
  color: var(--text-secondary, #aaa);
  font-size: 14px;
  line-height: 1.6;
}

.beta-notice-body p {
  margin: 0 0 12px;
}

.beta-notice-body p:last-child {
  margin-bottom: 0;
}

.beta-notice-body strong {
  color: var(--accent, #d18b3c);
  font-weight: 600;
}

.beta-notice-body ul {
  margin: 12px 0;
  padding-left: 20px;
}

.beta-notice-body li {
  margin-bottom: 6px;
}

.beta-notice-body li:last-child {
  margin-bottom: 0;
}

.beta-notice-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border, #4b4b50);
  background: var(--bg-panel, #242428);
  border-radius: 0 0 12px 12px;
}

.beta-notice-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary, #aaa);
  user-select: none;
}

.beta-notice-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent, #d18b3c);
  cursor: pointer;
}

.beta-notice-checkbox:hover {
  color: var(--text-primary, #f5f5f5);
}

.beta-notice-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
}
