.namechecker-body {
    background:
        radial-gradient(circle at 10% -20%, rgba(29, 29, 31, 0.08), transparent 42%),
        radial-gradient(circle at 85% 120%, rgba(180, 180, 185, 0.2), transparent 35%),
        #fafafa;
    color: #1d1d1f;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
}

.namechecker-brand {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    letter-spacing: -0.02em;
    line-height: 1;
    text-decoration: none;
}

.namechecker-brand-main {
    color: #1d1d1f;
    font-weight: 500;
}

.namechecker-brand-sub {
    color: #b4b4b9;
    font-weight: 500;
}

.namechecker-dashboard-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 6px;
    border: 0;
    background: #1d1d1f;
    color: #fafafa;
    font-size: 13px;
    font-weight: 400;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.namechecker-dashboard-link:hover {
    opacity: 0.82;
}

.namechecker-topbar {
    border-bottom: 1px solid #e8e8e8;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.namechecker-topbar-inner {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.namechecker-topbar-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 900px) {
    .namechecker-dashboard-link {
        font-size: 13px;
        padding: 8px 16px;
    }

    .namechecker-topbar-inner {
        padding: 16px 20px;
    }
}

.hidden {
    display: none !important;
}

.namechecker-disclaimer {
    margin-top: 0.75rem;
    border: 1px solid #f2d26b;
    border-radius: 0.75rem;
    background: #fff6cc;
    color: #6f5200;
    padding: 0.75rem 0.875rem;
    font-size: 0.8rem;
    line-height: 1.45;
}

.spinner {
    display: inline-block;
    width: 1.05rem;
    height: 1.05rem;
    border: 2px solid #d9d9de;
    border-top-color: #1d1d1f;
    border-radius: 9999px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.result-row {
    display: grid;
    grid-template-columns: 2.5rem 1fr 2.2rem;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
}

.target-initial,
.target-avatar-wrap {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d9de;
    background: #f3f3f5;
    color: #1d1d1f;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    overflow: hidden;
}

.target-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ffffff;
}

.target-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #1d1d1f;
}

.status-icon {
    justify-self: end;
    width: 2rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.status-free {
    color: #047857;
}

.status-taken {
    color: #be123c;
}

.status-error {
    color: #b45309;
}
