:root {
    --hc-navy: #0f2f52;
    --hc-navy-light: #14406e;
    --hc-gold: #d4a017;
    --hc-gold-light: #f6c500;
    --hc-cream: #fff8e6;
    --hc-green: #1e8a4c;
    --hc-red: #c0392b;
    --hc-shadow: 0 6px 20px rgba(15, 47, 82, 0.15);
    --hc-radius: 16px;
}

.hc-shell {
    font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
    max-width: 480px;
    margin: 0 auto;
    min-height: 100dvh;
    background: linear-gradient(180deg, var(--hc-cream) 0%, #ffffff 220px);
    display: flex;
    flex-direction: column;
    position: relative;
}

.hc-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--hc-navy);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.hc-topbar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.hc-topbar h1 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.02em;
}

.hc-content {
    flex: 1;
    padding: 16px 16px 90px;
}

.hc-bottomnav {
    position: sticky;
    bottom: 0;
    display: flex;
    background: #fff;
    border-top: 1px solid #e7e0cc;
    box-shadow: 0 -4px 16px rgba(15, 47, 82, 0.08);
}

.hc-bottomnav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 10px 0 8px;
    text-decoration: none;
    color: #8a93a3;
    font-size: 0.72rem;
    font-weight: 600;
}

.hc-bottomnav a.active {
    color: var(--hc-navy);
}

.hc-bottomnav a .hc-nav-icon {
    font-size: 1.35rem;
}

.hc-bottomnav a.active .hc-nav-icon {
    filter: drop-shadow(0 0 0 var(--hc-gold));
}

.hc-h1 {
    font-weight: 800;
    color: var(--hc-navy);
    font-size: 1.4rem;
    margin: 4px 0 14px;
}

.hc-card {
    background: #fff;
    border-radius: var(--hc-radius);
    box-shadow: var(--hc-shadow);
    padding: 14px 16px;
    margin-bottom: 12px;
}

.hc-shop-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hc-shop-coin {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hc-shop-coin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hc-shop-info {
    flex: 1;
    min-width: 0;
}

.hc-shop-name {
    font-weight: 700;
    color: var(--hc-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hc-shop-distance {
    font-size: 0.82rem;
    color: #6b7788;
}

.hc-badge-pill {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
}

.hc-badge-pill.in-range {
    background: #e3f6ea;
    color: var(--hc-green);
}

.hc-badge-pill.super {
    background: #fff3d6;
    color: var(--hc-gold);
}

.hc-badge-pill.claimed {
    background: #eef0f3;
    color: #8a93a3;
}

.hc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 22px;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.1s ease;
}

.hc-btn:active {
    transform: scale(0.97);
}

.hc-btn-primary {
    background: linear-gradient(135deg, var(--hc-gold-light), var(--hc-gold));
    color: var(--hc-navy);
    box-shadow: 0 4px 14px rgba(212, 160, 23, 0.45);
}

.hc-btn-secondary {
    background: var(--hc-navy);
    color: #fff;
}

.hc-btn-block {
    width: 100%;
}

.hc-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hc-empty {
    text-align: center;
    color: #6b7788;
    padding: 40px 20px;
}

.hc-error {
    background: #fdecea;
    color: var(--hc-red);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    margin-bottom: 12px;
}

.hc-success {
    background: #e3f6ea;
    color: var(--hc-green);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    margin-bottom: 12px;
}

.hc-stats-row {
    display: flex;
    gap: 10px;
}

.hc-stat {
    flex: 1;
    text-align: center;
    background: #fff;
    border-radius: var(--hc-radius);
    box-shadow: var(--hc-shadow);
    padding: 14px 8px;
}

.hc-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hc-navy);
}

.hc-stat-label {
    font-size: 0.72rem;
    color: #8a93a3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hc-badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hc-badge-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--hc-shadow);
    text-align: center;
    padding: 12px 6px;
}

.hc-badge-item .icon {
    font-size: 1.8rem;
}

.hc-badge-item .label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--hc-navy);
    margin-top: 4px;
}

.hc-leaderboard-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 4px;
    border-bottom: 1px solid #f0ede0;
}

.hc-leaderboard-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--hc-navy);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hc-leaderboard-row:nth-child(1) .hc-leaderboard-rank {
    background: var(--hc-gold);
    color: var(--hc-navy);
}

.hc-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.hc-tab {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    background: #eef0f3;
    color: #6b7788;
    border: none;
    cursor: pointer;
}

.hc-tab.active {
    background: var(--hc-navy);
    color: #fff;
}

/* Catch screen */
.hc-catch-view {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 50;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hc-catch-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hc-catch-topbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    color: #fff;
}

.hc-catch-close {
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
}

/* Mini radar HUD (discovery coins only) — a real reading of which way to turn and how close
   you are, driven frame-by-frame by coinmotion.js from the same data the hunt itself uses. */
.hc-radar-wrap {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(39, 184, 255, 0.55);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.hc-radar-wrap svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hc-radar-pulse {
    transform-origin: 200px 200px;
}

.hc-radar-coin {
    transition: opacity 0.2s ease;
}

.hc-catch-coin-wrap {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    perspective: 700px;
}

.hc-catch-coin {
    position: relative;
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    /* Starts hidden — coinmotion.js reveals it with hc-pop-in after a short delay, then
       switches to hc-coin-live for the idle float+tilt wobble. No animation here in the base
       rule: an `animation` on `transform` would override this static scale/opacity from frame 0. */
    opacity: 0;
    transform: scale(0.3);
}

.hc-catch-coin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* The coin art has its own gold shading and edge — this stands in for the box-shadow glow
       the old solid-color ball had, so it still reads as sitting above the camera feed. */
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
}

/* Coin "portal" effect — float+tilt wobble, a soft glow behind the coin, a light beam, and a
   multi-ring pulsing portal beneath it. Adapted from a client-provided animation mockup, kept in
   the app's gold palette (rather than the mockup's cyan) to match the coin art and the rest of
   the UI. All pieces are separate elements/animations rather than piling multiple `animation`s
   onto one element's `transform` — those don't compose, the last one simply wins. */
@keyframes hc-coin-live {
    0%, 100% { transform: translateY(0) rotateZ(-1.5deg) rotateY(-3deg) scale(1); }
    50% { transform: translateY(-16px) rotateZ(1.5deg) rotateY(4deg) scale(1.03); }
}

.hc-coin-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 221, 80, 0.65) 0%,
        rgba(255, 190, 0, 0.3) 34%,
        rgba(255, 170, 0, 0.1) 58%,
        transparent 76%);
    filter: blur(14px);
    animation: hc-coin-glow-pulse 2.8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes hc-coin-glow-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1.15); }
    50% { opacity: 1; transform: scale(1.35); }
}

.hc-coin-beam {
    position: absolute;
    left: 50%;
    bottom: -46px;
    width: 4px;
    height: 60px;
    transform: translateX(-50%);
    border-radius: 4px;
    background: linear-gradient(to bottom,
        rgba(255, 221, 80, 0),
        rgba(255, 210, 60, 0.85) 25%,
        rgba(246, 197, 0, 0.9) 65%,
        rgba(246, 197, 0, 0));
    box-shadow: 0 0 7px rgba(255, 210, 60, 0.85), 0 0 16px rgba(246, 197, 0, 0.6);
    animation: hc-beam-pulse 1.6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hc-beam-pulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scaleY(0.85); }
    50% { opacity: 1; transform: translateX(-50%) scaleY(1.1); }
}

.hc-coin-portal {
    position: absolute;
    left: 50%;
    bottom: -78px;
    width: 130px;
    height: 44px;
    transform: translateX(-50%);
    pointer-events: none;
}

.hc-coin-portal-floor {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(246, 197, 0, 0.28) 0%,
        rgba(246, 197, 0, 0.12) 45%,
        transparent 75%);
    filter: blur(3px);
}

.hc-coin-portal-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 92px;
    height: 30px;
    border: 2px solid rgba(255, 214, 70, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.55);
    box-shadow: 0 0 6px rgba(255, 214, 70, 0.85), 0 0 14px rgba(246, 197, 0, 0.55);
    opacity: 0;
}

.hc-coin-portal-ring.r1 { animation: hc-portal-ring-pulse 2.4s linear infinite 0s; }
.hc-coin-portal-ring.r2 { animation: hc-portal-ring-pulse 2.4s linear infinite 0.8s; }
.hc-coin-portal-ring.r3 { animation: hc-portal-ring-pulse 2.4s linear infinite 1.6s; }

@keyframes hc-portal-ring-pulse {
    0% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.55); }
    72% { opacity: 0.2; }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.65); }
}

.hc-coin-portal-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 84px;
    height: 24px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid #ffe27a;
    box-shadow: 0 0 6px #ffd447, 0 0 14px rgba(246, 197, 0, 0.75), inset 0 0 10px rgba(255, 226, 122, 0.5);
    animation: hc-portal-core-pulse 1.45s ease-in-out infinite;
}

@keyframes hc-portal-core-pulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.96); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hc-coin-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffe56a;
    box-shadow: 0 0 6px #ffd34d;
    opacity: 0;
    pointer-events: none;
}

.hc-coin-sparkle.s1 { left: 12%; top: 30%; animation: hc-sparkle 2.4s ease-in-out infinite 0.1s; }
.hc-coin-sparkle.s2 { left: 80%; top: 20%; animation: hc-sparkle 2.8s ease-in-out infinite 0.55s; }
.hc-coin-sparkle.s3 { left: 6%; top: 60%; animation: hc-sparkle 2.3s ease-in-out infinite 1s; }
.hc-coin-sparkle.s4 { left: 88%; top: 55%; animation: hc-sparkle 2.6s ease-in-out infinite 1.35s; }
.hc-coin-sparkle.s5 { left: 45%; top: 8%; animation: hc-sparkle 3s ease-in-out infinite 0.9s; }
.hc-coin-sparkle.s6 { left: 60%; top: 68%; animation: hc-sparkle 2.1s ease-in-out infinite 0.4s; }

@keyframes hc-sparkle {
    0%, 100% { opacity: 0; transform: translateY(10px) scale(0.2); }
    35% { opacity: 1; }
    70% { opacity: 0.45; transform: translateY(-24px) scale(1); }
}


@keyframes hc-pop-in {
    0% { opacity: 0; transform: scale(0.3) translateY(0); }
    60% { opacity: 1; transform: scale(1.15) translateY(-6px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}


.hc-catch-bottom {
    position: relative;
    z-index: 2;
    padding: 18px 20px 30px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
}

.hc-catch-hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 4px 0 0;
}

.hc-catch-code-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: none;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.hc-result-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 47, 82, 0.92);
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 24px;
    gap: 10px;
}

.hc-result-overlay .big-coin {
    font-size: 4rem;
}

.hc-result-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
}

.hc-nickname-form {
    display: flex;
    gap: 8px;
}

.hc-nickname-form input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #d8dde5;
}

/* Auth pages (Login/Register/etc.) — the gradient fills the full viewport width (nicer for shop
   owners/admins logging in from a desktop PC), while .hc-auth-inner keeps the actual form at a
   readable, mobile-matching column width, centered within it. */
.hc-auth-wrap {
    font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
    width: 100%;
    min-height: 100dvh;
    background: linear-gradient(180deg, var(--hc-cream) 0%, #ffffff 260px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.hc-auth-inner {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hc-auth-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.hc-auth-title {
    font-weight: 800;
    color: var(--hc-navy);
    font-size: 1.5rem;
    margin: 0 0 4px;
}

.hc-auth-subtitle {
    color: #6b7788;
    font-size: 0.9rem;
    margin: 0 0 24px;
    text-align: center;
}

.hc-auth-card {
    width: 100%;
    background: #fff;
    border-radius: var(--hc-radius);
    box-shadow: var(--hc-shadow);
    padding: 24px 22px;
}

.hc-form-group {
    margin-bottom: 16px;
}

.hc-label {
    display: block;
    font-weight: 600;
    color: var(--hc-navy);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.hc-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d8dde5;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
}

.hc-input:focus {
    outline: none;
    border-color: var(--hc-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.hc-checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 18px;
}

.hc-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8a93a3;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 20px 0;
}

.hc-divider::before,
.hc-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee7d4;
}

.hc-auth-links {
    text-align: center;
    margin-top: 18px;
    font-size: 0.88rem;
    color: #6b7788;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hc-link {
    color: var(--hc-navy);
    font-weight: 600;
    text-decoration: none;
}

.hc-link:hover {
    text-decoration: underline;
}

/* Reset default button chrome when .hc-link is used on a <button> (e.g. PasskeySubmit). */
button.hc-link {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: 0.88rem;
    cursor: pointer;
}

.text-danger,
.validation-message {
    color: var(--hc-red);
    font-size: 0.82rem;
}

.hc-spinner {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(15, 47, 82, 0.2);
    border-top-color: var(--hc-navy);
    border-radius: 50%;
    animation: hc-spin 0.8s linear infinite;
}

@keyframes hc-spin {
    to { transform: rotate(360deg); }
}

/* Admin dashboard */
.hc-admin-shell {
    font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
    display: flex;
    min-height: 100dvh;
    background: #f5f6f8;
}

.hc-admin-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: var(--hc-navy);
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: margin-left 0.2s ease, width 0.2s ease;
    overflow: hidden;
}

.hc-admin-sidebar.collapsed {
    margin-left: -240px;
}

.hc-admin-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.hc-admin-brand img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hc-admin-brand span {
    font-weight: 800;
    font-size: 1.05rem;
}

.hc-admin-nav {
    padding: 10px 0;
    flex: 1;
}

.hc-admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    border-left: 3px solid transparent;
    white-space: nowrap;
}

.hc-admin-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.hc-admin-nav a.active {
    background: rgba(212, 160, 23, 0.15);
    color: var(--hc-gold-light);
    border-left-color: var(--hc-gold);
}

.hc-admin-nav .icon {
    width: 20px;
    text-align: center;
}

.hc-admin-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.hc-admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: #fff;
    border-bottom: 1px solid #eceef1;
}

.hc-admin-toggle {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--hc-navy);
    padding: 4px 8px;
}

.hc-admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--hc-navy);
    font-weight: 600;
}

.hc-admin-content {
    padding: 24px;
    flex: 1;
}

.hc-admin-h1 {
    font-weight: 800;
    color: var(--hc-navy);
    font-size: 1.5rem;
    margin: 0 0 18px;
}

.hc-admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.hc-admin-stat {
    background: #fff;
    border-radius: var(--hc-radius);
    box-shadow: var(--hc-shadow);
    padding: 18px 20px;
}

.hc-admin-stat .value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--hc-navy);
}

.hc-admin-stat .label {
    font-size: 0.78rem;
    color: #8a93a3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hc-admin-panel {
    background: #fff;
    border-radius: var(--hc-radius);
    box-shadow: var(--hc-shadow);
    padding: 20px 22px;
    margin-bottom: 20px;
}

.hc-admin-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.hc-admin-panel-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hc-navy);
    margin: 0;
}

.hc-admin-table-wrap {
    overflow-x: auto;
}

.hc-admin-table {
    width: 100%;
    border-collapse: collapse;
}

.hc-admin-table th,
.hc-admin-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.88rem;
    white-space: nowrap;
}

.hc-admin-table th {
    color: var(--hc-navy);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: #fafbfc;
}

.hc-status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.hc-status-badge.pendingapproval {
    background: #fff3d6;
    color: var(--hc-gold);
}

.hc-status-badge.approved {
    background: #e3f6ea;
    color: var(--hc-green);
}

.hc-status-badge.suspended {
    background: #fdecea;
    color: var(--hc-red);
}

.hc-btn-sm {
    padding: 6px 14px;
    font-size: 0.82rem;
}

.hc-admin-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.hc-copy-box {
    background: #fafbfc;
    border: 1px dashed #d8dde5;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

@media (max-width: 720px) {
    .hc-admin-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 30;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    .hc-admin-sidebar.collapsed {
        margin-left: -240px;
    }

    .hc-admin-sidebar:not(.collapsed) {
        margin-left: 0;
    }
}
