/* ── Community gallery page ───────────────────────────────────────── */

.community-gallery {
  --cg-bg: #050506;
  --cg-surface: #0c0c12;
  --cg-card: #101018;
  --cg-border: rgba(255, 255, 255, 0.08);
  --cg-border-hover: rgba(251, 191, 36, 0.45);
  --cg-gold: #fbbf24;
  --cg-gold-dim: rgba(251, 191, 36, 0.12);
  --cg-muted: rgba(255, 255, 255, 0.5);
  --cg-radius: 16px;
  min-height: calc(100vh - 56px);
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(251, 191, 36, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(167, 139, 250, 0.05), transparent 50%),
    var(--cg-bg) !important;
}

/* Hero */
.community-hero {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 4px;
}

.community-hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.community-hero-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f8fafc;
}

.community-hero-icon {
  width: 32px !important;
  height: 32px !important;
  color: var(--cg-gold) !important;
  flex-shrink: 0;
}

.community-hero-count {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cg-gold);
  background: var(--cg-gold-dim);
  border: 1px solid rgba(251, 191, 36, 0.28);
}

.community-hero-sub {
  margin: 0;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--cg-muted);
}

/* Search */
.community-search {
  display: flex;
  gap: 10px;
  max-width: 480px;
}

.community-search-field {
  position: relative;
  flex: 1;
}

.community-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px !important;
  height: 18px !important;
  color: rgba(255, 255, 255, 0.35) !important;
  pointer-events: none;
}

.community-search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: 12px;
  border: 1px solid var(--cg-border);
  background: rgba(255, 255, 255, 0.04);
  color: #f8fafc;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.community-search-input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.community-search-input:focus {
  outline: none;
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.community-search-btn {
  flex-shrink: 0;
  padding: 12px 22px;
  border: 0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  color: #0a0a0a;
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.25);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.community-search-btn:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 24px rgba(251, 191, 36, 0.35);
  transform: translateY(-1px);
}

/* Grid */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

@media (min-width: 900px) {
  .community-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Card */
.community-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--cg-radius);
  overflow: hidden;
  background: var(--cg-card);
  border: 1px solid var(--cg-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.community-card:hover {
  transform: translateY(-4px);
  border-color: var(--cg-border-hover);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(251, 191, 36, 0.08);
}

.community-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px 16px;
  flex: 1;
}

.community-card-name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  font-family: ui-monospace, "Cascadia Code", "SF Mono", monospace;
  color: #f1f5f9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.02em;
}

.community-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.community-card-avatar {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--cg-gold);
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.22);
}

.community-card-author-name {
  font-size: 12px;
  color: var(--cg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.community-card-import {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.25;
  color: var(--cg-gold) !important;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.22);
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.community-import-label-main {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--cg-gold);
}

.community-import-label-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(253, 230, 138, 0.72);
}

.community-card-import::before {
  display: none;
}

.community-card-import .community-import-label-main::before {
  content: "↓ ";
  font-size: 12px;
  opacity: 0.85;
}

.community-card-import:hover {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(251, 191, 36, 0.45);
  color: #fde68a !important;
}

/* Loading / empty */
.community-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 56px 24px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(253, 230, 138, 0.85);
}

.community-loading svg {
  width: 40px;
  height: 40px;
  color: #fbbf24;
}

@keyframes community-spin {
  to {
    transform: rotate(360deg);
  }
}

.community-loading-skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  padding: 8px 0 32px;
}

.community-skeleton-card {
  height: 280px;
  border-radius: var(--cg-radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.03) 8%,
    rgba(251, 191, 36, 0.07) 18%,
    rgba(255, 255, 255, 0.03) 33%
  );
  background-size: 200% 100%;
  animation: community-shimmer 1.4s ease-in-out infinite;
}

@keyframes community-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.community-empty {
  padding: 56px 32px;
  text-align: center;
  border-radius: var(--cg-radius);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.community-empty p {
  margin: 0 0 12px;
  color: var(--cg-muted);
  font-size: 15px;
}

.community-empty a {
  color: var(--cg-gold) !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.community-empty a:hover {
  text-decoration: underline;
}

/* ── Thumbnails ───────────────────────────────────────────────────── */

.community-prop-thumb {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  cursor: pointer;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(251, 191, 36, 0.06), transparent 60%),
    linear-gradient(165deg, #16161f 0%, #0a0a10 100%) !important;
  transition: filter 0.25s ease;
}

.community-prop-thumb:hover {
  filter: brightness(1.05);
}

.community-prop-thumb:focus-visible {
  outline: 2px solid rgba(251, 191, 36, 0.65);
  outline-offset: -2px;
}

.community-thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.community-prop-thumb::before {
  content: "Prop Maker";
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 191, 36, 0.55);
  pointer-events: none;
}

.community-card:hover .community-thumb-img {
  transform: scale(1.04);
}

.community-thumb-3d-hint {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.community-thumb-3d-hint::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fbbf24' stroke-width='2'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center/contain no-repeat;
  vertical-align: middle;
}

.community-prop-thumb:hover .community-thumb-3d-hint {
  opacity: 1;
}

.community-prop-thumb[data-has-model="true"]::after {
  content: "3D";
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  color: var(--cg-gold);
  border: 1px solid rgba(251, 191, 36, 0.35);
  pointer-events: none;
}

/* ── Detail modal ─────────────────────────────────────────────────── */

.community-3d-modal {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.community-3d-modal[hidden] {
  display: none !important;
}

body.community-3d-modal-open {
  overflow: hidden;
}

.community-3d-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.community-3d-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(92vh, 760px);
  display: grid;
  grid-template-columns: 1fr min(360px, 38%);
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a10;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.65);
}

.community-3d-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}

.community-3d-modal-close:hover {
  background: rgba(0, 0, 0, 0.85);
}

.community-3d-modal-viewer {
  position: relative;
  min-height: 320px;
  height: min(52vh, 440px);
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(251, 191, 36, 0.05), transparent),
    #0d0d14;
}

.community-3d-modal-viewer.no-model {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.community-3d-modal-mount {
  position: absolute;
  inset: 0;
}

.community-3d-modal-mount canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.community-3d-modal-loading {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(253, 230, 138, 0.9);
  background: radial-gradient(circle at 50% 40%, rgba(251, 191, 36, 0.06), rgba(8, 8, 12, 0.92));
  pointer-events: none;
}

.community-3d-modal-loading::before {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid rgba(251, 191, 36, 0.16);
  border-top-color: #fbbf24;
  animation: community-spin 0.75s linear infinite;
}

.community-3d-modal-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.community-3d-modal-loading.is-error {
  color: #fca5a5;
}

.community-3d-modal-cam-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 3;
  margin: 0;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.community-3d-modal-meta {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  background: #0f0f16;
  min-height: 0;
  overflow-y: auto;
}

.community-3d-modal-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.community-3d-modal-reactions .cg-reactions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.community-3d-modal-reactions .cg-react {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.community-3d-modal-reactions .cg-react:hover {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
}

.community-3d-modal-reactions .cg-react-like.is-active {
  color: #fb7185;
}

.community-3d-modal-reactions .cg-react-like.is-active .cg-react-icon path {
  fill: rgba(251, 113, 133, 0.35);
  stroke: #fb7185;
}

.community-3d-modal-reactions .cg-react-fav.is-active {
  color: #fbbf24;
}

.community-3d-modal-reactions .cg-react-fav.is-active .cg-react-icon path {
  fill: rgba(251, 191, 36, 0.28);
  stroke: #fbbf24;
}

.community-3d-modal-reactions .cg-react-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.community-3d-modal-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.community-3d-modal-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.community-3d-modal-info-label {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 10px;
}

.community-3d-modal-info-value {
  flex: 1 1 auto;
  color: #f5f5f5;
  font-weight: 600;
  font-size: 12px;
  text-align: right;
  line-height: 1.35;
}

.community-3d-modal-info-value.is-ok {
  color: #86efac;
}

.community-3d-modal-info-value.is-warn {
  color: #fde68a;
}

.community-3d-modal-info-value.is-bad {
  color: #fca5a5;
}

.community-3d-modal-note {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.48);
}

.community-3d-modal-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  font-family: ui-monospace, monospace;
  color: #f5f5f5;
  word-break: break-word;
}

.community-3d-modal-author {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.community-3d-modal-import {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.22), rgba(245, 158, 11, 0.15));
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.35);
  transition: background 0.18s, transform 0.15s;
}

.community-3d-modal-import .community-import-label-main,
.community-3d-modal-import .community-import-label-sub {
  pointer-events: none;
}

.community-3d-modal-import:hover {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.32), rgba(245, 158, 11, 0.22));
  transform: translateY(-1px);
}

.community-3d-modal-rename {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.community-3d-modal-rename.hidden {
  display: none;
}

.community-3d-modal-rename-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.community-3d-modal-rename-row {
  display: flex;
  gap: 6px;
}

.community-3d-modal-name-input {
  flex: 1;
  min-width: 0;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f5f5f5;
  font-size: 12px;
  font-family: ui-monospace, monospace;
}

.community-3d-modal-name-input:focus {
  outline: none;
  border-color: rgba(251, 191, 36, 0.45);
}

.community-3d-modal-save-name {
  padding: 9px 14px;
  border: 0;
  border-radius: 10px;
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.community-3d-modal-save-name:hover {
  background: rgba(251, 191, 36, 0.32);
}

.community-3d-modal-rename-msg {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  min-height: 14px;
}

.community-3d-modal-delete {
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.community-3d-modal-delete.hidden {
  display: none;
}

.community-3d-modal-delete:hover {
  background: rgba(239, 68, 68, 0.22);
}

@media (max-width: 720px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .community-search {
    flex-direction: column;
    max-width: none;
  }

  .community-3d-modal-panel {
    grid-template-columns: 1fr;
    max-height: 94vh;
    overflow-y: auto;
  }

  .community-3d-modal-meta {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .community-3d-modal-viewer {
    height: 48vw;
    min-height: 240px;
  }
}

@media (max-width: 420px) {
  .community-grid {
    grid-template-columns: 1fr;
  }
}

/* Plan gate — Free vs Creator import */
.community-plan-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(254, 243, 199, 0.95);
  background: linear-gradient(135deg, rgba(69, 26, 3, 0.55), rgba(251, 191, 36, 0.08));
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.community-plan-notice-icon {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.2;
}

.community-plan-notice a {
  color: #fde68a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.community-import-locked {
  opacity: 0.72;
  cursor: not-allowed !important;
  color: rgba(255, 255, 255, 0.55) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  pointer-events: auto;
}

.community-card-import .community-import-label-main,
.community-card-import .community-import-label-sub {
  pointer-events: none;
}

.community-import-locked::before {
  content: none !important;
}

.community-import-locked:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.55) !important;
}

.community-hero-sub a {
  color: var(--cg-gold);
  font-weight: 600;
  text-decoration: underline;
}

.community-import-upgrade-modal[hidden] {
  display: none !important;
}

.community-import-upgrade-modal,
#community-import-confirm-modal,
#community-import-upgrade-modal {
  position: fixed;
  inset: 0;
  z-index: 100100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.community-import-upgrade-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.community-import-upgrade-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 24px 22px 20px;
  border-radius: 16px;
  background: #101018;
  border: 1px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65);
}

.community-import-upgrade-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  cursor: pointer;
}

.community-import-upgrade-title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fde68a;
}

.community-import-upgrade-body {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.community-import-upgrade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.community-import-upgrade-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #451a03 !important;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.community-import-confirm-body {
  line-height: 1.55;
}

.community-import-upgrade-cta-secondary {
  color: #fde68a !important;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.community-import-upgrade-dismiss {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
