/* ─── Beta Page ─── Orange-highlight cards with lab/beta feel */

:root {
  --beta-accent: #f97316;
  --beta-accent-dark: #ea580c;
  --beta-glow: rgba(249, 115, 22, 0.35);
}

body {
  background:
    radial-gradient(ellipse at 60% 10%, rgba(249,115,22,0.08) 0%, transparent 60%),
    #f3f4f6;
}

.nav-link.active .bar {
  background-color: var(--beta-accent);
}

.beta-badge {
  background: var(--beta-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
}

.beta-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  box-shadow:
    0 8px 28px rgba(249, 115, 22, 0.08),
    0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  padding: 1.25rem;
  position: relative;
  margin-top: 22px;
}
.beta-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 18px 44px rgba(249, 115, 22, 0.18),
    0 6px 16px rgba(0,0,0,0.06);
  border-color: var(--beta-accent);
}
.beta-card:hover .card-img {
  transform: scale(1.06);
}
.beta-card:hover .card-icon-circle {
  transform: translateX(-50%) scale(1.12);
}

.beta-card .chip {
  background: #fff7ed;
  color: var(--beta-accent-dark);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 9999px;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 5px rgba(249,115,22,0.05), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.15s ease;
}
.beta-card .chip:hover {
  transform: translateY(-1px);
  border-color: var(--beta-accent);
}

.beta-card .btn-ghost {
  flex: 1;
  padding: 8px 14px;
  border-radius: 9999px;
  border: 1.5px solid #e5e7eb;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
}
.beta-card .btn-ghost:hover {
  border-color: var(--beta-accent);
  color: var(--beta-accent-dark);
  background: #fff7ed;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.beta-card .btn-primary {
  flex: 1;
  padding: 8px 14px;
  border-radius: 9999px;
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: var(--beta-accent);
  box-shadow: 0 4px 12px var(--beta-glow);
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
}
.beta-card .btn-primary:hover {
  background: var(--beta-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px var(--beta-glow);
}

.beta-card .version-tag {
  color: var(--beta-accent-dark);
  font-weight: 600;
}

/* ── Viral circular icon ── */
.card-icon-circle {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--beta-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow:
    0 8px 20px rgba(249,115,22,0.22),
    0 2px 6px rgba(0,0,0,0.08);
  z-index: 3;
  transition: transform 0.25s ease;
}

/* Banner image section - same layout as marketplace */
.card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: linear-gradient(180deg, #fef3c7 0%, #fed7aa 100%);
  border-radius: 16px;
  margin-top: 0px;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(249,115,22,0.06);
  position: relative;
  transition: transform 0.25s ease;
}
.card-img .placeholder-text {
  color: #9ca3af;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ─── Beta Shimmer Skeleton ─── */
.shimmer-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #fef3c7;
  box-shadow: 0 8px 26px rgba(249, 115, 22, 0.08);
  padding: 1.25rem;
  position: relative;
  margin-top: 20px;
}
.shimmer-card .shimmer-circle {
  background: linear-gradient(90deg, #fef3c7 25%, #fed7aa 50%, #fef3c7 75%);
  background-size: 200% 100%;
}
.shimmer-card .shimmer-img {
  background: linear-gradient(90deg, #fef3c7 25%, #fed7aa 50%, #fef3c7 75%);
  background-size: 200% 100%;
}
.shimmer-card .shimmer-line {
  background: linear-gradient(90deg, #fef3c7 25%, #fed7aa 50%, #fef3c7 75%);
  background-size: 200% 100%;
}
