/* ============================================================
   MIHOMO BUILDER — COPY CONFIG CARD
   ============================================================ */

.mihomo-copy-config-card {
  margin-top: 1.2rem;
  overflow: hidden;
}

.mihomo-copy-config-head-icon {
  background: rgba(59, 130, 246, 0.11);
  color: #2563eb;
}

/* ============================================================
   COPY CONFIG INNER BLOCK
   ============================================================ */

.mihomo-copy-config-box {
  padding: 1.1rem;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 30px rgba(15, 23, 42, 0.04);
}

.mihomo-copy-config-box__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 0.9rem;
  align-items: center;
}

.mihomo-copy-config-box__text {
  min-width: 0;
}

.mihomo-copy-config-box__title {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
}

.mihomo-copy-config-box__subtitle {
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: #6b7280;
}

/* ============================================================
   BUTTON
   ============================================================ */

.mihomo-copy-config-btn {
  -webkit-appearance: none;
  appearance: none;
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.07);
  color: #1556b2;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.mihomo-copy-config-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.28);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
}

.mihomo-copy-config-btn:active {
  transform: translateY(0);
}

.mihomo-copy-config-btn .material-icons {
  font-size: 1.1rem;
}

.mihomo-copy-config-btn__text {
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .mihomo-copy-config-box__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .mihomo-copy-config-box {
    padding: 0.95rem;
    border-radius: 18px;
  }

  .mihomo-copy-config-btn {
    min-height: 48px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mihomo-copy-config-btn {
    transition: none !important;
  }
}