.cov-av {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cov-av[hidden] {
  display: none;
}

.cov-av-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 14, 0.92);
  backdrop-filter: blur(8px);
}

.cov-av-dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, #1a1f29 0%, #11151c 100%);
  border: 1px solid var(--cov-border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  color: #fff;
}

.cov-av-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.cov-av-logo img {
  max-height: 64px;
  width: auto;
}

.cov-av-title {
  font-family: var(--cov-font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.cov-av-desc {
  color: var(--cov-muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.cov-av-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cov-card);
  border: 1px solid var(--cov-border);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  margin-bottom: 14px;
  cursor: pointer;
}
.cov-av-checkbox input {
  accent-color: var(--cov-yellow);
}

.cov-av-consent {
  color: var(--cov-muted-2);
  font-size: 11.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cov-av-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cov-av-confirm[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.3);
}

@media (max-width: 480px) {
  .cov-av-dialog {
    padding: 26px 22px;
  }
}
